Generate beautiful interactive timeline HTML pages from JSON data, with vertical, horizontal, or dual-side layouts, collapsible details, and custom colors. Ideal for project milestones, company histories, or resumes. Triggered when a user mentions 'timeline', 'history of events', 'project milestones', 'release log', or asks to visualize a chronological sequence of data.
npx skills add https://github.com/zebbern/claude-code-guide --skill timeline-builder
Generate beautiful interactive timeline HTML pages from JSON configuration data, with three layout modes:
vertical) — A classic top-to-bottom timeline with event cards alternating on either side of the axishorizontal) — A horizontally scrollable timeline, best for displaying fewer eventsdual-side) — Events are placed on the left or right based on the side field, great for side-by-side comparisonsAll layouts support:
python3 scripts/generate_timeline.py --config timeline_data.json --output timeline.html
cat timeline_data.json | python3 scripts/generate_timeline.py --stdin --output timeline.html
python3 scripts/generate_timeline.py --config data.json --layout horizontal --output timeline.html
{
"title": "Project Milestones",
"layout": "vertical",
"theme": {
"primaryColor": "#2563eb",
"secondaryColor": "#7c3aed",
"backgroundColor": "#ffffff",
"textColor": "#1f2937",
"lineColor": "#d1d5db",
"fontFamily": "system-ui, -apple-system, sans-serif"
},
"events": [
{
"date": "2024-01-15",
"title": "Project Kickoff",
"summary": "Approval completed, core team assembled",
"details": "Detailed description text, shown when the card is expanded...",
"icon": "🚀",
"category": "Milestone",
"color": "#10b981",
"side": "left"
}
]
}
| Argument | Description |
|----------|-------------|
| --config, -c | Path to the JSON config file (mutually exclusive with --stdin) |
| --stdin | Read JSON from standard input |
| --output, -o | Output HTML file path (defaults to stdout) |
| --layout, -l | Override layout mode: vertical, horizontal, dual-side |
| --title, -t | Override the timeline title |
| Field | Required | Description |
|-------|----------|-------------|
| date | Yes | Date label — any format works (e.g. 2024-01, Q1 2024, Phase One) |
| title | Yes | Event title |
| summary | No | Short description, always visible on the card |
| details | No | Detailed content, revealed on click |
| icon | No | Emoji or single-character icon (defaults to ●) |
| category | No | Category tag displayed on the card |
| color | No | Event node color (overrides the theme color) |
| side | No | Only for dual-side layout: left or right |
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
Take zebbern/timeline-builder from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.