BeClaude

chronicle-workflow-skills

New
Community RegistryDocumentationby Chandler Hardy

Complete Chronicle workflow skills including session documentation, context retrieval, and development tracking

Community PluginView Source

Overview

<p align="center"> <img src="public/chronicle_paragraph.png" alt="Chronicle - Local-first development session recorder with AI-powered search" width="800"> </p>

Give your AI assistants a memory. Track every decision, search past conversations, and never lose context across sessions.

๐ŸŒ… Project Sunset Notice

November 2025: Chronicle has been officially sunset.

After a successful development journey, we've decided to end active development of Chronicle. The project achieved all its core goals and demonstrated that AI session recording provides immense value - with a proven 2,700x ROI from real-world usage data.

Why the Sunset?

The primary motivation for ending Chronicle's development is the discovery of the episodic-memory skill in the superpowers repository, which provides a more comprehensive and integrated solution for conversation memory across AI platforms. Rather than maintaining two overlapping solutions, we recommend users transition to the episodic-memory system for future needs.

What This Means

  • โ€ขโœ… The codebase remains available for reference, learning, and adaptation
  • โ€ขโœ… All features are stable and functional - you can continue using Chronicle if it meets your needs
  • โ€ขโœ… Comprehensive documentation preserves all architectural decisions and implementation patterns
  • โ€ขโŒ No new features or bug fixes will be implemented
  • โ€ขโŒ No active maintenance or support will be provided

Recommended Alternative

For new users or those seeking similar functionality, we highly recommend exploring:

  • โ€ขepisodic-memory skill (superpowers repository) - Cross-platform conversation memory with advanced search capabilities
  • โ€ขBuilt-in AI tool memory - Many AI assistants are adding native session memory features

Legacy

Chronicle pioneered the concept of AI session recording and demonstrated:

  • โ€ขAI-powered session summarization with chunked processing
  • โ€ขMCP server integration for AI queryable databases
  • โ€ขDatabase-tracked project management with milestone linking
  • โ€ขCross-platform session organization and search
  • โ€ขThe value of persistent AI memory in development workflows

Thank you to everyone who used, contributed to, and supported Chronicle! ๐ŸŽฏ

![Tests]() ![Python]() ![License]() ![MCP]() ![Phase]() ![Status]()


๐Ÿ’ก Value Proposition

The Problem: You spend hours discussing architecture decisions with Claude Code on Monday. On Friday, you switch to a new project and Claude has zero memory of what you decided. You waste time re-explaining context, rediscovering solutions, and repeating conversations across different AI tools.

Chronicle solves this by creating a searchable, AI-powered memory system for all your development work:

  • โ€ข๐Ÿง  Persistent AI Memory - Your AI assistants can query Chronicle to remember what you discussed last week, last month, or last year
  • โ€ข๐Ÿ” Cross-Session Intelligence - "How did I implement authentication in that other project?" โ†’ Instant answer from past sessions
  • โ€ข๐Ÿ“Š Development Insights - See patterns in your workflow, track time across projects, generate weekly summaries
  • โ€ข๐Ÿค Multi-AI Coordination - Claude, Gemini, and Qwen can all access the same knowledge base
  • โ€ข๐Ÿ”’ 100% Local - Everything stays on your machine. No cloud sync, no data sharing, full privacy.

Perfect for:

  • โ€ขSolo Developers - Never forget why you made that architectural decision 3 months ago
  • โ€ขConsultants & Contractors - Track billable hours, generate client reports, document decisions
  • โ€ขMulti-Project Engineers - "What did I do on ProjectX last week?" โ†’ Instant answer
  • โ€ขAI Power Users - Get the most out of Claude, Gemini, Cursor, etc. with persistent context
  • โ€ขTeams - Build institutional knowledge from AI-assisted development
  • โ€ขOpen Source Maintainers - Document discussions and decisions for contributors

๐ŸŽฌ Quick Demo

bash
# Day 1: Work on authentication
$ chronicle start claude
> You discuss OAuth2 implementation with Claude for 2 hours
> Make several commits
$ exit

# Day 30: Different project, need to remember
$ chronicle start claude
You: "How did I implement OAuth2 in that other project?"

Claude: [Uses Chronicle MCP server]
        โ†’ search_sessions("OAuth2")
        โ†’ get_session_summary(session_id=5)

Claude: "In session 5 from last month, you implemented OAuth2 with
         the 'authorization_code' flow. Key decisions:
         - Used Auth0 for identity provider
         - Stored tokens in httpOnly cookies
         - Implemented refresh token rotation
         Files: src/auth/oauth.ts, src/middleware/auth.ts"

You: "Perfect! Do the same thing for this project"
# No time wasted re-explaining context! ๐ŸŽฏ

๐ŸŽฏ The Problem (Detailed)

Modern developers use multiple AI coding assistants, but face critical challenges:

Memory Loss

  • โ€ขโŒ Each AI session starts from scratch with zero context
  • โ€ขโŒ "What did we decide about authentication 2 weeks ago?" ๐Ÿคท
  • โ€ขโŒ Repeat the same explanations across different AI tools
  • โ€ขโŒ Lost context when switching between Claude Code, Gemini CLI, Cursor

Tracking Difficulty

  • โ€ขโŒ No record of decisions made during AI-assisted development
  • โ€ขโŒ Hard to remember which AI tool helped with which feature
  • โ€ขโŒ Can't search through past AI conversations
  • โ€ขโŒ Lost connection between commits and the AI sessions that created them

Multi-Project Chaos

  • โ€ขโŒ Work on 5 different projects? Good luck remembering what you did where
  • โ€ขโŒ Client asks "what did we build last sprint?" โ†’ scramble through git logs
  • โ€ขโŒ No easy way to generate weekly summaries or progress reports

