Source profileQuality 95/100Review permissions

event4u-app/agent-config/src/skills/roadmap-management/SKILL.md

roadmap-management

Use when the user says "create roadmap", "show roadmap", or "execute roadmap". Creates, reads, and manages roadmap files with phase tracking.

Source repository stars
7
Declared platforms
0
Static risk flags
3
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Creates, reads, and manages roadmap files with phase tracking.

Best for

  • Creating a new roadmap (/roadmap:create command)
  • Executing a roadmap (/roadmap:process-step|phase|full commands)
  • Checking roadmap progress

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/roadmap-management"
Safe inspection promptEditorial

Inspect the Agent Skill "roadmap-management" from https://github.com/event4u-app/agent-config/blob/0adf49a8ae84b0ff6e2de8759eea43257e020eff/src/skills/roadmap-management/SKILL.md at commit 0adf49a8ae84b0ff6e2de8759eea43257e020eff. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Procedure: Manage a roadmap

    1. Identify need — Is this a multi-step change that spans sessions or agents? 2. Create or locate — Create new roadmap in agents/roadmaps/ or find existing one. 3. Update progress — Mark completed steps with [x], add notes for blockers, then regenerate the dashboard in the same…

    Identify need — Is this a multi-step change that spans sessions or agents?Create or locate — Create new roadmap in agents/roadmaps/ or find existing one.Update progress — Mark completed steps with [x], add notes for blockers, then regenerate the dashboard in the same response (enforced by roadmap-progress-sync).
  2. 02

    Phase 1: {Phase name}

    [ ] Step 1: {Clear, actionable instruction}

    [ ] Step 1: {Clear, actionable instruction}[ ] Step 2: {Next step — reference files/classes}[ ] ...
  3. 03

    Phase 2: {Phase name}

    [ ] Step 1: {description}

    [ ] Step 1: {description}[ ] ...- [ ] Step 1: {description} - [ ] ...
  4. 04

    Step granularity

    Each step should be completable in one session (< 1 hour of work).

    Each step should be completable in one session (< 1 hour of work).If a step is too large, break it down into sub-steps.Steps should reference specific files/classes when possible.
  5. 05

    Spawn follow-up from deferred items (procedure)

    When the user picks option 1 or 2 in step 4b:

    Derive the slug. Default -followup (e.g.Write the new file at agents/roadmaps/.md:In the parent roadmap (still in the working tree), append a

Permission review

Static risk signals and limitations

Writes files

medium · line 20

The documentation asks the agent to create, modify, or delete local files.

`[-]`, `[ ]`) or phase add/rename/remove in a roadmap file, regenerate

Reads files

low · line 253

The documentation asks the agent to read local files, directories, or repositories.

**Scan the file** for all checkbox markers: `- [x]`, `- [ ]`, `- [~]`, `- [-]`.

Writes files

medium · line 360

The documentation asks the agent to create, modify, or delete local files.

**Write the new file** at `agents/roadmaps/<slug>.md`:

Runs scripts

medium · line 420

The documentation asks the agent to run terminal commands or scripts.

git mv agents/roadmaps/{file} agents/roadmaps/archive/{file}

Runs scripts

medium · line 423

The documentation asks the agent to run terminal commands or scripts.

git mv agents/roadmaps/{file} agents/roadmaps/skipped/{file}

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score95/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars7SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
event4u-app/agent-config
Skill path
src/skills/roadmap-management/SKILL.md
Commit
0adf49a8ae84b0ff6e2de8759eea43257e020eff
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

roadmap-manager

When to use

Use this skill when:

  • Creating a new roadmap (/roadmap:create command)
  • Executing a roadmap (/roadmap:process-step|phase|full commands)
  • Checking roadmap progress
  • Updating roadmap status after completing work

Do NOT use when:

  • Small tasks that don't span multiple steps
  • One-off questions or fixes

⚠ Dashboard sync — non-negotiable

agents/roadmaps-progress.md is auto-generated and must reflect the live state in real time. After any checkbox edit ([x], [~], [-], [ ]) or phase add/rename/remove in a roadmap file, regenerate the dashboard in the same response.

Completion = archival. If an edit takes a roadmap to count_open == 0 (pure [x], or [x] + [~]/[-]), git mv it into agents/roadmaps/archive/ before regenerating — see the auto-archive decision table under "Check completion status" below. A 100%-complete roadmap left in agents/roadmaps/ makes the next reader think work is still open.

