feat: 文档同步

This commit is contained in:
2025-12-15 18:53:39 +08:00
parent 67162d2337
commit 1329643932
16 changed files with 987 additions and 85 deletions

View File

@@ -33,9 +33,9 @@ Aide 是一套面向 Claude Code 的工作流辅助体系,旨在解决 AI 辅
┌─────────────────────────────────────────────────────────────┐
│ aide-plugin │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ │ /aide:init │ │ /aide:prep │ │ /aide:exec │ Commands
│ └─────────────┘ └─────────────┘ └─────────────┘
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ │ /aide:setup │ │ /aide:load │ │ /aide:docs │ │ /aide:run │
│ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
│ │
│ ┌─────────────────────────────────────────────┐ │
│ │ aide skill │ Skill │
@@ -71,10 +71,12 @@ Aide 是一套面向 Claude Code 的工作流辅助体系,旨在解决 AI 辅
| 文档 | 位置 | 说明 |
|------|------|------|
| **导览** | [aide-plugin/docs/README.md](../aide-marketplace/aide-plugin/docs/README.md) | plugin 整体介绍和索引 |
| init 命令 | [aide-plugin/docs/commands/init.md](../aide-marketplace/aide-plugin/docs/commands/init.md) | 项目认知与环境初始化 |
| prep 命令 | [aide-plugin/docs/commands/prep.md](../aide-marketplace/aide-plugin/docs/commands/prep.md) | 任务准备流程 |
| exec 命令 | [aide-plugin/docs/commands/exec.md](../aide-marketplace/aide-plugin/docs/commands/exec.md) | 任务执行流程 |
| setup 命令 | [aide-plugin/docs/commands/setup.md](../aide-marketplace/aide-plugin/docs/commands/setup.md) | 环境配置(独立运行) |
| load 命令 | [aide-plugin/docs/commands/load.md](../aide-marketplace/aide-plugin/docs/commands/load.md) | 项目认知载入 |
| docs 命令 | [aide-plugin/docs/commands/docs.md](../aide-marketplace/aide-plugin/docs/commands/docs.md) | 项目文档管理(独立运行) |
| run 命令 | [aide-plugin/docs/commands/run.md](../aide-marketplace/aide-plugin/docs/commands/run.md) | 任务执行(核心命令) |
| aide skill | [aide-plugin/docs/skill/aide.md](../aide-marketplace/aide-plugin/docs/skill/aide.md) | aide 命令使用指南 |
| env-config skill | [aide-plugin/skills/env-config/SKILL.md](../aide-marketplace/aide-plugin/skills/env-config/SKILL.md) | 环境配置详细指南 |
### 4.2 aide-program 区块
@@ -104,19 +106,30 @@ Aide 是一套面向 Claude Code 的工作流辅助体系,旨在解决 AI 辅
### 想了解完整工作流程
```
/aide:init /aide:prep /aide:exec
│ │ │
项目认知 任务准备 任务执行
环境检测 任务分析 流程设计
任务优化 迭代实现
待定项处理 验证交付
生成细则 文档更新
/aide:setup /aide:docs /aide:run
(独立运行) (独立运行) (核心命令)
▼ ▼
环境配置 项目文档 任务执行
依赖分析 区块划分 ├─ task-optimize (任务准备)
模块检测 文档生成 ├─ 任务分析
问题修复 增量更新 ├─ 复杂度评估
│ ├─ 待定项处理
│ └─ 生成细则
├─ flow-design (流程设计)
│ └─ 创建流程图
├─ impl (迭代实现)
├─ verify (验证交付)
├─ docs (文档更新)
└─ finish (收尾)
```
> `/aide:load` 由 `/aide:run` 自动调用,用于按需载入项目文档。
---
## 六、版本信息
- 当前版本:1.0.0
- 文档拆分自aide-requirements.md
- 当前版本:2.0.0
- 更新日期2025-12-15
- 主要变更Commands 体系重组setup/load/docs/run 替代 init/prep/exec