โœจ The Solution

Chronicle is a local-first development memory system that gives AI assistants persistent context:

Core Features:

  • โ€ข๐ŸŽฏ Full Session Recording - Complete transcripts of Claude Code, Gemini CLI, Qwen Code sessions
  • โ€ข๐Ÿ”— Commit Linking - Automatically connects git commits to the AI sessions that created them
  • โ€ข๐Ÿค– AI-Powered Summaries - Intelligent summaries with key decisions, blockers, and file changes
  • โ€ข๐Ÿ” Instant Search - Find past conversations, decisions, and implementations in seconds
  • โ€ข๐Ÿ“Š Multi-Project Tracking - Automatically organizes work by repository
  • โ€ข๐Ÿ”Œ MCP Server - AI assistants can query Chronicle database directly via Model Context Protocol
  • โ€ข๐Ÿ“ Obsidian Integration - Optional export to markdown vault for knowledge graph visualization
  • โ€ข๐Ÿ”’ 100% Local - Everything stored in SQLite on your machine (no cloud required)

๐Ÿš€ Quick Start

Installation

bash
# Clone and install with MCP support
git clone https://github.com/ChandlerHardy/chronicle
cd chronicle
python3 -m pip install -e ".[mcp]"

# Initialize Chronicle
chronicle init

# Interactive setup (API configuration + optional Claude Code hooks)
chronicle setup

# Add a repository to track
chronicle add-repo /path/to/your/project

For environments where you can't install Rust dependencies (e.g., restricted FreeBSD systems), you can install Chronicle without MCP support:

bash
# Clone and install without MCP dependencies
git clone https://github.com/ChandlerHardy/chronicle
cd chronicle
python3 -m pip install -e .

# All CLI commands work normally
chronicle init
chronicle setup  # Unified interactive setup (API + optional hooks)
chronicle start claude
chronicle sessions
chronicle search "your query"

Note: Without MCP support, AI assistants cannot query Chronicle directly. All features work via CLI.

On Ubuntu/Debian systems, you may encounter these issues:

Issue 1: "externally-managed-environment" error

bash
# Solution: Use --break-system-packages or create virtual environment
python3 -m pip install -e ".[mcp]" --break-system-packages

# Or create virtual environment (recommended)
python3 -m venv chronicle-venv
source chronicle-venv/bin/activate
python3 -m pip install -e ".[mcp]"

Issue 2: "Command 'chronicle' not found" after installation

This happens because pip installs scripts in ~/.local/bin which isn't in PATH:

bash
# Add local bin to PATH (temporary)
export PATH="$HOME/.local/bin:$PATH"

# Add permanently to shell profile
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

# Verify correct chronicle is installed
which chronicle  # Should show /home/user/.local/bin/chronicle

Issue 3: Installing wrong "chronicle" package

Ubuntu has an unrelated package called chronicle (a blog generator). If you accidentally install it:

bash
# Remove the wrong package
sudo apt remove chronicle

# Then use the PATH fix above to access the correct one

Basic Usage

bash
# View today's activity (commits + AI interactions)
chronicle show today

# Start an interactive AI session (auto-recorded)
chronicle start claude      # Claude Code
chronicle start gemini      # Gemini CLI
chronicle start qwen        # Qwen Code CLI

# View all sessions
chronicle sessions
chronicle sessions --limit 20                   # Show more sessions
chronicle sessions --repo /path/to/project      # Filter by repository

# Search sessions with FTS5 full-text search (supports boolean operators!)
chronicle search-sessions "gemini model"              # Any word (broader results, implicit OR)
chronicle search-sessions "gemini AND model"          # Both words required (explicit AND)
chronicle search-sessions "gemini OR claude" --all    # Either word (explicit OR)
chronicle search-sessions "testing NOT deprecated"    # Exclude deprecated
chronicle search-sessions '"data corruption"'         # Exact phrase only

# View a session with AI-generated summary
chronicle session 5

# AI-powered summaries of your work
chronicle summarize today                       # Today's accomplishments
chronicle summarize week                        # Weekly digest
chronicle summarize today --repo /path/repo     # Per-project summaries

# See combined timeline
chronicle timeline today

# Search history
chronicle search "authentication"

Updating Chronicle

Chronicle includes a built-in update command that handles everything automatically:

bash
# Check for and install updates
chronicle update

# Check what's available without installing
chronicle update --check-only

What it does:

  • โ€ขโœ… Checks for new commits from GitHub
  • โ€ขโœ… Shows what's changed (commit log)
  • โ€ขโœ… Pulls latest code
  • โ€ขโœ… Auto-detects if dependencies changed
  • โ€ขโœ… Reinstalls with correct mode (MCP or minimal)
  • โ€ขโœ… Auto-migrates database if schema changed

Manual update:

bash
cd /path/to/chronicle
git pull origin main
pip install -e ".[mcp]"  # Or: pip install -e .

๐Ÿ“– Core Concepts

Chronicle vs CLAUDE.md

CLAUDE.md is static project documentation:

  • โ€ขโœ… Project structure, conventions, tech stack
  • โ€ขโœ… Written manually, read by AI at session start
  • โ€ขโœ… Describes "how this project works"

Chronicle is dynamic session recording:

  • โ€ขโœ… Automatic tracking of what you actually did
  • โ€ขโœ… Cross-AI session history (Claude, Gemini, Qwen)
  • โ€ขโœ… Searchable timeline of decisions and changes
  • โ€ขโœ… Describes "what happened and why"

They're complementary! CLAUDE.md tells the AI about your project, Chronicle tells YOU what you did.


๐ŸŽฎ Features

โœ… Phase 1: Git Commit Tracking (COMPLETE)

