SKILL.md
Gantt / Roadmap Skill
A list of tasks doesn't show what runs in parallel, what blocks what, or where the crunch is. A Gantt chart
does. This skill turns a plan into a Mermaid Gantt chart with phases (sections), dated tasks, dependencies,
and milestones — a real schedule, not a wish list. Because the output carries real dates, the playground can
also export it straight to a calendar (.ics).
Required Inputs
Ask for these only if they aren't already provided:
- The work — phases and tasks to schedule.
- Timing — a start date, and durations or end dates (or relative ordering you can date from the start).
- Dependencies — what must finish before what can start.
- Milestones — the dated checkpoints (kickoff, beta, GA, launch).
If exact dates aren't given, anchor to a start date and lay tasks out by stated duration/order; flag the dates as planning estimates.
Output Format
[Project] — roadmap
One line on the time span and goal.
gantt
title [Project] roadmap
dateFormat YYYY-MM-DD
axisFormat %b %d
section Discovery
Research :done, r1, 2026-07-01, 10d
Spec sign-off :milestone, m1, 2026-07-15, 0d
section Build
Core build :active, b1, after m1, 20d
Integrations : b2, after b1, 10d
section Launch
Beta :milestone, m2, 2026-08-25, 0d
GA :milestone, m3, 2026-09-10, 0d
Critical path — the chain of dependent tasks that sets the end date.
Risks / buffers — where the schedule is tight, what could slip, where buffer exists.
Assumptions — any dates you estimated rather than were given.
Mermaid Rules (so it renders)
- Start with
gantt, thentitle,dateFormat YYYY-MM-DD, optionalaxisFormat. - Group with
section Name. Task line:Label : [status,] id, start, duration(e.g. ).
