A continuously evolving laboratory for exploring bleeding-edge AI technologies.
As a senior C++ systems engineer following the 75/25 principle (75% deepening existing skills, 25% exploring new frontiers), this repository is dedicated entirely to that 25% — an intensive, hands-on space for tracking, experimenting with, and deconstructing the latest AI technologies.
Goal: Keep up with AI speed.
| # | Topic | Status | Description |
|---|---|---|---|
| 001 | MCP Deep Dive | Draft | Model Context Protocol 深度解构 |
| 002 | Agent Workflows | Draft | Multi-Agent 协作工作流探索 |
| 003 | LSP Enhancement | Draft | Language Server Protocol AI 增强 |
See .agents/PREREQUISITES.md for required tools and environment setup.
git clone https://github.com/skytxy/AI-Frontier-Lab.git
cd AI-Frontier-Lab
cp .env.example .env
# Edit .env with your API keys./shared/scripts/new-topic.sh 004 "your-topic-name"# 方式一:快捷启动(推荐)
./start-web.sh # 自动安装依赖并启动开发服务器
# 方式二:手动启动
cd site
npm install # 首次运行需要安装依赖
npm run dev # 启动开发服务器,默认 http://localhost:4321
# 方式三:预览构建产物
npm run build # 构建静态网站
npm run preview # 预览构建后的网站网站入口:
- 开发模式:http://localhost:4321
- 构建产物:
site/dist/目录(可部署到任何静态托管服务)
See docs/ARCHITECTURE.md for the full architectural overview.
Key ideas:
topics/— Each topic is a self-contained sub-project with its own code, docs, and optional agent configssite/— A plugin-based presentation layer that aggregates all topics into a rich, interactive showcase.agents/— Multi-agent configuration (Claude, Gemini, Codex) with repo-level baseline + topic-level overridesshared/— Cross-topic utilities and templates
See docs/CONTRIBUTING.md for contribution guidelines.