This is enforced by the roadmap-progress-sync rule. Batching multiple edits in one response is fine — one final regeneration before replying is enough. But the response must not end without it.

Archival — preferred sweep, untracked-safe manual fallback

The robust path is the archive_completed_roadmaps --all sweep: it detects a completed roadmap (count_open == 0, count_deferred == 0), moves it to agents/roadmaps/archive/git mv in a tracked repo, a plain mv in a pre-first-commit / untracked one — rewrites inbound refs, and regenerates the dashboard. It is PR-independent: it does not need /create-pr to have run.

Manual fallback — script-less consumer (the sweep is not vendored). Do it by hand, in the same response, and never leave a 100 %-complete roadmap in the active tree because git mv failed:

  1. mkdir -p agents/roadmaps/archive.
  2. Move the file — git mv agents/roadmaps/<x>.md agents/roadmaps/archive/<x>.md in a tracked repo; a plain mv if the file is untracked or the repo has no commits (git mv errors there).
  3. Rewrite inbound full-path references agents/roadmaps/<x>.mdagents/roadmaps/archive/<x>.md across the tree — on the working tree, not just the git index, when untracked.
  4. Regenerate agents/roadmaps-progress.md.

Procedure: Manage a roadmap

  1. Identify need — Is this a multi-step change that spans sessions or agents?
  2. Create or locate — Create new roadmap in agents/roadmaps/ or find existing one.
  3. Update progress — Mark completed steps with [x], add notes for blockers, then regenerate the dashboard in the same response (enforced by roadmap-progress-sync).
  4. Verify — Confirm all steps reflect current state, no stale information.

A roadmap is a structured .md file in agents/roadmaps/ that describes a multi-step change (refactoring, feature, migration). It ensures work can be picked up across sessions and by different agents.

Roadmap locations

LocationScope
agents/roadmaps/Project-wide roadmaps
{module_root}/{Module}/{agent_folder}/roadmaps/Module-specific roadmaps (see note)
{package-root}/agents/roadmaps/Package-specific roadmaps

Module path resolution. {module_root} and {agent_folder} come from modules.root_paths and modules.agent_folder in .agent-project-settings.yml — see layered-settings. Common shapes:

  • Laravel — app/Modules/{Module}/agents/roadmaps/
  • Symfony bundles — src/Bundle/{Bundle}/agents/roadmaps/
  • Node / Python / Go monorepo packages — packages/{Pkg}/agents/roadmaps/

Use scripts/_lib/agent_settings.ts::enumerate_modules() to discover the actual paths in the current project; never assume app/Modules/.

The file .augment/templates/roadmaps.md defines the canonical structure. Always read it first before creating or modifying roadmaps.

Roadmap structure

Every roadmap follows this structure:

# Roadmap: {Short descriptive title}

> {One sentence: What is the expected outcome?}

## Prerequisites

- [ ] Read `AGENTS.md` and relevant docs
- [ ] {specific prerequisites}

## Context

{Why this roadmap exists. Which module/domain. Links to Jira tickets.}

## Phase 1: {Phase name}

- [ ] **Step 1:** {Clear, actionable instruction}
- [ ] **Step 2:** {Next step — reference files/classes}
- [ ] ...

## Phase 2: {Phase name}

- [ ] **Step 1:** {description}
- [ ] ...

## Acceptance Criteria

- [ ] {Observable, testable criterion}
- [ ] All quality gates pass — the project's type-checker, auto-fixer, linter, and full test suite (see the `quality-tools` skill for stack-specific invocations)

## Notes

{Edge cases, decisions, links}

Key rules for roadmaps

