From d1be7ebfa978834d63a3707a90c43883e1d14ee7 Mon Sep 17 00:00:00 2001 From: sanbuphy Date: Thu, 12 Feb 2026 00:18:06 +0800 Subject: [PATCH] docs: update documentation titles and sidebar numbering - Simplify CLI AI programming tool documentation title - Remove numbering from sidebar items for cleaner navigation --- docs/.vitepress/config.mjs | 14 +++++++------- .../stage-2/backend/2.6-modern-cli/extra7/index.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/.vitepress/config.mjs b/docs/.vitepress/config.mjs index f661de5..fd31874 100644 --- a/docs/.vitepress/config.mjs +++ b/docs/.vitepress/config.mjs @@ -208,9 +208,9 @@ const productManagerSidebar = [ text: '新手入门', collapsed: false, 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/' } ] @@ -220,23 +220,23 @@ const productManagerSidebar = [ collapsed: false, items: [ { - text: '1. 学会 AI 编程工具', + text: '学会 AI 编程工具', link: '/zh-cn/stage-1/1.1-introduction-to-ai-ide/' }, { - text: '2. 找到好点子', + text: '找到好点子', link: '/zh-cn/stage-1/1.0-finding-great-idea/' }, { - text: '3. 搭建产品原型', + text: '搭建产品原型', link: '/zh-cn/stage-1/1.2-building-prototype/' }, { - text: '4. 接入 AI 能力', + text: '接入 AI 能力', link: '/zh-cn/stage-1/1.3-integrating-ai-capabilities/' }, { - text: '5. 完整项目实战', + text: '完整项目实战', link: '/zh-cn/stage-1/1.4-complete-project-practice/' } ] diff --git a/docs/zh-cn/stage-2/backend/2.6-modern-cli/extra7/index.md b/docs/zh-cn/stage-2/backend/2.6-modern-cli/extra7/index.md index daa7505..d038458 100644 --- a/docs/zh-cn/stage-2/backend/2.6-modern-cli/extra7/index.md +++ b/docs/zh-cn/stage-2/backend/2.6-modern-cli/extra7/index.md @@ -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。