From visual-documentation-skills
Generates HTML timelines, Gantt charts, and project roadmaps with phases, milestones, progress bars, and status colors.
How this skill is triggered — by the user, by Claude, or both
Slash command
/visual-documentation-skills:timeline-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create interactive HTML timelines and project roadmaps with Gantt charts and milestones.
Create interactive HTML timelines and project roadmaps with Gantt charts and milestones.
<!DOCTYPE html>
<html>
<head>
<title>[Project] Timeline</title>
<style>
body { font-family: system-ui; max-width: 1400px; margin: 0 auto; }
.timeline-bar { background: linear-gradient(90deg, #4299e1, #48bb78); height: 20px; border-radius: 4px; }
.milestone { border-left: 3px solid #e53e3e; padding-left: 10px; }
/* Status colors: #48bb78 (done), #4299e1 (in-progress), #718096 (planned) */
</style>
</head>
<body>
<h1>[Project] Timeline</h1>
<!-- Phase sections with timeline bars -->
<!-- Milestones list -->
</body>
</html>
<div class="timeline-item">
<span>Task Name</span>
<div class="timeline-bar" style="width: [percentage]%; background: [status-color];"></div>
<span>[start] - [end]</span>
</div>
[project]-timeline.htmlUse semantic colors for status, keep layout responsive.
npx claudepluginhub chaosclubco/claude-skills-marketplace-c114beb6 --plugin visual-documentation-skills4plugins reuse this skill
First indexed Jun 6, 2026
Create HTML timelines and roadmaps with status pills, dependency arrows, and milestone markers — for quarterly planning, project retrospectives, release histories, incident timelines, sprint visualizations. Use whenever the user wants to visualize a sequence of events over time, a plan, a roadmap, a release schedule, or look back at how a project unfolded. Reach for this whenever the explanation has a clear time axis, even if the user doesn't say "timeline".
Creates a visual project roadmap with phases, milestones, and realistic timelines. Emphasizes core-first delivery and can auto-add target dates.
Generates Mermaid Gantt chart diagrams with step-by-step guidance, validation, and production-ready configurations. Useful when creating project timelines or visual schedules.