Timeline Builder

SkillAI & models

Lets your agent turn JSON data into an interactive timeline web page with layouts, collapsible details, and custom colors.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Timeline Builder skill

About this capability

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

What this skill tells your AI

The instructions your AI receives, as published by zebbern/claude-code-guide in skills/timeline-builder/SKILL.md and read by ahel’s review.

Generate beautiful interactive timeline HTML pages from JSON configuration data, with three layout modes:

  1. Vertical layout (vertical) — A classic top-to-bottom timeline with event cards alternating on either side of the axis
  2. Horizontal layout (horizontal) — A horizontally scrollable timeline, best for displaying fewer events
  3. Dual-side layout (dual-side) — Events are placed on the left or right based on the side field, great for side-by-side comparisons

All layouts support:

  • Click to expand/collapse event details
  • Mobile-friendly responsive design
  • Custom theme colors, icons, and category labels
  • Pure static HTML with zero dependencies — opens directly in any browser

Usage

Basic: Generate from a JSON config file

python3 scripts/generate_timeline.py --config timeline_data.json --output timeline.html

Read JSON from stdin

cat timeline_data.json | python3 scripts/generate_timeline.py --stdin --output timeline.html

Override layout mode (takes precedence over config file)

python3 scripts/generate_timeline.py --config data.json --layout horizontal --output timeline.html

JSON Configuration Format

{
  "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"
    }
  ]
}

CLI Arguments

ArgumentDescription
--config, -cPath to the JSON config file (mutually exclusive with --stdin)
--stdinRead JSON from standard input
--output, -oOutput HTML file path (defaults to stdout)
--layout, -lOverride layout mode: vertical, horizontal, dual-side
--title, -tOverride the timeline title

Event Fields

FieldRequiredDescription
dateYesDate label — any format works (e.g. 2024-01, Q1 2024, Phase One)
titleYesEvent title
summaryNoShort description, always visible on the card
detailsNoDetailed content, revealed on click
iconNoEmoji or single-character icon (defaults to )
categoryNoCategory tag displayed on the card
colorNoEvent node color (overrides the theme color)
sideNoOnly for dual-side layout: left or right

Use Cases

  • Project milestone displays
  • Product release histories
  • Company growth timelines
  • Personal resume timelines
  • Course syllabus outlines
  • Any scenario requiring chronological information display

Dependencies

  • Python 3.6+ (standard library only — no extra packages required)

Signals

GitHub stars
5k
Forks
463
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
timeline-builder
Source
github.com/zebbern/claude-code-guide