Track git commits and link them to development activity:

bash
chronicle add-repo /path/to/project    # Import commits
chronicle show today                    # View today's commits
chronicle search "bug fix"              # Search commit messages
chronicle stats /path/to/project        # Repository statistics

Features:

  • โ€ขAuto-scan git repositories for commits
  • โ€ขStore commit metadata (SHA, message, files, author, timestamp)
  • โ€ขPrevent duplicates
  • โ€ขSearch by message content
  • โ€ขFilter by date range

โœ… Phase 2: AI Interaction Tracking (COMPLETE)

Record full AI coding sessions with transcript capture:

bash
chronicle start claude      # Start Claude Code session
chronicle start gemini      # Start Gemini CLI session
chronicle start qwen        # Start Qwen Code CLI session

# Work normally in the AI tool...
# Full transcript is recorded automatically

exit                        # Session saved!

chronicle sessions          # List all sessions
chronicle session 5         # View session details

Features:

  • โ€ขFull terminal transcript capture using Unix script command
  • โ€ขRecords all input/output from AI conversations
  • โ€ขAutomatic timestamp tracking
  • โ€ขSession duration calculation
  • โ€ขAutomatic summarization (generated when you view the session)

For quick questions to Gemini or Qwen:

bash
chronicle ask "How do I optimize this query?" --tool gemini
chronicle ask "Review this code for bugs" --tool qwen
chronicle ask "Test question" --tool gemini --log-only
bash
chronicle ai today              # View today's AI interactions
chronicle ai yesterday          # Yesterday's interactions
chronicle ai week               # Last 7 days

chronicle ai-stats              # Usage statistics with charts
chronicle ai-stats --days 30    # Last 30 days

chronicle timeline today        # Combined commits + AI interactions

Features:

  • โ€ขAI interaction logging (prompt, response, duration)
  • โ€ขAuto-link interactions to commits (30-minute window)
  • โ€ขMulti-tool support (Claude Code, Gemini CLI, Qwen Code)
  • โ€ขBeautiful terminal output with tool-specific emojis (๐ŸŽฏ Claude, โœจ Gemini, ๐Ÿ”ฎ Qwen)
  • โ€ขUsage statistics with visual charts

๐Ÿ”ง Configuration System (COMPLETE)

Manage Chronicle settings with YAML config:

bash
chronicle config --list                          # View all settings
chronicle config ai.gemini_api_key              # View API key (masked)
chronicle config ai.gemini_api_key YOUR_KEY     # Set API key
chronicle config ai.default_model               # View default model

Config file: ~/.ai-session/config.yaml

