PACE 可选 stage。需求跨 3 个以上模块、需要拆成子 feature 序列时触发。
Scanned 9/5/2026
Install to Claude Code
npx -y skills add WenJunDuan/Rlues --skill roadmap --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Roadmap?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wenjunduan-roadmap-2947bf67)More formats (shields.io, HTML) on the badges page.
---
name: roadmap
description: PACE 可选 stage。需求跨 3 个以上模块、需要拆成子 feature 序列时触发。
---
# /roadmap — 大需求拆分 (v9.6.4 新)
## 触发条件
```python
def needs_roadmap(user_input, brainstorm_output=None):
if explicit_kws(["路线图", "拆分", "roadmap", "分步推进", "分阶段"]):
return True
if mentions_modules(user_input) >= 3:
return True
if brainstorm_output and brainstorm_output.recommends_roadmap:
return True
return False
```
## 数据结构
```
.ai_state/roadmap/{slug}/
├── roadmap.md # 主文档: 背景 / 拆解 / 排期
├── items.yaml # 机器可读子 feature 清单
└── drafts/ # 可选: 调研笔记 / 备选方案
```
## 路径限制
roadmap 只对 Feature / Refactor / System 路径有意义.
Hotfix / Bugfix / Quick **不进 roadmap** (本就是小改动).
## 例外
- `_index.skip_roadmap = true`: 大需求也不强制 roadmap (主 agent 一次性处理, 风险自担)
- 用户显式 "我自己拆": 不进 roadmap stage, 用户直接说"先做 X 再做 Y"
## 不要做 (借 OMO 教训)
- 不引入 milestone / epic / story 三层 (太重, 不是 PMS)
- 不引入跨 roadmap 依赖 (一次只跑一个 roadmap)
- 不引入自动调度算法 (主 agent + 用户决定顺序)
- 不允许 roadmap 中途插队新 item (除非用户显式说 "插队")
## 详细 playbook
完整工作流、模板、schema 与联动细节见 `references/playbook.md` —— 按需 Read, 不进热路径。
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.
一个全面的 Claude Code 会话验证系统。
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.