Roadmap Visualization
Generate roadmap visualizations and planning artifacts for product planning
Best use case
Roadmap Visualization is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Generate roadmap visualizations and planning artifacts for product planning
Teams using Roadmap Visualization should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/roadmap-viz/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Roadmap Visualization Compares
| Feature / Agent | Roadmap Visualization | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Generate roadmap visualizations and planning artifacts for product planning
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# Roadmap Visualization Skill
## Overview
Specialized skill for generating roadmap visualizations and planning artifacts. Enables product teams to create clear, stakeholder-appropriate roadmap views in various formats.
## Capabilities
### Roadmap Views
- Generate Now/Next/Later roadmap views
- Create timeline-based roadmap visualizations
- Build stakeholder-specific roadmap versions
- Create Gantt-style planning charts
- Generate dependency graphs
- Build resource allocation views
### Output Formats
- Markdown tables and lists
- Mermaid diagram syntax
- CSV for spreadsheet import
- JSON for tool integration
- ASCII timeline visualizations
### Customization
- Filter by theme, team, or priority
- Adjust time horizons
- Show/hide dependencies
- Customize detail levels per audience
- Apply confidence indicators
## Target Processes
This skill integrates with the following processes:
- `quarterly-roadmap.js` - Primary roadmap planning and visualization
- `product-vision-strategy.js` - Strategic roadmap views
- `stakeholder-alignment.js` - Stakeholder-specific roadmap presentations
- `product-council-review.js` - Review-ready roadmap artifacts
## Input Schema
```json
{
"type": "object",
"properties": {
"viewType": {
"type": "string",
"enum": ["now-next-later", "timeline", "gantt", "dependency", "resource"],
"description": "Type of roadmap view to generate"
},
"initiatives": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"theme": { "type": "string" },
"timeframe": { "type": "string" },
"priority": { "type": "string" },
"dependencies": { "type": "array", "items": { "type": "string" } },
"team": { "type": "string" },
"confidence": { "type": "string", "enum": ["high", "medium", "low"] }
}
}
},
"timeHorizon": {
"type": "string",
"description": "Time range for roadmap (e.g., 'Q1-Q4 2026')"
},
"audience": {
"type": "string",
"enum": ["executive", "engineering", "sales", "customer", "internal"],
"description": "Target audience for roadmap view"
},
"outputFormat": {
"type": "string",
"enum": ["markdown", "mermaid", "csv", "json", "ascii"],
"default": "markdown"
}
},
"required": ["viewType", "initiatives"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"visualization": {
"type": "string",
"description": "Rendered roadmap in requested format"
},
"summary": {
"type": "object",
"properties": {
"totalInitiatives": { "type": "number" },
"byTimeframe": { "type": "object" },
"byTheme": { "type": "object" },
"byPriority": { "type": "object" }
}
},
"dependencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"from": { "type": "string" },
"to": { "type": "string" },
"type": { "type": "string" }
}
}
},
"riskFlags": {
"type": "array",
"items": { "type": "string" },
"description": "Potential scheduling or dependency risks"
}
}
}
```
## Usage Example
```javascript
const roadmap = await executeSkill('roadmap-viz', {
viewType: 'now-next-later',
initiatives: [
{ id: 'init-1', name: 'Core Platform Upgrade', theme: 'Platform', timeframe: 'now', priority: 'P0' },
{ id: 'init-2', name: 'Mobile App Launch', theme: 'Growth', timeframe: 'next', priority: 'P1' },
{ id: 'init-3', name: 'AI Features', theme: 'Innovation', timeframe: 'later', priority: 'P2' }
],
timeHorizon: 'Q1-Q4 2026',
audience: 'executive',
outputFormat: 'markdown'
});
```
## Dependencies
- Visualization libraries
- Export format handlersRelated Skills
RViz Visualization Skill
RViz configuration and custom visualization for robot development and debugging
decision-visualization
Decision-specific visualization skill for creating clear, actionable visual representations of analyses
roadmap-management
Roadmap parsing, analysis, and mutation operations for ROADMAP.md. Handles phase and milestone lifecycle including add, insert (decimal), remove, complete, and requirements coverage analysis.
process-builder
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.
babysitter
Orchestrate via @babysitter. Use this skill when asked to babysit a run, orchestrate a process or whenever it is called explicitly. (babysit, babysitter, orchestrate, orchestrate a run, workflow, etc.)
yolo
Run Babysitter autonomously with minimal manual interruption.
user-install
Install the user-level Babysitter Codex setup.
team-install
Install the team-pinned Babysitter Codex workspace setup.
retrospect
Summarize or retrospect on a completed Babysitter run.
resume
Resume an existing Babysitter run from Codex.
project-install
Install the Babysitter Codex workspace integration into the current project.
plan
Plan a Babysitter workflow without executing the run.