Checkboxes — mandatory, not decorative

  • Every active roadmap MUST contain at least one - [ ] per non-intro phase. Decision tables, ICE matrices, and block-sequencing tables are valid rationale, but they do not satisfy this rule on their own — pair them with a ## Phase N or ## Implementation Checklist section whose checkboxes execute the decision. A roadmap without checkboxes is invisible to agents/roadmaps-progress.md and violates roadmap-progress-sync Iron Law #2.
  • Every actionable step uses - [ ] (unchecked) or - [x] (completed).
  • Mark steps as [x] immediately after completing them.
  • Never remove completed steps — they serve as history.
  • Status is binary: ready (default, implicit) or draft. New roadmaps are created ready unless the user explicitly says otherwise — ready is implicit and need not be written. A roadmap that is still being authored, awaiting upstream decisions, or capturing options without a worked plan declares status: draft in YAML frontmatter at the top of the file. Drafts are hidden from agents/roadmaps-progress.md until the flag is removed or flipped to ready. There are no other status values; legacy banners (**Status: directional**, Status: capture-only, mode: feedback) are removed.

Phases

  • Group related steps into phases (e.g. "Preparation", "Migration", "Cleanup").
  • Complete one phase before starting the next (unless steps are independent).
  • After completing a phase, summarize what was done.

Quality gates

Every roadmap implicitly includes the project's quality pipeline (static analysis, autofixes, tests). Whether the agent runs it locally at all is gated by quality.local_auto_run: false or missing (the default) → the agent never runs the pipeline locally; the user runs it manually and remote CI on the PR is the authoritative gate (run-end report: "quality gates delegated to remote CI"; new-gate carve-out steps still run once). When local_auto_run: true, when the pipeline runs during /roadmap:process-step|phase|full is controlled by roadmap.quality_cadence in .agent-settings.yml:

CadencePipeline runs (local_auto_run: true only)Trade-off
end_of_roadmap (default)Once before archivingFastest, fewest tokens; errors compound across phases
per_phaseAfter every completed phase + finalBalanced; catches drift at phase boundaries
per_stepAfter every completed step + finalLegacy verbose; highest token cost

The default is end_of_roadmap because most steps are checkbox-only content edits and a final pipeline run is the cheapest way to satisfy verify-before-complete. Switch to per_phase for risky migrations or unfamiliar codebases.

Always-on, regardless of cadence:

  • Step checkboxes flip [ ] → [x] and the dashboard regenerates same response (enforced by roadmap-progress-sync).
  • Before any "roadmap complete" claim or archival, the pipeline runs fresh (enforced by verify-before-complete).

Step granularity

  • Each step should be completable in one session (< 1 hour of work).
  • If a step is too large, break it down into sub-steps.
  • Steps should reference specific files/classes when possible.

Language

  • Roadmap files are written in English (per project convention).
  • Step descriptions should be precise and actionable, not vague.

Working with roadmaps

Creating a roadmap

  1. Ask the user for goal, context-create, and phases.
  2. Use the template structure from .augment/templates/roadmaps.md.
  3. Review with the user iteratively until approved.
  4. Branch & release questions — at most once, only if genuinely useful. Default: stay on the current branch, no version numbers in the roadmap. Only propose a separate branch when there is concrete, evidence-based reason (e.g. risky migration benefits from a spike). Never include release versions, deprecation dates, or git tags in the roadmap text. If the user declines, do not re-propose during /roadmap:process-*. Decline = silence. See scope-control.
  5. Save with a kebab-case filename (e.g. optimize-webhook-jobs.md). Before writing, scan the entire roadmap namespace for a collision — active, archive/, skipped/, and nested subdirs — with find agents/roadmaps -type f -iname "<name>.md". If any hit comes back, stop and ask the user to rename, open the existing file, or abort. Never silently overwrite an archived or skipped roadmap. Detailed prompt in commands/roadmap/create.md step 6.
  6. Regenerate the dashboard so the new roadmap is included.

Executing a roadmap

  1. Read execution.mode from the roadmap frontmatter (autonomous | phase-checkpoints | interactive; absent = interactive). Under /roadmap:process-* the mode selects the interaction pattern via the run-start execution contract — see roadmap-execution-contract. The manual flow below describes interactive; under autonomous / phase-checkpoints step 4's per-step ask is replaced by the accepted contract. Mode never changes archival semantics — glyph counting, the closure decision table, and the Iron Law 3 deferred-resolution gate below apply identically in every mode.
  2. Read the full roadmap.
  3. Find the next unchecked step (- [ ]).
  4. Summarize what needs to be done.
  5. Ask the user before implementing (numbered options: implement / adjust / skip).
  6. After implementation: mark [x], run quality gates, then regenerate the dashboard.
  7. Move to the next step.

Resuming a roadmap

