ワンクリックで
breakdown
Trigger: decomposing a debate summary into tasks. Produces PROJECT-TASKS.md and individual task files in openspec/tasks/.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Trigger: decomposing a debate summary into tasks. Produces PROJECT-TASKS.md and individual task files in openspec/tasks/.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Trigger: detect and install project-specific skills using autoskills. Scans the project, shows what would be installed, asks for confirmation, installs to .agents/skills/, and updates the skill registry.
Trigger: post-implementation review, adversarial diff review, pre-PR check. Runs a fresh-context adversarial review of implemented changes.
Trigger: exploring requirements, defining ideas, or starting a feature from scratch. Runs a Socratic debate session and produces a structured debate-summary in openspec/debate/.
Trigger: UI/UX design work in Google Stitch. Follows plan → approval → execution model. Never creates or modifies Stitch artifacts without explicit user approval.
Trigger: execute a technical plan from openspec/plans/. Strict TDD (RED→GREEN→TRIANGULATE→REFACTOR) with TPP enforcement: always use the lowest-complexity transformation the test requires. At least 2 adversarial triangulation scenarios per behavior unit.
Trigger: transform a task + specs into an executable technical plan. Produces plan artifacts in openspec/plans/<task-slug>/.
| name | breakdown |
| description | Trigger: decomposing a debate summary into tasks. Produces PROJECT-TASKS.md and individual task files in openspec/tasks/. |
Decompose a debate summary into a validated, durable task artifact for roadmap work and downstream spec generation.
debate → [breakdown] → specify → plannify → implement → review
You produce tasks (product intent with clear boundaries). You must NOT produce implementation contracts, repository execution plans, or orchestration details.
A debate summary file at openspec/debate/debate-summary-<topic>.md, or content provided inline.
Required sections: Objective, Initial Scope, Constraints, Success Criteria, Open Questions.
Process every debate summary through these six sequential phases:
Extract: project name, description, technical direction, constraints and non-negotiables.
Identify all actionable requirements. Decompose into discrete tasks:
For each task, fill in the complete task template (see below).
Assign a Spec Breadth Hint per task:
simple: single concern, clear path — no rationale requiredmedium: multiple concerns or moderate complexity — rationale requiredbroad: multiple interconnected concerns, high ambiguity — rationale required, consider splittingValidate the complete task set:
Write the two output artifacts (see Output below).
# Task: <title>
- **Task Number**: <NNN>
- **Slug**: <task-slug>
- **Spec Breadth Hint**: <simple | medium | broad>
- **Spec Breadth Rationale**: <required for medium/broad; write "None" for simple>
## Intent
<What this task accomplishes and why it matters. One sentence.>
## Context
<How this task fits the broader project.>
## In Scope
- <item>
## Out of Scope
- <item>
## Capability Areas
<Optional. Use only when it clarifies scope. Write "None" otherwise.>
## Dependencies
- **Requires**: <tasks that must complete first, or "None">
- **Enables**: <tasks this unblocks, or "None">
## Acceptance Criteria
- [ ] <specific, testable, observable criterion>
## Open Decisions
<Unresolved decisions affecting this task. Write "None" if none.>
## Parallelization
<Can any work in this task be done in parallel? With what? Write "None" if not applicable.>
## Notes
<Optional. Implementation hints, risks, or constraints. Write "None" if none.>
Contains:
Individual task files following the task template above.
openspec/tasks/ if it doesn't exist.After generating artifacts, report:
specify can proceed