docs: update documentation titles and sidebar numbering

- Simplify CLI AI programming tool documentation title
- Remove numbering from sidebar items for cleaner navigation
This commit is contained in:
sanbuphy
2026-02-12 00:18:06 +08:00
parent 825bbfbb88
commit d1be7ebfa9
2 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -208,9 +208,9 @@ const productManagerSidebar = [
text: '新手入门', text: '新手入门',
collapsed: false, collapsed: false,
items: [ items: [
{ text: '1. 学习地图', link: '/zh-cn/stage-0/0.1-learning-map/' }, { text: '学习地图', link: '/zh-cn/stage-0/0.1-learning-map/' },
{ {
text: '2. AI 时代,会说话就会编程', text: 'AI 时代,会说话就会编程',
link: '/zh-cn/stage-0/0.2-ai-capabilities-through-games/' link: '/zh-cn/stage-0/0.2-ai-capabilities-through-games/'
} }
] ]
@@ -220,23 +220,23 @@ const productManagerSidebar = [
collapsed: false, collapsed: false,
items: [ items: [
{ {
text: '1. 学会 AI 编程工具', text: '学会 AI 编程工具',
link: '/zh-cn/stage-1/1.1-introduction-to-ai-ide/' link: '/zh-cn/stage-1/1.1-introduction-to-ai-ide/'
}, },
{ {
text: '2. 找到好点子', text: '找到好点子',
link: '/zh-cn/stage-1/1.0-finding-great-idea/' link: '/zh-cn/stage-1/1.0-finding-great-idea/'
}, },
{ {
text: '3. 搭建产品原型', text: '搭建产品原型',
link: '/zh-cn/stage-1/1.2-building-prototype/' link: '/zh-cn/stage-1/1.2-building-prototype/'
}, },
{ {
text: '4. 接入 AI 能力', text: '接入 AI 能力',
link: '/zh-cn/stage-1/1.3-integrating-ai-capabilities/' link: '/zh-cn/stage-1/1.3-integrating-ai-capabilities/'
}, },
{ {
text: '5. 完整项目实战', text: '完整项目实战',
link: '/zh-cn/stage-1/1.4-complete-project-practice/' link: '/zh-cn/stage-1/1.4-complete-project-practice/'
} }
] ]
@@ -1,4 +1,4 @@
# CLI AI 编程工具与测试驱动开发原则 # CLI AI 编程工具
在本教程中,我们将介绍直接在命令行中运行的 AI 编程 Agent。它们和之前学过的 Trae、Cursor 中的 Agent 不同,CLI AI 编程工具只能在终端中使用。与集成在 AI IDE 里的 Agent 相比,它们通常具有更长的上下文窗口、更快的工具调用速度,并且可以兼容更多种类的大模型。在最新的 AI Vibe Coding 实战中,我们往往会优先使用 CLI AI 编程工具,而不是 IDE 内置的编码 Agent。 在本教程中,我们将介绍直接在命令行中运行的 AI 编程 Agent。它们和之前学过的 Trae、Cursor 中的 Agent 不同,CLI AI 编程工具只能在终端中使用。与集成在 AI IDE 里的 Agent 相比,它们通常具有更长的上下文窗口、更快的工具调用速度,并且可以兼容更多种类的大模型。在最新的 AI Vibe Coding 实战中,我们往往会优先使用 CLI AI 编程工具,而不是 IDE 内置的编码 Agent。