When picking up a roadmap in a new session:

  1. Read the roadmap to understand the full context.
  2. Check which steps are already completed ([x]).
  3. Summarize progress to the user.
  4. Continue from the next open step.

Completing, archiving & skipping a roadmap

Every roadmap ends in exactly one of four states:

StateFolderTrigger
Activeagents/roadmaps/Work in progress or planned and workable now
Archivedagents/roadmaps/archive/Work was done (fully or partially) and no more work is planned
Skippedagents/roadmaps/skipped/Decision against pursuit — superseded, scope rejected, wrong direction. Typically 0 items [x]
Lateragents/roadmaps/later/Open work remains but is blocked-for-later — gated on an external trigger or a decision, will resume when unblocked. Set frontmatter status: later + a Blocked until / Trigger resume line. Excluded from the dashboard and /roadmap:process-* (parked, not abandoned).

Active vs. Later — the test: can the agent make progress on this roadmap now, autonomously? If every open item is gated on something outside this roadmap (a real consumer repo, a benchmark re-open, host-model access, a kernel soak, a pruning track, a human decision), it is not active — move it to later/ with its resume condition. A blocked roadmap left in the active tree silently lies to the dashboard and to /roadmap:process-*, which will keep trying to execute it. The lint_roadmap_later_disposition guard enforces the placement↔status: later contract.

After the last step of a roadmap is done, check completion status:

  1. Scan the file for all checkbox markers: - [x], - [ ], - [~], - [-].

  2. Classify:

    • [x] = completed
    • [ ] = open (not done)
    • [~] = deferred (intentionally pushed out, may come back)
    • [-] = cancelled (individual item dropped)
  3. Decision rule — count_open == 0 means the roadmap has no active work left. [x], [-] are final states. [~] deferred items block silent closure — they carry plans the user has not consented to drop (enforced by roadmap-progress-sync Iron Law 3).

    count_xcount_opencount_deferredcount_cancelledAction
    ≥ 1000Auto-archive (silent) — pure completion
    ≥ 100≥ 1Auto-archive (silent) — done with explicit drops
    ≥ 10≥ 1≥ 0STOP — Iron Law 3 flow. Surface deferred items, present follow-up options, wait. See step 4b.
    00≥ 1≥ 0STOP — Iron Law 3 flow. Was this a scope-drop or deferred-to-later? Same options as 4b.
    000≥ 1Auto-skip (silent) — no work, all cancelled
    ≥ 0≥ 1≥ 0≥ 0Ask the user — open work remains (step 4a)

    Show on auto-move:

    • Archive: ✅ Roadmap archived → agents/roadmaps/archive/{filename}
    • Skip: ⏭️ Roadmap skipped → agents/roadmaps/skipped/{filename}
    • Later: 🕒 Roadmap parked for later → agents/roadmaps/later/{filename}

    [-] cancelled items remain searchable inside the archived file — they were explicit drops. [~] deferred items, by contrast, may not silently follow the file into archive: they represent work the user planned and would lose track of. Step 4b is the gate.

4a. Open items remain (count_open ≥ 1)Ask the user. Show what's incomplete:

📋 Roadmap completion check:

  ✅  Completed: {count_x}
  ⬜  Open:      {count_open}  — {list of open items, 1 line each}
  ⏭️  Deferred:  {count_deferred}  — {list of deferred items, 1 line each}
  ❌  Cancelled: {count_cancelled} — {list of cancelled items, 1 line each}

> 1. Archive — mark open items as cancelled [-] and archive now
> 2. Keep active — I want to finish the open items
> 3. Mark open items as deferred [~] and archive (triggers Iron Law 3 flow)
> 4. Skip — move to skipped/ (no meaningful work done, not pursuing)
> 5. Later — park in later/ (open work is blocked on an external trigger / decision but will resume)

Option 4 is only appropriate when count_x == 0 or the completed items were trivial (e.g. prerequisites only). If the user picks 4 despite meaningful work being done, confirm once — archive is usually the right choice. Picking option 3 does NOT archive immediately — it converts open → deferred and re-enters the count_deferred > 0 branch, which runs step 4b.

