feat(go): Add /go skill - the ultimate execution button

- Supports both 0->1 (new project) and 1->100 (iteration) scenarios
- Aggressive mode: no interruptions, self-fix issues
- Smart task range detection (ITER markers, pending tasks)
- Auto git commit per module
- Updated README with new workflow overview

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
zfc
2026-01-23 15:45:51 +08:00
co-authored by Claude Opus 4.5
parent 9ae0bb57fe
commit 8baead87ea
2 changed files with 354 additions and 24 deletions
+30 -24
View File
@@ -33,6 +33,7 @@ RequirementsDoc ──▶ PRD ──▶ FeatureSummary ──▶ DevelopmentPlan
| | `/md` | 增量修改 DevelopmentPlan |
| | `/mu` | 增量修改 UIDesign |
| | `/mt` | 增量修改 tasks |
| **执行** | `/go` | 🚀 发射按钮,激进模式一口气完成开发 |
| **辅助** | `/iter` | 迭代变更入口(Bug/功能/重构) |
| | `/up` | 文档升级迁移 |
@@ -84,38 +85,43 @@ git submodule update --remote .spec-coding-skills
## 使用示例
### 0-1 阶段:从需求到开发
### 0->1 阶段:从需求到开发
```bash
# 1. 创建需求文档
# 手动编写 doc/RequirementsDoc.md
# 1. 准备文档
/wp # 生成 PRD
/wf # 生成 FeatureSummary
/wd # 生成 DevelopmentPlan
/wt # 生成 tasks
# 2. 生成 PRD
/wp
# 3. 评审 PRD
/rp
# 4. 根据评审修改 PRD
/mp
# 5. 生成后续文档
/wf # → FeatureSummary
/wd # → DevelopmentPlan
/wu # → UIDesign
/wt # → tasks
# 2. 发射!
/go # 激进模式,一口气完成所有任务
```
### 1-100 阶段:持续迭代
### 1->100 阶段:持续迭代
```bash
# 发现问题或需要新功能
/iter
# 1. 描述变更需求
/iter # 调研 → 澄清 → 更新 PRD 和 tasks
# 按提示描述问题,AI 会:
# 1. 调研分析
# 2. 向你澄清确认
# 3. 更新 PRD 和 tasks
# 2. 执行变更
/go # 自动识别新任务并执行
```
### 工作流总览
```
┌─────────────────────────────────────────────────────────┐
│ 0->1 全新项目 │
│ │
│ 需求 → /wp → /wf → /wd → /wt → /go 🚀 │
│ │
├─────────────────────────────────────────────────────────┤
│ 1->100 持续迭代 │
│ │
│ 发现问题 → /iter → /go 🚀 │
│ │
└─────────────────────────────────────────────────────────┘
```
## 文档定位