From roadmap
Synthesizes project docs and codebase into roadmap status, gaps analysis, blockers, risks, and next actions. Use for health checks, progress tracking, and milestone planning.
npx claudepluginhub joaquimscosta/arkhe-claude-plugins --plugin roadmapThis skill is limited to using the following tools:
Synthesize project documentation and codebase state into actionable status reports.
Reviews and maintains project ROADMAP.md by cross-referencing codebase, PRDs, marking items done, reprioritizing, and committing updates.
Analyzes repository activity against delivery roadmap to calculate actual vs planned progress, identify delays, and provide velocity and risk insights.
Creates and manages unified project roadmaps by scanning specs in docs/changes/* and plans, proposing milestone groupings for human confirmation before writing docs/roadmap.md. Use for status checks or --create/--add/--sync/--edit.
Share bugs, ideas, or general feedback.
Synthesize project documentation and codebase state into actionable status reports.
Run the shared context discovery protocol in CONTEXT_DISCOVERY.md. Execute all phases in order (use thorough scan mode for Phase 7). Store results for analysis below.
Parse from $ARGUMENTS:
| Mode | Description |
|---|---|
status | Overall dashboard — modules, phases, completion |
gaps | Gap analysis status — open/closed/in-progress |
next | Prioritized next actions |
delta | What changed since last assessment |
blockers | Blocking chain analysis |
risks | Risk register with likelihood/impact |
update | Git-history-aware status document update (Phase A: what shipped + Phase B: full scan). Add --incremental for targeted post-sprint sync (Phase A + targeted edits only) |
specs | Spec pipeline status verification |
plan | Consolidated project plan — scaffold, show, or sync phases/specs/ADRs |
| (none) | Full dashboard (combines status + gaps + next) |
Rate each module using the shared vocabulary in MATURITY_SCALE.md.
statusProduce a status dashboard:
| Module | Backend | Frontend | Maturity |
|---|
Then detail: What's working, What's planned, What's missing.
After producing the dashboard, check for documentation drift:
{status_file} via git: git log -1 --format="%H %ai" -- {status_file}git log {hash}..HEAD --oneline --no-merges | grep -cE "^[a-f0-9]+ (feat|fix):"⚠️ Documentation may be stale: {N} feature/fix commits since last status update ({date}).
Run `/roadmap update` to sync.
gapsCross-reference all gap analysis documents. For each gap: original report, current status (Open/In Progress/Closed), evidence of closure.
nextPrioritized recommendations combining: unclosed gaps, unstarted specs, module maturity imbalances, frontend-backend parity gaps.
deltaCompare the status document against current codebase state. Highlight: new files/modules, closed gaps, new issues, migration count changes.
blockersTrace blocking chains. For each blocker: what it blocks, who owns it, what's needed to unblock.
risksRisk register:
| Risk | Likelihood | Impact | Score | Mitigation |
|---|
updateGenerate an updated status document with git-history awareness. Two phases:
Before the codebase scan, analyze what changed since the last doc update:
{status_file}: git log -1 --format="%H %ai" -- {status_file}git log {hash}..HEAD --oneline --no-merges(#NN) from commit messages) and commit type (feat:, fix:, docs:, etc.)arkhe/specs/ changes in the commit range)docs/adr/ in the commit range)## What Shipped Since Last Update (2026-03-09, 10 commits ago)
1. Glossary Management + Dictionary Browser (PR #32, specs 022-025)
- 6 components, 2 hooks, 5 test files, /dictionary route
2. App Header Unification (PR #33)
- Refactored navigation components
3. skrebe.app Redirect (1aff903, ADR-0010)
- New middleware + DNS config
This context feeds into Phase B so the codebase scan knows what to look for and can produce more accurate updates.
{status_file}[Unreleased] is missing entries for shipped features from Phase A, suggest adding them after the status update is applied (don't auto-write CHANGELOG without explicit confirmation)specsSpec pipeline verification:
| Spec | Title | Status | Evidence |
|---|
Verify status against codebase, not just what the spec says.
planConsolidated project plan — lifecycle management from scaffold to sync.
Read plan_file from .arkhe.yaml roadmap: section (default: docs/PROJECT-PLAN.md).
Parse subcommand from remaining arguments:
| Subcommand | Description |
|---|---|
scaffold | Create initial PROJECT-PLAN.md from existing project state |
show | Display current plan as a consolidated view (read-only) |
sync | Update plan document from current codebase + git state |
| (none) | Default to show if plan doc exists; scaffold if it doesn't |
plan scaffoldCreate the initial plan document by consolidating scattered planning artifacts.
{status_file}, product roadmaps (docs/**/roadmap.md), backlogs (docs/**/backlog.md){specs_dir}/*/spec.md, extract: spec ID (directory name), title (first # heading), status (Status: field)docs/adr/[0-9]*.md, extract: number (filename), title (first # heading), status[AUTO-LINKED] markers on detected mappings, [MANUAL] on explicit matches, [UNLINKED] on unmapped items{plan_file}If {plan_file} already exists, warn and offer: overwrite, sync instead, or cancel.
plan showRead-only consolidated view.
{plan_file} — if missing, suggest scaffold"⚠️ Plan may be stale. Run /roadmap plan sync to update."plan syncGit-aware update of the plan document — follows the update mode's Phase A + Phase B pattern.
+/-/~ markers; ask confirmation{plan_file} preserving user-edited sectionsSee WORKFLOW.md § plan for detailed execution protocol.
update and plan scaffold/plan sync show unified diff preview (using +/-/~ markers) and require explicit confirmation before writing--deep reports are saved by default to {output_dir}/reports/; user can opt out--deep)When $ARGUMENTS contains --deep, run the full multi-agent pipeline with parallel cross-perspective analysis. Three Sonnet agents analyze the project simultaneously from PM, Architect, and Roadmap perspectives, then a synthesizer merges findings and surfaces contradictions.
See WORKFLOW.md § Deep Pipeline for the 5-phase execution protocol.
Phase 4 produces a Confidence Scoreboard table with independent scores per finding. Findings below 70 are removed; 70-89 are tagged [NEEDS VALIDATION].
Patterns applied: Pipeline, Supervisor-Worker, Parallel Execution, Confession, Confidence-Gated Completion.
See the Roadmap Analyst section of LANE_DISCIPLINE.md. Stay in your lane.