roadmap-writing
When to use
- Authoring a new roadmap file in
agents/roadmaps/{name}.md(or module-scoped underapp/Modules/{Module}/agents/roadmaps/) - Rewriting an existing roadmap (phase restructure, goal pivot, council-pass integration — not a checkbox flip)
- Drafting a phase block, exit criteria, or rollback section that will land inside an existing roadmap
Do NOT use this skill when:
- Flipping checkboxes, regenerating the dashboard, archiving on
completion → use
roadmap-management - Updating AGENTS.md / module docs / contexts → use
agent-docs-writing - Capturing an architectural decision → use
adr-create
Roadmap-writing vs roadmap-management — critical test
| Intent | Artifact |
|---|---|
| "I need to write the plan body" | roadmap-writing (this skill) |
| "I need to track progress / regenerate dashboard / archive" | roadmap-management |
This skill owns the prose authoring axis: structure, goal
sentence, phase blocks, acceptance criteria. The execution and
dashboard-sync axis stays in roadmap-management.
Procedure
0. Drafting protocol
Authoring or materially rewriting a roadmap must go through
Understand → Research → Draft per the
artifact-drafting-protocol
rule. Inspect existing roadmaps under agents/roadmaps/ for overlap
or supersession before opening a new one.
1. Read the canonical template first
The structure, frontmatter, lifecycle, and complexity-tier rules live
in .agent-src.uncompressed/templates/roadmaps.md.
Read it before authoring. Do not restate its rules in the roadmap
body — link the template if a phase needs to override one.
2. Pick complexity tier honestly
Default lightweight (≤ 6 phases, ≤ 600 lines). Only use
structural when the change touches a contract, kernel rule, or
budget invariant — the complexity linter enforces it. Standard:
roadmap-complexity-standard.
3. Write the goal first
One sentence, top of file, decidable: "Reduce X by Y on flow Z." Vague goals ("improve roadmaps") force every reader to re-derive intent. If the goal needs three sentences, the roadmap is two roadmaps.
4. Phase blocks carry checkboxes
Every non-intro phase contains at least one - [ ]. Decision tables
and council-pass notes capture the why; checkboxes capture the
what to do next. Without checkboxes the phase is invisible to
agents/roadmaps-progress.md — enforced by
roadmap-progress-sync
Iron Law #2.
5. Exit & rollback per phase
Each phase declares exit criteria (decidable signals that the phase is done) and rollback (what to revert if the phase fails). A phase without exit criteria is open-ended; a phase without rollback assumes success.
Output format
A single Markdown file at agents/roadmaps/{name}.md:
- Frontmatter (
status,complexity) # Road to {short title}- One-sentence outcome blockquote
## Goal— decidable target## Prerequisites— checkboxes## Context— why now, links to tickets- Numbered
## Phase N — {name}sections with checkboxes, exit criteria, rollback ## Acceptance criteria— final gates
Frugality Standards
Apply the Frugality Charter to every roadmap you author.
Examples in this artifact:
- Per the charter's default-terse rule, the goal sentence states the outcome — no "This roadmap exists because…" ramp-up.
- Per the cite-don't-restate principle, link the canonical template for structural rules; do not paste them into the roadmap.
- Per the post-action summary suppression, council-pass integration notes append to the existing phase block — no new "Summary of council passes" section.
- Per the cheap-question check, never propose a "lightweight vs. structural" numbered choice when the diff makes the answer decidable.
Pre-save self-check:
- Does the goal sentence open with the outcome, or with backstory?
- Does any phase block restate template rules instead of linking them?
- Are checkboxes present in every non-intro phase?
- Are exit criteria decidable, or vibe-based ("looks good")?
- Is content duplicated from another roadmap (supersession instead)?
Do NOT
- Author a roadmap without a goal sentence.
- Restate
templates/roadmaps.mdrules inside the roadmap body. - Include version numbers, target releases, or git tags — banned by
template rule 13 +
scope-control. - Plan automatic branch switches mid-roadmap (template rule 14).
- Ship a phase without checkboxes (
roadmap-progress-syncIron Law #2). - Write merge, push, or commit steps into the roadmap. Roadmaps plan
work; merge / push / commit are delivery decisions owned by the
user (
commit-policyIron Law). A roadmap is "implementation-complete" once its checkboxes are ticked and verification has been run — merge timing is tracked outside the roadmap. - Use ALL-CAPS Iron-Law fenced blocks — those belong in
kernel-membership-listed rules, not roadmaps.
Gotchas
- No checkboxes in a phase —
agents/roadmaps-progress.mdcannot count the phase; the dashboard reports zero open work even though the phase has prose. Enforced byroadmap-progress-syncIron Law #2. - Vague goal sentence — "Improve roadmap quality" forces every reader to re-derive intent and blocks decidable acceptance.
- Restating template rules — pasting structural rules into the roadmap body creates two sources of truth that drift over months.
- Version numbers in phase names —
Phase 1 — v1.8.0violates template rule 13 andscope-control § git-operations. - Author-during-execution branch switches — the agent should not propose a new branch mid-roadmap; that decision is fenced to authoring time.
- Merge / commit steps in roadmap body — checkboxes like "merge PR #X" or "commit phase Y" couple roadmap closure to git operations the user has not authorized. Roadmap completion is decoupled from delivery; ship-the-PR is its own decision.
Examples
Browse agents/roadmaps/ (active plate) and agents/roadmaps/archive/
(closed work) for canonical structural / tactical / structural-with-council
examples.