Option 5 (Later) is the right choice when the open items are real but cannot proceed now — gated on an external trigger or a decision. Set the roadmap's frontmatter status: later, ensure it carries a Blocked until / Trigger resume line, git mv it to agents/roadmaps/later/, migrate any inbound references to the new path, and regenerate the dashboard. The open [ ] items stay open (they are not cancelled or deferred) — the roadmap is parked whole, ready to resume when the trigger fires. Roadmaps with open tasks deferred for later are always moved to later/, never left to rot in the active tree.

4b. Deferred items present (count_deferred ≥ 1, count_open == 0) — Iron Law 3 flow. The archive is blocked until the user resolves the deferrals. Surface the plan and ask:

📋 Roadmap closure check — deferred items must resolve before archive:

  ✅  Completed: {count_x}
  ⏭️  Deferred:  {count_deferred}
  {for each deferred item:}
    - Phase {N}: {step text}  {<!-- deferred: <annotation> --> if present}

These items carry plans you would lose to a silent archive.

> 1. Spawn follow-up roadmap as DRAFT
>    → agents/roadmaps/road-to-{auto-slug}.md, status: draft,
>      parent_roadmap: {this-slug}. Hidden from the dashboard until
>      you flip status to "ready".
> 2. Spawn follow-up roadmap as READY (with blocked-until note)
>    → status: ready (default), parent_roadmap: {this-slug}, plus
>      a `> Blocked until <condition>` line in the body. Visible
>      in the dashboard; execution waits on the condition.
> 3. Keep deferred items in this archive — confirm "no follow-up"
>    is an intentional drop. Items stay searchable in archive/.
> 4. Restore selected items to [ ] — finish them here before archive.
> 5. Convert selected items to [-] cancelled — drop with rationale.

Picks 1 or 2 → see "Spawn follow-up from deferred items" procedure below. Picks 3, 4, or 5 → apply the change in this roadmap; re-evaluate the decision table; archive when the gate clears.

Spawn follow-up from deferred items (procedure)

When the user picks option 1 or 2 in step 4b:

  1. Derive the slug. Default <parent-slug>-followup (e.g. road-to-x.mdroad-to-x-followup.md). If a user-supplied slug was given in the picker, use that. Avoid collisions with agents/roadmaps/ (active + archive/ + skipped/).

  2. Write the new file at agents/roadmaps/<slug>.md:

    ---
    complexity: lightweight            # bump if the parent was structural
    status: draft                      # option 1; omit for option 2 (= ready)
    parent_roadmap: <parent-slug>      # back-link to source
    ---
    
    # Roadmap: Follow-up to <parent-title>
    
    > <One sentence stating the carried-over outcome.>
    
    ## Context
    
    This roadmap collects items deferred from
    [`agents/roadmaps/archive/<parent-slug>.md`](archive/<parent-slug>.md).
    See the parent's archive entry for the original rationale.
    
    ## Prerequisites
    
    - [ ] Read `AGENTS.md` and the parent archive entry.
    {parent prerequisites still relevant, copied verbatim}
    
    <!-- Option 2 only — body note, NOT a frontmatter key: -->
    > Blocked until <condition>. Execution starts when the condition clears.
    
    ## Phase 1: <name carried from parent>
    
    - [ ] {deferred step text, copied verbatim with parent-phase pointer}
    {repeat per deferred item, regrouped by parent phase}
    
    ## Acceptance Criteria
    
    - [ ] {restate or adjust per the deferred scope}
    - [ ] All quality gates pass — see `quality-tools`.
    
  3. In the parent roadmap (still in the working tree), append a line at the bottom (above any final ---):

    <!-- Deferred items migrated to agents/roadmaps/<followup-slug>.md on YYYY-MM-DD -->
    

    Do not delete the [~] lines — keep them visible in the archived parent so the trail stays grep-able. The follow-up carries forward the executable copy.

  4. Regenerate the dashboard. The follow-up appears (draft hidden, ready visible) and the parent — once moved — drops off.

  5. Archive the parent (git mvarchive/) and regen one more time per roadmap-progress-sync Iron Laws 1 + 3.

  6. Move the file with git mv so history is preserved:

    # Archive (work was done)
    git mv agents/roadmaps/{file} agents/roadmaps/archive/{file}
    
    # Skipped (not pursuing)
    git mv agents/roadmaps/{file} agents/roadmaps/skipped/{file}
    
  7. Regenerate the dashboard (see "Command" below). The moved roadmap is excluded from the active set once it sits in archive/ or skipped/.

