| name | gantt-chart |
| description | Create a visual project timeline with SVG Gantt chart, Mermaid critical path diagram, dependency matrix, and milestone tracking. Use after JIRA structure and dependency analysis are complete. |
| allowed-tools | Read, Grep, Glob, Write, Bash |
Generate GANTT-CHART.md at the repository root and .github/gantt-chart.svg.
Process
- Read
JIRA-STRUCTURE.md for epic IDs, durations, and phase assignments
- Read
_research/DEPENDENCY-ANALYSIS.md for critical path and dependencies
- Generate the SVG Gantt chart following the SVG Gantt Generator specification
- Write the Mermaid critical path flowchart
- Build the dependency matrix table
- Define milestones with success criteria
Required Sections in GANTT-CHART.md
- Project Timeline header: Duration and date range
- Embedded SVG:

- Critical Path: Mermaid
graph LR flowchart showing blocking dependencies, color-coded by phase
- Dependency Matrix: Table (Epic | Depends On | Blocks | Phase)
- Milestones: Table (Milestone | Week | Date | Success Criteria | Owner), 3-5 milestones
SVG Requirements
See the svg-gantt-generator skill for the full SVG specification. Key points:
- 1280px wide, dark theme (#0f172a background)
- Phase-coded gradient bars (blue/green/amber/purple)
- Sub-task bars nested under epics
- Week grid columns
- Milestone diamond markers
Quality Criteria