Agent skill
roadmap
Synthesize project documentation and codebase into comprehensive roadmap status, gaps analysis, and blockers. Use when assessing project health, identifying blockers, tracking progress, comparing plan vs reality, documenting risks, or planning next milestones. Triggers: "roadmap", "project status", "blockers", "risks", "progress", "next milestone", "gaps", "what's done".
Install this agent skill to your Project
npx add-skill https://github.com/joaquimscosta/arkhe-claude-plugins/tree/main/plugins/roadmap/skills/roadmap
SKILL.md
Roadmap Analyst
Synthesize project documentation and codebase state into actionable status reports.
Context Discovery
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.
Arguments
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) |
specs |
Spec pipeline status verification |
| (none) | Full dashboard (combines status + gaps + next) |
Module Maturity Scale
Rate each module using the shared vocabulary in MATURITY_SCALE.md.
Mode Execution
status
Produce 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:
- Find last modification of
{status_file}via git:git log -1 --format="%H %ai" -- {status_file} - Count feature/fix commits since:
git log {hash}..HEAD --oneline --no-merges | grep -cE "^[a-f0-9]+ (feat|fix):" - If 3 or more feat/fix commits exist since last update, append a notice at the end of the output:
⚠️ Documentation may be stale: {N} feature/fix commits since last status update ({date}).
Run `/roadmap update` to sync.
gaps
Cross-reference all gap analysis documents. For each gap: original report, current status (Open/In Progress/Closed), evidence of closure.
next
Prioritized recommendations combining: unclosed gaps, unstarted specs, module maturity imbalances, frontend-backend parity gaps.
delta
Compare the status document against current codebase state. Highlight: new files/modules, closed gaps, new issues, migration count changes.
blockers
Trace blocking chains. For each blocker: what it blocks, who owns it, what's needed to unblock.
risks
Risk register:
| Risk | Likelihood | Impact | Score | Mitigation |
|---|
update
Generate an updated status document with git-history awareness. Two phases:
Phase A: Git History Scan
Before the codebase scan, analyze what changed since the last doc update:
- Find last modification of
{status_file}:git log -1 --format="%H %ai" -- {status_file} - If no previous commit found, skip Phase A (first-time setup — Phase B handles it)
- List commits since:
git log {hash}..HEAD --oneline --no-merges - Group by PR number (parse
(#NN)from commit messages) and commit type (feat:,fix:,docs:, etc.) - For each feature/fix group, summarize:
- Scope (new components, routes, hooks, test files — inferred from file paths in the diff)
- Related specs (cross-reference
arkhe/specs/changes in the commit range) - Related ADRs (new files in
docs/adr/in the commit range)
- Present a "What Shipped" summary to the user before proceeding to the full scan:
## 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.
Phase B: Full Codebase Scan + Write (existing behavior, enhanced)
- Run full context discovery + codebase scan (same as before)
- Read existing status document
- Preserve format and structure
- Update all data points — now informed by the git history from Phase A:
- Module maturity ratings
- Phase completion entries (Phase A identifies which phases completed)
- Spec pipeline entries (Phase A identifies which specs shipped)
- ADR table entries (Phase A identifies new ADRs)
- Test coverage section
- Commit count and date
- Risk register (close risks for shipped features)
- Show diff preview and ask for confirmation
- Write updated file to
{status_file} - Also check CHANGELOG.md — if
[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) - Report changes made
specs
Spec pipeline verification:
| Spec | Title | Status | Evidence |
|---|
Verify status against codebase, not just what the spec says.
Output Rules
- Evidence-based — every claim backed by a file path, migration, or component
- Tabular — use tables for at-a-glance status; prose for analysis
- Actionable — always end with recommended next actions
- Honest — distinguish between "verified working" and "files exist but untested"
updatewrites files after user confirmation; all other modes output to chat
Deep Mode (--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.
Patterns applied: Pipeline, Supervisor-Worker, Parallel Execution, Confession, Confidence-Gated Completion.
Lane Discipline
See the Roadmap Analyst section of LANE_DISCIPLINE.md. Stay in your lane.
References
- WORKFLOW.md — Detailed discovery and mode workflows
- EXAMPLES.md — Usage examples
- TROUBLESHOOTING.md — Common issues and fixes
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Skill Name
What this skill does. Use when user mentions "keyword1", "keyword2", or "keyword3". Keep under 1,024 characters and include specific trigger keywords.
plugin-release-checker
skill-validator
Validate skills against Anthropic best practices for frontmatter, structure, content, file organization, hooks, MCP, and security (62 rules in 8 categories). Use when creating new skills, updating existing skills, before publishing skills, reviewing skill quality, or when user mentions "validate skill", "check skill", "skill best practices", "skill review", or "lint skill".
sync-docs
Sync official Anthropic documentation and analyze impact on project components. Runs docs/reference/update-claude-docs.sh, computes diffs, and reports impacts on the skill validator, plugins, and project documentation. Use when user mentions "sync docs", "update reference docs", "refresh docs", or "check doc changes".
research-frontmatter
Enforce standard YAML frontmatter on research documents in docs/research/. Use when creating, editing, or promoting research files, when user mentions "research metadata", "research frontmatter", or "research staleness".
deep-research
Deep research on technical topics using EXA tools with intelligent two-tier caching. Use when user asks to research a topic, investigate best practices, look up information, find patterns, or explore architectures. Also invoked by /research command. Triggers: "research", "look up", "investigate", "deep dive", "find information about", "what are best practices for", "how do others implement".
Didn't find tool you were looking for?