Generate roadmap visualizations and planning artifacts for product planning
Generates visual roadmap artifacts like timelines and Gantt charts from product initiative data for various stakeholders.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for generating roadmap visualizations and planning artifacts. Enables product teams to create clear, stakeholder-appropriate roadmap views in various formats.
This skill integrates with the following processes:
quarterly-roadmap.js - Primary roadmap planning and visualizationproduct-vision-strategy.js - Strategic roadmap viewsstakeholder-alignment.js - Stakeholder-specific roadmap presentationsproduct-council-review.js - Review-ready roadmap artifacts{
"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"]
}
{
"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"
}
}
}
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'
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.