Roadmap Communicator
Roadmap Communicator helps create clear roadmap communication artifacts for internal and external stakeholders, including roadmap presentations, stakeholder updates, release notes, changelogs, and feature announcements. It provides guidance on different roadmap formats, communication patterns for various audiences, and a changelog generation script.
✨ What it does
- Provides templates for Now/Next/Later, timeline, and theme-based roadmaps
- Offers communication patterns for board/executive, engineering, and customer audiences
- Guides user-facing and internal release notes with audience-specific content
- Includes a changelog generator script that parses conventional commits and groups by type
- Presents a feature announcement framework with six steps
- Includes a communication quality checklist
🎯 When to use it
- Building roadmap presentations in different formats
- Writing stakeholder updates for board, engineering, or customers
- Producing user-facing or internal release notes
- Generating changelogs from git history
- Structuring feature announcements
🚀 How to use
Trigger the skill by asking for help with roadmap narratives, release notes, changelogs, or stakeholder updates. Provide the context: audience (executives, engineering, customers), type of artifact (roadmap, release notes, changelog, announcement), and any relevant details (git range for changelog). Example prompts:
Create a Now/Next/Later roadmap for our engineering team.
Generate a changelog from v1.0.0 to HEAD.
📄 Output: Roadmap communication artifacts such as presentations, updates, release notes, changelogs, and announcements.
📦 Add this skill to Claude Code
# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills
# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/product-team/skills/roadmap-communicator .claude/skills/roadmap-communicatorSkill source: product-team/skills/roadmap-communicator/SKILL.md
⚠️ Good to know
The skill provides templates and guidance but does not automatically generate content without user input; changelog generation requires a git repository with conventional commits.
❓ FAQ
What roadmap formats are supported?
The skill supports Now/Next/Later, timeline, and theme-based roadmaps, each suited for different levels of uncertainty and planning needs.
How do I generate a changelog?
Use the provided script: python3 scripts/changelog_generator.py --from v1.0.0 --to HEAD, which reads git log, parses conventional commit prefixes, and groups entries by type.
What should user-facing release notes focus on?
User-facing release notes should lead with user value, group by workflows or user jobs, and explicitly include migration or behavior changes.
🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.