一键导入
spec-breakdown
Decompose spec-review or bugfix investigation artifacts into coarse tasks. No code investigation — business-level decomposition only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Decompose spec-review or bugfix investigation artifacts into coarse tasks. No code investigation — business-level decomposition only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Investigate codebase, resolve spec gaps, and implement a single coarse task from spec-breakdown output. Use when implementing a task file under `claude-output/{id}/spec-breakdown/tasks/{nn}-*.md`.
Investigate codebase for root cause analysis of a bug, resolve spec-vs-implementation conflicts, and hand off to spec-breakdown and task-implement for fix implementation. Use when starting from a BTS/ITS bug ticket URL.
Review specifications for completeness before implementation. Use when reviewing specs, requirements, or implementation plans to ensure no gaps, overlaps, or ambiguities.
| name | spec-breakdown |
| description | Decompose spec-review or bugfix investigation artifacts into coarse tasks. No code investigation — business-level decomposition only. |
| version | 0.2.0 |
| model | sonnet |
Transform spec-review or bugfix investigation artifacts into a coarse task list and task prompts based on business requirements alone. Code investigation is deferred to task-implement.
One of:
claude-output/{id}/spec-review/source.mdclaude-output/{id}/bugfix/investigation-report.md (Status: FINAL)A task is appropriately scoped if it can be described in a single sentence without "and".
Spec excerpt: "When the user taps Save, validate the form, persist the entry, and update the list view."
Note: actors cooperating in a single flow (user tap → form → repo → list) do NOT count as a split signal; the split here comes from three distinct operations.
Before presenting plan.md for user approval, verify that the Prerequisites column across all tasks forms a directed acyclic graph (DAG):
plan.md as a node.Prerequisites cell containing #NN, treat it as a directed edge NN → current task.none produces no edges.Prerequisites: #02) counts as a cycle of length 1.plan.md for approval. Surface the full cycle path to the user (format: Cycle detected: 01 → 02 → 03 → 01), require the user to fix plan.md, and re-validate before re-presenting.spec-review and review.md Verdict is FAIL, do not proceed — stop and prompt the user to resolve 🔴 Required items first.bugfix flow skips the review.md check entirely — do not look for it under claude-output/{id}/spec-review/.