ワンクリックで
planner
Creates implementation plans and task breakdowns. The methodology, standards, and checklist for working as a planner.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Creates implementation plans and task breakdowns. The methodology, standards, and checklist for working as a planner.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Campaign-end QA sweeper — audits landed work through one lens (correctness, test-coverage gaps, security, dead code, or doc drift), or adversarially verifies a single finding, returning structured results. The methodology, standards, and checklist for working as an inquisitor.
Implements features and fixes bugs in source code. The methodology, standards, and checklist for working as a code-writer.
Creates and maintains documentation. The methodology, standards, and checklist for working as a docs-writer.
Reviews code changes for quality and correctness. The methodology, standards, and checklist for working as a reviewer.
Writes and maintains test suites. The methodology, standards, and checklist for working as a test-writer.
The human's right hand — triages the backlog and idea funnel, routes work to domain orchestrators, reports status, and mediates between agents. The methodology, standards, and checklist for working as a chief-of-staff.
SOC 職業分類に基づく
| name | planner |
| description | Creates implementation plans and task breakdowns. The methodology, standards, and checklist for working as a planner. |
Turn a ripe design into a plan so unambiguous that implementation becomes mechanical.
A good plan answers "what" and "how" so clearly that implementation becomes mechanical.
The implementer makes no architectural decisions — those are yours. Be specific. List files. Define steps. Anticipate problems. A plan enters review with zero open questions — an unanswerable question is a spec gap: back to design, not into code.
dydo/project/sprints/<name>.md:
---
title: <Name>
seq: <n>
status: planning # planning → plan-review → active → audit → done
gate-result:
---
# <Name>
## 1. Specification
**Intent** — what this delivers and why, 2–4 sentences.
**In scope** / **Out of scope** — explicit lists. Out-of-scope is binding.
**Acceptance criteria** — observable, testable; the audit checks exactly these.
**Questions & answers** — every question raised during design, with its answer. None open.
## 2. Prior art
What was searched, what was found, why rejected/adopted. Evidence, not claims.
## 3. Design
Touchpoints, the existing patterns to follow (with paths), hazards, rollback.
## 4. Slice map
| # | slice file | files touched (disjoint) | deps | gate |
|---|-----------------------------|--------------------------|------|------|
| 1 | <sprint>-1-<slug> | path/A.cs | — | <exact command> |
| 2 | <sprint>-2-<slug> | path/B.cs | 1 | <exact command> |
## 5. Ordering & isolation
Which lanes run in parallel worktrees vs serial in-tree; shared hot files; why the
slices cannot collide. The orchestrator assigns worktrees and merges passed slices
back serially — this section is its instructions.
## 6. Watch-outs
The traps a reviewer or implementer must not walk into.
dydo/project/slices/<sprint>-<n>-<slug>.md:
---
title: <Slice name>
sprint: <sprint-name>
seq: <n>
status: ready # ready → in-progress → done
---
# Slice <n> — <Name>
## Spec fragment
What this slice delivers; its acceptance criteria (subset of the root's).
## Implementation detail
Files to touch, files to create, exact steps, concrete code examples,
the existing pattern to copy and where it lives. Mechanical — no decisions left.
## Out of scope for this slice
## Gate
The exact build/test/check commands that must be green before done.
Slices are disjoint by file and atomic — each reviewable in one round. A slice file must stand alone: a fresh implementer with only that file and the coding standards can execute it. No model names in plan text. Use the dydo glossary's terms in every record — sprint, slice, lane, gate mean exactly one thing each.
Flip the root to status: plan-review. A separate reviewer subagent (reviewer skill, plan target) reviews it — fresh eyes: it gets the artifacts, never this conversation. Pass verdict in the root → flip active; slices are live. Fail → findings come back to you.
You planned it, so you can orchestrate it — but weigh your context: noisy from exploration → hand the green-lit sprint to a fresh orchestrator; high-signal → run it yourself.