When to use skipped/ vs archive/

SituationDestination
Finished all phasesarchive/
Finished some phases, rest deferred/cancelled on purposearchive/
Whole roadmap deferred or cancelled (no [x] at all)skipped/
Never started, scope decision reversedskipped/
Superseded by another roadmapskipped/ — add a pointer line at the top: > Superseded by agents/roadmaps/{other}.md
Research proved the direction wrongskipped/ — add a 1-line reason at the top

If in doubt: archive beats skipped. skipped/ is reserved for roadmaps where no meaningful work was invested and the scope itself was rejected.

Progress dashboard — agents/roadmaps-progress.md

A generated dashboard aggregates progress across every open roadmap. It sits at agents/roadmaps-progress.md (outside roadmaps/ to keep the folder clean) and is rewritten by .augment/scripts/update_roadmap_progress.ts.

Always regenerate in the SAME response after any of the following (enforced by roadmap-progress-sync):

  • Creating a new roadmap (/roadmap:create)
  • Marking a step [x], [~], or [-] during /roadmap:process-*
  • Archiving or moving a roadmap to skipped/
  • Adding, renaming, or removing a phase

Command:

./agent-config roadmap:progress           # rewrite the dashboard
./agent-config roadmap:progress-check     # CI: fail if stale

The ./agent-config wrapper lives in the project root (written by the package installer, gitignored) and delegates to the master CLI inside node_modules/@event4u/agent-config/ or vendor/event4u/agent-config/. No global tooling required.

The dashboard is a read-only snapshot. Do not edit it by hand — regenerate it.

Blockers on the dashboard

The overview table's Blocker column counts each roadmap's open ## Blockers entries (or the legacy > Blocked until note) and links to the per-roadmap breakdown, which lists every open blocker with owner, blocked scope, and full instructions. Authoring shape: templates/roadmaps.md rule 20; authoring guidance: roadmap-writing § 5b. Clearing a blocker flips its Status: resolved and regenerates the dashboard in the same reply, same cadence as a checkbox flip.

Rubric pass (optional, surfacing-only)

After producing a roadmap, run judge-artifact-completeness with rubric roadmap-score to surface missing dimensions (risk, tests per step, migration, maintainability). The score is a recommendation; it never blocks the roadmap from shipping. Invoke only when the user wants a completeness check — not on every roadmap creation by default.

Output format

  1. Roadmap file in agents/roadmaps/ with ordered phases and tasks
  2. Progress tracking with checkbox status
  3. agents/roadmaps-progress.md regenerated on every change

Auto-trigger keywords

  • roadmap
  • roadmap creation
  • phase tracking
  • step completion

Gotcha

  • Roadmap files go in agents/roadmaps/ — don't create them in other directories.
  • Don't mark phases complete without running verification (tests, quality checks) — the verify-before-complete rule applies.
  • The model tends to skip phases it deems "simple" — every phase must be explicitly completed.
  • Auto-archive is allowed when count_open == 0 AND count_deferred == 0. [-] cancelled items archive silently (explicit drops). [~] deferred items block silent archive — they trigger the Iron Law 3 flow (see step 4b).
  • archive/ and skipped/ are distinct — archive/ = work happened, skipped/ = no meaningful work, not pursuing. Create either directory if it doesn't exist.
  • Use git mv (not mv) so history follows the file.

Do NOT

  • Do NOT skip quality gates between steps.
  • Do NOT mark steps as done without actually completing them.
  • Do NOT modify completed steps (only add notes if needed).
  • Do NOT create roadmaps for trivial changes (single-file fixes don't need a roadmap).
  • Do NOT commit or push — only local changes.
  • Do NOT archive roadmaps with open [ ] items without asking the user.
  • Do NOT delete roadmaps — always move to archive/ or skipped/.
  • Do NOT use skipped/ as a dumping ground for partially-finished work — that is what archive/ with deferred items is for.
  • Do NOT assign version numbers, git tags, deprecation dates, or release identifiers to phases. Roadmaps plan work; releases and tags are decided by the user separately. Hard rule — see scope-control.
  • Do NOT propose a branch switch while executing a roadmap. The branch question is settled at creation time; if the user already declined (or you never asked because it wasn't sensible), stay silent. See scope-control.