|
| 1 | +--- |
| 2 | +name: roadmap-management |
| 3 | +description: Use when creating, updating, reviewing, or promoting Theseus roadmap items, including public roadmap notes, internal roadmap status maps, planning lanes, GitHub issue readiness, and OSS roadmap hygiene. |
| 4 | +--- |
| 5 | + |
| 6 | +# Theseus Roadmap Management |
| 7 | + |
| 8 | +Use this skill when roadmap or planning work changes what Theseus says it is |
| 9 | +building next. |
| 10 | + |
| 11 | +Roadmap work is status management, not aspiration capture. Keep current truth, |
| 12 | +planned work, research, and rejected paths separate. |
| 13 | + |
| 14 | +## Read Order |
| 15 | + |
| 16 | +Start with: |
| 17 | + |
| 18 | +1. `docs/direction/roadmap.md` |
| 19 | +2. `docs/maps/roadmap-status-map.md` |
| 20 | +3. `docs/maps/runtime-truth-map.md` |
| 21 | +4. `docs/maps/not-real-yet.md` |
| 22 | +5. the owning concept note for the roadmap item |
| 23 | + |
| 24 | +If an item concerns implementation, verify against source before marking it |
| 25 | +`shipped`, `active`, or `next`. |
| 26 | + |
| 27 | +## Roadmap Artifacts |
| 28 | + |
| 29 | +- `docs/direction/roadmap.md`: concise public-facing roadmap. |
| 30 | +- `docs/maps/roadmap-status-map.md`: internal evidence table and promotion state. |
| 31 | +- GitHub issues: execution units only after the item is actionable. |
| 32 | +- GitHub milestones/projects: sequencing containers, not doctrine. |
| 33 | + |
| 34 | +Do not put loose ideation in the roadmap. Move it to `docs/brainstorms` or |
| 35 | +`docs/drafts` first. |
| 36 | + |
| 37 | +## Status Vocabulary |
| 38 | + |
| 39 | +Use one status per item: |
| 40 | + |
| 41 | +- `shipped`: implemented and verified. |
| 42 | +- `active`: currently being built. |
| 43 | +- `next`: intended soon and clear enough to plan. |
| 44 | +- `designed`: accepted direction, not scheduled. |
| 45 | +- `research`: needs investigation, prototype, or decision. |
| 46 | +- `blocked`: dependency or unresolved decision is known. |
| 47 | +- `parked`: not rejected, but not worth attention now. |
| 48 | +- `rejected`: deliberately not doing. |
| 49 | + |
| 50 | +Avoid `future`. It hides whether an item is designed, research, blocked, or |
| 51 | +parked. |
| 52 | + |
| 53 | +## Promotion Pipeline |
| 54 | + |
| 55 | +```text |
| 56 | +brainstorm -> draft -> designed -> next -> active -> shipped |
| 57 | +``` |
| 58 | + |
| 59 | +Promotion rules: |
| 60 | + |
| 61 | +- Do not promote directly from brainstorm to active. |
| 62 | +- Do not mark `next` without a `done when` test. |
| 63 | +- Do not mark `active` without an owner and evidence that work has started. |
| 64 | +- Do not mark `shipped` unless code, tests/checks, and docs agree. |
| 65 | +- When promoting or demoting, update `roadmap-status-map.md` in the same pass. |
| 66 | + |
| 67 | +## Item Shape |
| 68 | + |
| 69 | +Every roadmap-ready item needs: |
| 70 | + |
| 71 | +- status |
| 72 | +- owner |
| 73 | +- source docs |
| 74 | +- evidence or current implementation note |
| 75 | +- dependency or blocker, if any |
| 76 | +- `done when` criteria |
| 77 | + |
| 78 | +If `done when` cannot be written, the item belongs in `research`, `drafts`, or |
| 79 | +`brainstorms`, not `next`. |
| 80 | + |
| 81 | +## OSS Posture |
| 82 | + |
| 83 | +For public docs: |
| 84 | + |
| 85 | +- Prefer `Now / Next / Later / Not Planned` over dates. |
| 86 | +- Publish less than the internal status map knows. |
| 87 | +- State non-promises explicitly. |
| 88 | +- Do not imply timelines unless the project intends to carry timeline pressure. |
| 89 | +- Keep roadmap items tied to user-visible or contributor-visible value. |
| 90 | + |
| 91 | +## Verification |
| 92 | + |
| 93 | +After roadmap doc edits, run: |
| 94 | + |
| 95 | +```sh |
| 96 | +bun run docs:check |
| 97 | +``` |
| 98 | + |
| 99 | +Use `docs-management` rules for links, frontmatter, folder placement, and |
| 100 | +status separation. |
0 commit comments