Skip to content
AID v2.3.0 is out.See what's new →
Skills

aid-create-roadmap

  • name — aid-create-roadmap
  • description — Realize a ready roadmap seed into .aid/knowledge/roadmap.md — frontmatter, preamble, ## Contents index (including the forward ## MVP entry), and the three horizon sections ## Now, ## Next, ## Later. Use this skill when a roadmap seed is ready and the project needs its roadmap document written for the first time. Registers the document in .aid/settings.yml and .aid/knowledge/README.md on first creation. Routes to /aid-update-roadmap when the horizon sections already carry committed content. The ## MVP section belongs entirely to /aid-create-mvp — this skill writes only its ## Contents index entry.
  • allowed-tools — Read, Glob, Grep, Bash, Write, Edit, Agent
  • argument-hint — [<direction>] — what to realize (fills horizon sections from the seed)

Definition: canonical/skills/aid-create-roadmap/SKILL.md

flowchart TB
  classDef aidNode color:#fff
  classDef aidEntry fill:#166534,stroke:#14532d,color:#fff
  classDef aidExit fill:#991b1b,stroke:#7f1d1d,color:#fff
  classDef aidDecision fill:#92400e,stroke:#78350f,color:#fff
  classDef aidLoopBack fill:#1e3a8a,stroke:#1e3a8a,color:#fff
  classDef aidStep fill:#1a2035,stroke:#d4a853,color:#f1f5f9
  n1(["INTAKE"])
  n2["GUARD"]
  n3(["REALIZE"])
  n4(["REGISTER"])
  n5["VERIFY"]
  n6["PRESENT<br/>hard stop -- the user decides"]
  n7(["DONE"])
  n1 --> n2
  n2 --> n3
  n4 --> n5
  n5 -.-> n3
  n5 --> n6
  n6 --> n7
  class n1 aidEntry
  class n2 aidStep
  class n3 aidExit
  class n4 aidEntry
  class n5 aidLoopBack
  class n6 aidStep
  class n7 aidExit
  class n1 aidNode
  class n2 aidNode
  class n3 aidNode
  class n4 aidNode
  class n5 aidNode
  class n6 aidNode
  class n7 aidNode

Every node in the chart above, in chart order, with the exact canonical/ text it was derived from.

1 · INTAKE · entry

canonical/skills/aid-create-roadmap/SKILL.md#L38-L52
## State: INTAKE
1. **Require a subject.** Empty argument -> ask one bootstrapping question ("What direction
do you want to realize into roadmap.md -- or run `/aid-design-roadmap` first?") and wait.
2. **Allocate, exactly per `design-lifecycle.md § Skill shape -- Allocation`** -- the Work
Initiation Gate, then `initiator: aid-create-roadmap`, `active_skill:
aid-create-roadmap`, `pipeline.path: lite`, `lifecycle: Running`. `phase` is not
driven.
3. **Read the seed** at `.aid/design/roadmap.md`. If no seed exists, inform the user and
ask whether to proceed without one (direction entered interactively) or to run
`/aid-design-roadmap` first; do not proceed silently.
4. **Read the destination** at `.aid/knowledge/roadmap.md` if it exists. Classify its state:
absent | present-horizon-empty | present-horizon-populated.
5. **Classify complexity (model + effort)** for the `aid-architect` dispatch below;
verifier tier >= producer tier (`agent-dispatch-tiering.md`).

Source: canonical/skills/aid-create-roadmap/SKILL.md#L38-L52 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L38-L54

2 · GUARD · step

canonical/skills/aid-create-roadmap/SKILL.md#L58-L61
## State: GUARD
**Readiness gate (class-1 contract, feature-002 §3b).** Inspect the seed for a non-empty
`## Open questions` section per `design-lifecycle.md`'s detection rule.

Source: canonical/skills/aid-create-roadmap/SKILL.md#L58-L61 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L58-L68

3 · REALIZE · exit · UNSPECIFIED

canonical/skills/aid-create-roadmap/SKILL.md#L72-L75
## State: REALIZE
Dispatch **`aid-architect`** (clean context, tiered) to realize the seed. Apply the case
determined in INTAKE:

Source: canonical/skills/aid-create-roadmap/SKILL.md#L72-L75 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L72-L109

4 · REGISTER · entry

canonical/skills/aid-create-roadmap/SKILL.md#L131-L134
## State: REGISTER
**On creation only** (destination was absent in INTAKE). Write two surfaces atomically
in the same run, per `feature-003 §6b` (REQUIREMENTS CC-1, CC-2):

Source: canonical/skills/aid-create-roadmap/SKILL.md#L131-L134 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L131-L146

5 · VERIFY · loop-back

canonical/skills/aid-create-roadmap/SKILL.md#L150-L154
## State: VERIFY
**Full verify** -- exactly as `design-lifecycle.md § Skill shape -- "Full verify"`
defines it. Not clean -> loop to REALIZE; the circuit-breaker there governs escalation
to IMPEDIMENT + `lifecycle: Blocked`.

Source: canonical/skills/aid-create-roadmap/SKILL.md#L150-L154 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L150-L156

6 · PRESENT — hard stop — the user decides · step

canonical/skills/aid-create-roadmap/SKILL.md#L160-L162
## State: PRESENT (hard stop -- the user decides)
Set `lifecycle: Paused-Awaiting-Input`. Present the realized document clearly. Assert:

Source: canonical/skills/aid-create-roadmap/SKILL.md#L160-L162 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L160-L169

7 · DONE · exit · UNSPECIFIED

canonical/skills/aid-create-roadmap/SKILL.md#L173-L175
## State: DONE
Set `lifecycle: Completed`, `updated` now, append a `## Lifecycle History` row.

Source: canonical/skills/aid-create-roadmap/SKILL.md#L173-L175 · full step: canonical/skills/aid-create-roadmap/SKILL.md#L173-L175

Report an issue with this page →