Available settings:

  • โ€ขai.gemini_api_key - Gemini API key for summarization
  • โ€ขai.default_model - Default Gemini model (gemini-2.0-flash-exp)
  • โ€ขai.summarization_provider - Summarization provider (gemini or ollama)
  • โ€ขai.ollama_model - Ollama model name (qwen2.5:32b)
  • โ€ขai.ollama_host - Ollama host URL (http://localhost:11434)
  • โ€ขai.auto_summarize_sessions - Auto-summarize when viewing session (disabled by default)
  • โ€ขretention.raw_data_days - How long to keep raw transcripts (7 days)
  • โ€ขretention.summaries_days - How long to keep summaries (90 days)

Security:

  • โ€ขAPI keys masked in display
  • โ€ขEnvironment variable support (GEMINI_API_KEY)
  • โ€ขConfig file excluded from git (.gitignore)

โœ… Claude Code Hooks & Workflow Automation (COMPLETE)

Automatically enforce Chronicle best practices with Claude Code hooks:

bash
# Set up hooks for workflow automation (included in unified setup)
chronicle setup --hooks-only

# Hooks will now automatically:
# - Remind you to search Chronicle before implementing
# - Recommend relevant skills for your task
# - Check if you're writing tests first (TDD)
# - Verify session tracking status
# - Check for superpowers skills availability

What gets installed:

  • โ€ขHook scripts in ~/.claude/hooks/ - UserPromptSubmit, Stop, PostToolUse
  • โ€ขSettings configuration in ~/.claude/settings.json - Registers hooks with Claude Code
  • โ€ขUniversal CLAUDE.md in ~/.claude/CLAUDE.md - Development best practices

Hook Behaviors:

  • โ€ขUserPromptSubmit Hook: Injects "Search Chronicle First" reminders and skill recommendations
  • โ€ขStop Hook: Post-response quality checks (session tracking, TDD compliance)
  • โ€ขPostToolUse Hook: Tracks edited files for future build checking
  • โ€ขSuperpowers Integration: Checks for TDD skill availability and provides installation guidance

Universal Directives: The ~/.claude/CLAUDE.md contains comprehensive development guidelines:

  • โ€ขโœ… Search First Mandate - 2,700x ROI proven from real sessions
  • โ€ขโœ… Skills Integration - Auto-recommend Chronicle skills
  • โ€ขโœ… TDD Enforcement - Write tests before implementation (with superpowers TDD skill)
  • โ€ขโœ… MCP over CLI - Use structured MCP tools instead of parsing CLI output
  • โ€ขโœ… Roadmap Checking - Avoid duplicate work

Superpowers Skills Integration:

  • โ€ข๐Ÿงช TDD Skill Auto-Activation (Priority 95) - Comprehensive test-driven development enforcement
  • โ€ข๐Ÿ“‹ Installation Checking - Automatically verifies superpowers marketplace and skills availability
  • โ€ข๐Ÿ”ง Guided Setup - Provides clear installation instructions when skills are missing

Benefits:

  • โ€ข๐ŸŽฏ 50% token reduction vs always-active agents
  • โ€ข๐Ÿ”ง Automatic enforcement - No need to remember best practices
  • โ€ข๐Ÿ“‹ Quality checks - Catches common mistakes before they happen
  • โ€ข๐Ÿ”„ Cross-platform - Works on macOS, Linux, and FreeBSD

Usage: After running chronicle setup (or chronicle setup --hooks-only), restart Claude Code. The hooks will automatically activate based on your prompts and provide contextual reminders.

For FreeBSD Systems: The setup command will check for superpowers skills availability. If missing:

  1. Run /plugin install superpowers-marketplace in Claude Code
  2. Run /plugin install superpowers@superpowers-marketplace
  3. Restart Claude Code
  4. TDD skill will now auto-activate when implementing features

โœ… Phase 3: AI Summarization (COMPLETE)

AI-powered summarization with multiple provider options:

Option 1: Gemini (Cloud, 1M token context)

bash
# Configure Gemini API key
chronicle config ai.gemini_api_key YOUR_KEY
chronicle config ai.summarization_provider gemini
chronicle config ai.default_model gemini-2.0-flash-exp

# Test connection
chronicle test-gemini

Option 2: Ollama (Local, unlimited)

bash
# Install and run Ollama first: https://ollama.ai
ollama pull qwen2.5:32b

# Configure Chronicle
chronicle config ai.summarization_provider ollama
chronicle config ai.ollama_model qwen2.5:32b
chronicle config ai.ollama_host http://localhost:11434
bash
chronicle sessions              # List all sessions
chronicle session 5             # View session #5

# First time: Automatically generates AI summary
# Subsequent views: Shows cached summary (instant!)

For large sessions that exceed Gemini API rate limits, use Qwen CLI or Gemini CLI directly:

bash
chronicle summarize-session 8              # Use Qwen CLI (default, 2000 req/day)
chronicle summarize-session 8 --provider gemini  # Use Gemini CLI

This bypasses API token-per-minute limits by calling the CLI tools directly.

bash
chronicle summarize today       # AI summary of today's work
chronicle summarize week        # AI summary of last 7 days

Features:

  • โ€ขMulti-provider support - Choose between Gemini (cloud, 1M context) or Ollama (local, unlimited)
  • โ€ขTranscript cleaning - Removes ANSI codes and duplicates (typically 50-90% size reduction)
  • โ€ขAutomatic summarization - AI summary generated when you view the session
  • โ€ขAuto-caching - Generate once, view instantly forever
  • โ€ขIntelligent prompts - Extracts key decisions, files modified, blockers
  • โ€ขMarkdown formatting - Beautiful, structured summaries
  • โ€ขMulti-source analysis - Analyzes both git commits and AI sessions

Example Summary:

code
## What Was Built
- Implemented Phase 3 summarization with Gemini API integration
- Added chronicle session command with auto-summarization

## Key Decisions
- Automatic summarization triggered when viewing sessions
- Cached summaries in database for instant retrieval

## Files/Components Modified
- backend/cli/commands.py
- backend/cli/formatters.py
- backend/services/summarizer.py

๐Ÿ—‚๏ธ Multi-Project Organization

Chronicle automatically tracks which repository each session belongs to:

When you start a session, Chronicle automatically:

  • โ€ขDetects your current working directory
  • โ€ขFinds the git repository root (if in a git repo)
  • โ€ขAssociates the session with that project
bash
cd /Users/you/repos/my-app
chronicle start claude
# Session automatically tagged with "my-app" repository

View sessions, timelines, and summaries for specific projects:

bash
# View sessions for a specific project
chronicle sessions --repo /Users/you/repos/my-app

# Summarize work on specific project
chronicle summarize today --repo /Users/you/repos/my-app
chronicle summarize week --repo /Users/you/repos/other-project

# Timeline for specific project
chronicle timeline today --repo /Users/you/repos/my-app

Benefits:

  • โ€ขTrack work across multiple projects separately
  • โ€ข"What did I do on project X this week?"
  • โ€ขOrganize sessions by codebase
  • โ€ขPerfect for contractors juggling multiple clients

โœ… Phase 4: MCP Server + AI Integration (COMPLETE)

Give your AI assistants the ability to query Chronicle's database directly!

The Chronicle MCP (Model Context Protocol) server allows any MCP-compatible AI (Claude Code, ChatGPT, etc.) to query your Chronicle database and retrieve past sessions, commits, and decisions.

Setup:

  1. Install Chronicle with MCP support:

``bash pip install -e . ``

  1. Configure MCP client (e.g., ~/.mcp.json):

``json { "mcpServers": { "chronicle": { "command": "python3", "args": ["/path/to/chronicle/scripts/chronicle-mcp"] } } } ``

  1. Restart your AI tool (Claude Code, etc.)
  1. Verify: Type /mcp to see available servers

Available MCP Tools:

The Chronicle MCP server provides 21 tools that AI assistants can use:

Session & Commit Queries:

ToolPurposeExample
get_sessionsList recent sessions"Show me sessions from this week"
get_session_summaryGet session details"What happened in session 15?"
search_sessionsSearch session content"Find where we discussed authentication"
get_sessions_summariesBatch retrieve summaries"Get summaries for sessions 5, 6, 7"
get_commitsList git commits"Show commits from the my-app repo"
search_commitsSearch commit messages"Find bug fix commits"
get_timelineCombined view"Show me today's work"
get_statsUsage statistics"How much did I use AI tools this month?"

Project Management (CRUD Operations):

ToolPurposeExample
get_milestonesList milestones"Show in-progress features"
get_milestoneGet milestone details"What's milestone 3 about?"
create_milestoneCreate new milestone"Plan new authentication feature"
update_milestoneEdit milestone"Update priority to 1"
delete_milestoneRemove milestone"Delete test milestone"
update_milestone_statusChange status"Mark as completed"
get_next_stepsList TODOs"What should I work on?"
create_next_stepAdd TODO"Create task to write tests"
update_next_stepEdit TODO"Change priority"
delete_next_stepRemove TODO"Delete obsolete task"
complete_next_stepMark done"Mark step 5 as done"
uncomplete_next_stepReopen TODO"Reopen completed task"
get_roadmapProject overview"Show current roadmap"

Real-World Example:

code
You: "How did I implement caching in that other project last month?"

Claude: [Uses Chronicle MCP]
         โ†’ search_sessions("caching")
         โ†’ get_session_summary(session_id=42)

Claude: "In session 42 from September 15th, you implemented Redis
         caching for the API endpoints. Here's what you decided..."

Benefits:

  • โ€ข๐Ÿง  AI assistants have persistent memory across sessions
  • โ€ข๐Ÿ” Instant context retrieval from past work
  • โ€ข๐Ÿ“Š AI can analyze patterns in your workflow
  • โ€ข๐Ÿค Works with any MCP-compatible AI tool
  • โ€ข๐Ÿ”’ 100% local (no data leaves your machine)

Documentation: See MCP_SERVER.md for full details.


๐ŸŽฏ Claude Skills Integration

For Claude Code users, Chronicle provides pre-built Claude Skills that automate common workflows:

Available Skills:

  1. chronicle-session-documenter

- Automatically documents sessions to Obsidian vault - Creates structured markdown notes with metadata - Links related sessions, commits, and repos

  1. chronicle-context-retriever

- Searches past sessions for relevant context - Triggered by questions like "how did I..." or "what did we..." - Provides summaries of past decisions

  1. chronicle-workflow

- Complete Chronicle workflow guidance - Best practices for multi-project tracking - Helps set up and optimize Chronicle usage

Installation:

bash
# One-time setup in Claude Code
/plugin marketplace add ChandlerHardy/chronicle
/plugin install chronicle-workflow-skills@chronicle-skills

How It Works:

Skills are "smart prompt templates" that automatically trigger when relevant:

code
You: "Document session 15 to my Obsidian vault"

Claude: [Automatically uses chronicle-session-documenter skill]
        โ†’ Retrieves session summary
        โ†’ Creates markdown note with frontmatter
        โ†’ Adds wikilinks to related sessions
        โ†’ Saves to vault at Chronicle/Sessions/Session-15.md

Documentation: See chronicle-skills/README.md for details.


๐Ÿค– Intelligent Agents (Cross-Platform)

Chronicle includes two specialized agents that proactively enforce best practices. Unlike skills (Claude Code only), agent prompts work across platforms - adaptable for Cursor, Windsurf, and other AI assistants.

Available Agents:

  1. Chronicle Advocate Agent

- Reminds to search Chronicle before implementing (2,700x ROI!) - Checks if session is being tracked - Enforces MCP usage over slow CLI commands - Suggests organizing sessions with titles/tags - Prevents repeating work from past sessions

  1. TDD Advocate Agent

- Encourages test-driven development workflow - Reminds to write tests before implementation - Runs pytest after code changes - Ensures all tests pass before commits - Celebrates test successes โœ…

Setup (Claude Code):

bash
# Use the /agents command in Claude Code
/agents
# Select "Create new agent"
# Copy prompts from AGENTS.md
# Restart Claude Code to activate

Key Advantage: Agent prompts are portable! The same prompt works in:

  • โ€ขClaude Code (via /agents)
  • โ€ขCursor (via .cursorrules)
  • โ€ขWindsurf (via project config)
  • โ€ขAny AI tool with custom instructions

Documentation: See [AGENTS.md](AGENTS.md) for full prompts and cross-platform setup.


๐Ÿ“ Obsidian Integration (Optional)

Export Chronicle sessions to Obsidian for visual knowledge graphs and bidirectional linking.

Setup:

Configure the Obsidian MCP server in ~/.mcp.json:

json
{
  "mcpServers": {
    "obsidian": {
      "command": "npx",
      "args": [
        "@mauricio.wolff/mcp-obsidian@latest",
        "/path/to/your/obsidian/vault"
      ]
    }
  }
}

Features:

  • โ€ขExport sessions as markdown notes with YAML frontmatter
  • โ€ขWikilinks between related sessions and commits
  • โ€ขTag-based organization for Obsidian graph view
  • โ€ขRepository-based folder structure
  • โ€ขSearch entire vault from Claude Code

Example Vault Structure:

code
Chronicle/
โ”œโ”€โ”€ Repos/
โ”‚   โ”œโ”€โ”€ my-app/
โ”‚   โ”‚   โ”œโ”€โ”€ Sessions/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Session-15.md
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ Session-16.md
โ”‚   โ”‚   โ””โ”€โ”€ Commits/
โ”‚   โ””โ”€โ”€ other-project/
โ”‚       โ””โ”€โ”€ Sessions/
โ””โ”€โ”€ Daily/
    โ””โ”€โ”€ 2025-10-20.md

Coming Soon: chronicle export obsidian command for batch export.


๐Ÿ“Š Example Outputs

Daily Summary

bash
$ chronicle show today

Development Session - October 19, 2025
โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ Session Statistics                                       โ”‚
โ”‚ โ€ข Commits: 5                                             โ”‚
โ”‚ โ€ข Files Changed: 12                                      โ”‚
โ”‚ โ€ข Repositories: 2                                        โ”‚
โ”‚ โ€ข Authors: 1                                             โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

Commits
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
10:30 AM [abc1234] Add user authentication
   โ†’ src/auth.ts
   โ†’ src/middleware.ts

02:15 PM [def5678] Update README with usage examples
   โ†’ README.md

AI Interaction Timeline

bash
$ chronicle ai today

AI Interactions Today
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
02:30 PM โœจ Gemini
   "How do I implement caching in Python?"
   โ†’ You can use functools.lru_cache decorator...
   โฑ 2.3s
   โœ“ Linked to commit abc1234

01:45 PM ๐Ÿ”ฎ Qwen
   "Review this authentication code"
   โ†’ The code looks good overall. Consider adding rate limiting...
   โฑ 3.1s

AI Usage Statistics

bash
$ chronicle ai-stats --days 7

AI Tool Usage (Last 7 days)
โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ AI Tool  โ”ƒ  Interactions โ”ƒ   Percentage โ”ƒ  Avg Duration โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ Claude   โ”‚            15 โ”‚        65.2% โ”‚         4.2s  โ”‚
โ”‚          โ”‚               โ”‚ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘โ–‘ โ”‚               โ”‚
โ”‚ Gemini   โ”‚             6 โ”‚        26.1% โ”‚         2.1s  โ”‚
โ”‚          โ”‚               โ”‚ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ โ”‚               โ”‚
โ”‚ Qwen     โ”‚             2 โ”‚         8.7% โ”‚         3.5s  โ”‚
โ”‚          โ”‚               โ”‚ โ–ˆโ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ โ”‚               โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Total interactions: 23

Combined Timeline

bash
$ chronicle timeline today

Combined Development Timeline
โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
02:30 PM โœจ Gemini
   "How do I implement caching in Python?"

02:25 PM [abc1234] Add caching to API endpoints
   โ†’ api/cache.py
   โ†’ api/endpoints.py

01:45 PM ๐ŸŽฏ Claude (Session, 45m)
   "Built authentication system"
   โ†’ src/auth.ts
   โ†’ src/middleware.ts
   โœ“ Linked to commit def5678

01:30 PM [def5678] Implement JWT authentication
   โ†’ auth/jwt.ts

๐Ÿ—‚๏ธ Database Schema

Chronicle uses SQLite for local-first storage at ~/.ai-session/sessions.db:

Tables

commits - Git commit tracking

  • โ€ขtimestamp, SHA, message, files_changed (JSON)
  • โ€ขbranch, author, repo_path

ai_interactions - AI tool interactions

  • โ€ขtimestamp, ai_tool, prompt, response_summary
  • โ€ขduration_ms, files_mentioned (JSON)
  • โ€ขis_session, session_transcript, summary_generated
  • โ€ขrelated_commit_id (foreign key)

daily_summaries - Daily development summaries (Phase 3)

  • โ€ขdate, summary, topics (JSON), files_affected (JSON)
  • โ€ขcommits_count, ai_interactions_count, key_decisions (JSON)

Data Storage

  • โ€ขDatabase: ~/.ai-session/sessions.db
  • โ€ขSession transcripts: ~/.ai-session/sessions/session_N.log
  • โ€ขSession metadata: ~/.ai-session/sessions/session_N.meta
  • โ€ขConfiguration: ~/.ai-session/config.yaml

๐Ÿงช Testing

Chronicle has comprehensive test coverage:

bash
# Run all tests
pytest

# Run with coverage
pytest --cov=backend tests/

# Current status: 140 passing tests, 1 skipped
# Test modules:
# - test_ai_tracker.py: 13 tests (AI interaction logging)
# - test_claude_provider.py: 44 tests (Claude Code provider)
# - test_cli_commands.py: 17 tests (CLI command interface)
# - test_git_monitor.py: 8 tests (Git commit tracking)
# - test_import_export.py: 15 tests (Data import/export, 1 skipped)
# - test_project_tracking.py: 9 tests (Project milestones & next steps)
# - test_session_manager.py: 22 tests (Session recording & management)
# - test_summarizer.py: 15 tests (AI summarization)

๐Ÿ›ฃ๏ธ Roadmap

โœ… Phase 1: Git Tracking (COMPLETE)

  • โ€ข[x] Git commit monitoring
  • โ€ข[x] CLI query interface
  • โ€ข[x] Search and statistics
  • โ€ข[x] Comprehensive test coverage

โœ… Phase 2: AI Tracking (COMPLETE)

  • โ€ข[x] AI interaction logging
  • โ€ข[x] Session wrapper for Claude/Gemini/Qwen
  • โ€ข[x] Multi-AI timeline view
  • โ€ข[x] Usage statistics
  • โ€ข[x] Configuration system
  • โ€ข[x] Comprehensive test coverage

โœ… Phase 3: Summarization (COMPLETE)

  • โ€ข[x] Gemini API integration
  • โ€ข[x] Ollama local LLM support
  • โ€ข[x] chronicle session command with auto-summarization
  • โ€ข[x] chronicle summarize today/week commands
  • โ€ข[x] Chunked summarization for unlimited session sizes
  • โ€ข[x] Automatic summarization with caching
  • โ€ข[x] Intelligent prompt engineering
  • โ€ข[x] Markdown-formatted summaries
  • โ€ข[x] Multi-project tracking and filtering

โœ… Phase 4: MCP Server + AI Integration (COMPLETE)

  • โ€ข[x] Chronicle MCP server with 21 tools (8 query + 13 project management)
  • โ€ข[x] Full CRUD operations for milestones and next steps
  • โ€ข[x] FastMCP framework integration
  • โ€ข[x] Read/write database access for AI tools
  • โ€ข[x] Support for any MCP-compatible AI (Claude, ChatGPT, etc.)
  • โ€ข[x] Obsidian MCP server integration
  • โ€ข[x] Claude Skills marketplace integration
  • โ€ข[x] 3 pre-built skills (documenter, retriever, workflow)
  • โ€ข[x] Multi-repository session organization
  • โ€ข[x] Comprehensive documentation (MCP_SERVER.md)

โœ… Phase 5: Project Tracking & Meta-Development (COMPLETE)

Chronicle now tracks its own development! Database-backed milestones and next steps eliminate manual documentation updates.

Instead of maintaining DEVELOPMENT_HISTORY.md manually, Chronicle tracks project state in its database:

bash
# Plan a feature
chronicle milestone "Add authentication" \
  --description "Implement OAuth2 with Auth0" \
  --type feature \
  --priority 1 \
  --tags "backend,auth,security"

# Break down into actionable tasks
chronicle next-step "Design auth flow" --priority 1 --effort medium --milestone 1
chronicle next-step "Implement OAuth2 client" --priority 1 --effort large --milestone 1
chronicle next-step "Add token refresh" --priority 2 --effort medium --milestone 1
chronicle next-step "Write integration tests" --priority 2 --effort small --milestone 1
chronicle next-step "Update API documentation" --priority 3 --effort small --milestone 1

# Mark milestone as active
chronicle milestone-status 1 in_progress

# As you work, link sessions to the milestone
chronicle start claude
# ... work on authentication ...
exit
chronicle link-session 18 --milestone 1

# Complete tasks as you finish them
chronicle next-step-complete 1
chronicle next-step-complete 2

# View project progress anytime
chronicle roadmap

Output:

code
Chronicle Development Roadmap

๐Ÿšง In Progress
  โ€ข Add authentication (feature, 3 sessions)

๐Ÿ”œ Next Steps
  โ€ข [P2] Add token refresh [medium]
  โ€ข [P2] Write integration tests [small]
  โ€ข [P3] Update API documentation [small]

๐Ÿ“Š Milestones: 5/12 completed | Next Steps: 2/5 done

Before (manual documentation):

  • โ€ขโŒ Manually update DEVELOPMENT_HISTORY.md after every feature
  • โ€ขโŒ Forget to document work-in-progress
  • โ€ขโŒ Can't query "what's next?" programmatically
  • โ€ขโŒ No link between sessions and features
  • โ€ขโŒ Documentation becomes stale

After (database-tracked):

  • โ€ขโœ… Queryable by AI - "What should I work on next?" โ†’ Instant answer from database
  • โ€ขโœ… Auto-linked - Sessions automatically connect to milestones
  • โ€ขโœ… Real-time roadmap - chronicle roadmap shows current state
  • โ€ขโœ… Report generation - Query completed milestones for weekly summaries
  • โ€ขโœ… Dogfooding - Chronicle tracks building Chronicle!

Milestones:

bash
chronicle milestone <title>                    # Create milestone
chronicle milestones                           # List all milestones
chronicle milestones --status in_progress      # Filter by status
chronicle milestones --type feature            # Filter by type
chronicle milestone-show <id>                  # View details
chronicle milestone-status <id> <status>       # Update status
chronicle milestone-complete <id>              # Mark complete

Next Steps:

bash
chronicle next-step <description>              # Add TODO
chronicle next-steps                           # List pending
chronicle next-steps --all                     # Include completed
chronicle next-steps --milestone <id>          # Filter by milestone
chronicle next-step-complete <id>              # Mark done

Project Management:

bash
chronicle link-session <session_id> --milestone <id>   # Link session
chronicle roadmap                                      # View progress
chronicle roadmap --days 30                            # Last 30 days

AI assistants can query and manage project state via Chronicle MCP server:

python
# Read Operations
milestones = mcp__chronicle__get_milestones(status="in_progress")
roadmap = mcp__chronicle__get_roadmap(days=7)
steps = mcp__chronicle__get_next_steps(milestone_id=1, completed=False)

# Create Operations
new_milestone = mcp__chronicle__create_milestone(
    title="Add export feature",
    description="Export sessions to PDF/Markdown",
    milestone_type="feature",
    priority=2,
    tags="phase-7,export"
)
new_step = mcp__chronicle__create_next_step(
    description="Write export logic",
    priority=1,
    effort="large",
    category="feature",
    milestone_id=4
)

# Update Operations
mcp__chronicle__update_milestone(milestone_id=4, priority=1, tags="urgent,export")
mcp__chronicle__update_next_step(step_id=12, effort="medium", category="optimization")
mcp__chronicle__update_milestone_status(milestone_id=1, new_status="completed")

# Complete/Reopen
mcp__chronicle__complete_next_step(step_id=5)
mcp__chronicle__uncomplete_next_step(step_id=5)  # Reopen if needed

# Delete Operations (with confirmation)
mcp__chronicle__delete_next_step(step_id=99, confirm=True)
mcp__chronicle__delete_milestone(milestone_id=99, confirm=True)

AI Use Cases:

  • โ€ข"What should I work on next?" โ†’ Queries roadmap, suggests highest priority
  • โ€ข"What's the status of authentication work?" โ†’ Finds milestone, shows linked sessions
  • โ€ข"Generate a weekly progress report" โ†’ Queries completed milestones, summarizes
  • โ€ข"Mark this session as working on feature X" โ†’ Auto-links session to milestone

New: chronicle-project-tracker

  • โ€ขComplete workflow for planning features
  • โ€ขQuerying roadmap via MCP
  • โ€ขLinking sessions to milestones
  • โ€ขGenerating progress reports
  • โ€ขAuto-documentation patterns

Use: "What's in our roadmap?" or "Plan a new feature" โ†’ Skill loads automatically

project_milestones:

  • โ€ขid, title, description
  • โ€ขstatus - planned, in_progress, completed, archived
  • โ€ขmilestone_type - feature, bugfix, optimization, documentation
  • โ€ขpriority - 1 (highest) to 5 (lowest)
  • โ€ขrelated_sessions - JSON array of session IDs
  • โ€ขrelated_commits - JSON array of commit SHAs
  • โ€ขtags - JSON array for filtering

next_steps:

  • โ€ขid, description, priority
  • โ€ขestimated_effort - small, medium, large
  • โ€ขcategory - feature, optimization, fix, docs
  • โ€ขcompleted - boolean
  • โ€ขrelated_milestone_id - FK to milestone

Chronicle used itself to build this feature:

bash
# Created milestone #1
chronicle milestone "Add project tracking to Chronicle" \
  --type feature --priority 1 --tags "phase-5,meta,dogfooding"

# Broke down work
chronicle next-step "Design database schema" --priority 1 --effort medium --milestone 1
chronicle next-step "Add CLI commands" --priority 1 --effort large --milestone 1
chronicle next-step "Add MCP tools" --priority 1 --effort medium --milestone 1
chronicle next-step "Create Chronicle Skills" --priority 2 --effort medium --milestone 1
chronicle next-step "Write tests" --priority 2 --effort small --milestone 1

# Marked in progress
chronicle milestone-status 1 in_progress

# As work completed
chronicle next-step-complete 1  # Schema done
chronicle next-step-complete 2  # CLI done
chronicle next-step-complete 3  # MCP tools done
chronicle next-step-complete 4  # Skills done
chronicle next-step-complete 5  # Tests done (25 passing!)

# Finished!
chronicle milestone-complete 1

# Result
chronicle roadmap
# โœ… Completed (last 7 days)
#   โ€ข Add project tracking to Chronicle (Oct 22)
# ๐Ÿ“Š Milestones: 1/1 completed | Next Steps: 5/5 done

Chronicle now uses Chronicle to build Chronicle! ๐ŸŽฏ


๐Ÿ”ฎ Future Phases

  • โ€ข[ ] Next.js web dashboard with roadmap visualization
  • โ€ข[ ] Timeline UI showing milestones + sessions + commits
  • โ€ข[ ] chronicle export obsidian - Batch export with milestone linking
  • โ€ข[ ] Blog post generator from weekly summaries
  • โ€ข[ ] Auto-generate DEVELOPMENT_HISTORY.md from milestones
  • โ€ข[ ] Team features (shared Chronicle databases)
  • โ€ข[ ] VS Code extension
  • โ€ข[ ] GitHub Actions integration for PR descriptions

๐Ÿ—๏ธ Architecture

Local-First Design

Chronicle is designed to be private and fast:

  • โ€ขโœ… All data stored in local SQLite database
  • โ€ขโœ… No cloud sync required (optional in future)
  • โ€ขโœ… Works offline
  • โ€ขโœ… Full control over your data

Automatic Summarization

Sessions are recorded immediately, summaries are generated automatically when you view them:

code
Session Start
    โ†“
Record full transcript โ†’ Save to DB (fast!)
    โ†“
On first view โ†’ Generate summary with Gemini
    โ†“
Cache summary for future views

Benefits:

  • โ€ขFast session exit (no waiting for summarization)
  • โ€ขAutomatic summarization when you view sessions
  • โ€ขCan work offline (view raw transcripts)

๐Ÿค Contributing

Chronicle is open source! Contributions welcome.

Ideas for contributions:

  • โ€ขAdd support for more AI CLIs (Cursor, GitHub Copilot, Windsurf, etc.)
  • โ€ขBuild the chronicle export obsidian command
  • โ€ขCreate the Next.js dashboard (Phase 5)
  • โ€ขImprove test coverage (especially MCP server tests)
  • โ€ขAdd MCP resources (expose session transcripts as MCP resources)
  • โ€ขBuild prompt templates for common Chronicle queries

๐Ÿ“ License

MIT License - see LICENSE


๐Ÿ™ Acknowledgments

Built with:

  • โ€ขClaude Code - AI coding assistant (and tracked by Chronicle itself! ๐ŸŽฏ)
  • โ€ขGoogle Gemini - AI summarization
  • โ€ขFastMCP - MCP server framework
  • โ€ขModel Context Protocol - AI tool integration standard
  • โ€ขPython 3.11+ - Core logic
  • โ€ขSQLite - Local storage
  • โ€ขClick - CLI framework
  • โ€ขRich - Terminal formatting
  • โ€ขGitPython - Git integration
  • โ€ขSQLAlchemy - ORM

๐Ÿ“š Documentation

  • โ€ข[AGENTS.md](AGENTS.md) - Chronicle Advocate & TDD Advocate agents (cross-platform)
  • โ€ข[MCP_SERVER.md](MCP_SERVER.md) - Chronicle MCP server guide (setup, tools, examples)
  • โ€ข[CLAUDE.md](CLAUDE.md) - Development context for AI assistants
  • โ€ขProject Specification - Full specification and roadmap
  • โ€ขChangelog - Version history
  • โ€ขChronicle Skills - Claude Skills documentation
  • โ€ขExample Context - Example from Crooked Finger project

Chronicle: Never lose context again. ๐ŸŽฏ

Track your AI-assisted development journey, compare approaches, and build institutional knowledge across all your AI coding assistants.

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/chronicle-workflow-skills.md https://raw.githubusercontent.com/ChandlerHardy/chronicle/main/SKILL.md
3
Invoke in Claude Code
/chronicle-workflow-skills
View source on GitHub
documentation

Frequently Asked Questions

What is chronicle-workflow-skills?

Complete Chronicle workflow skills including session documentation, context retrieval, and development tracking

How to install chronicle-workflow-skills?

To install chronicle-workflow-skills, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /chronicle-workflow-skills.

What is chronicle-workflow-skills best for?

chronicle-workflow-skills is a community categorized under Documentation. It is designed for: documentation. Created by Chandler Hardy.