skills/chandlerhardy/chronicle-workflow/SKILL.md
Complete workflow for tracking development work with Chronicle - session recording, git tracking, AI summarization, and Obsidian documentation. Works with CLI commands (portable) or MCP tools (faster). Use when starting a new development session, setting up project tracking, or when user wants comprehensive session management.
npx skillsauth add aiskillstore/marketplace chronicle-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill guides you through the complete Chronicle workflow for tracking and documenting development work. Primarily uses CLI commands for portability, with optional MCP tools for faster programmatic access.
This skill auto-activates! (Milestone #13)
Prompts like "start a new session" or "is this tracked?" automatically trigger this skill. No manual loading needed!
Trigger patterns: start session, is this tracked, chronicle workflow, setup See:
docs/HOOKS.mdfor full details
Use this skill when:
Check if in Chronicle session:
chronicle start claudeGuide user:
# Exit current session
exit
# Start new Chronicle-tracked session
chronicle start claude
# Or for other tools:
chronicle start gemini
Important: Chronicle sessions must be started explicitly - they don't auto-track.
Best Practices:
Available Commands (don't interrupt work to run these):
chronicle sessions # List recent sessions
chronicle show today # See today's commits
chronicle timeline today # Combined view
Automatic on Exit:
~/.ai-session/sessions/session_N.logWhat happens:
📊 Session #{id} complete! Duration: {minutes} minutes
💾 Full transcript saved
✨ Use 'chronicle session {id}' to view
Generate Summary (Automatic on first view):
# View session and auto-generate summary
chronicle session {id}
# For very large sessions (>50K lines)
chronicle summarize-chunked {id}
Document to Obsidian:
Use the chronicle-session-documenter skill or manually:
"Document session {id} to my Obsidian vault"
Find Past Work:
Use the chronicle-context-retriever skill:
"How did I implement authentication last time?"
"What was the blocker with database migrations?"
"Show me all work on the API refactor"
Browse Sessions (CLI):
# Filter by repo
chronicle sessions --repo /path/to/project
# View timeline
chronicle timeline week
# Search sessions
chronicle search "authentication" --limit 5
Browse Sessions (MCP - if available):
# Faster programmatic access
sessions = mcp__chronicle__get_sessions(repo_path="/path/to/project", limit=20)
results = mcp__chronicle__search_sessions(query="authentication", limit=5)
1. chronicle start claude
2. [Make changes, commit]
3. exit
4. [Summary auto-generates on next view]
1. chronicle start claude (Day 1)
2. [Work, commit]
3. exit
4. Document to Obsidian
5. chronicle start claude (Day 2)
6. "What did I do yesterday?" (retrieves context)
7. [Continue work]
1. "Show me all sessions about X" (context retriever)
2. Review past approaches and decisions
3. chronicle start claude
4. [Implement with informed approach]
Automatic Detection:
Filter by Project:
chronicle sessions --repo /path/to/project
chronicle timeline today --repo /path/to/project
chronicle summarize today --repo /path/to/project
~/.ai-session/)Q: "Is this session being tracked?"
A: Only if started with chronicle start claude. Must be explicit.
Q: "Can I track a session retroactively?" A: No - must start with Chronicle from the beginning.
Q: "How do I see what I did yesterday?"
A: Use chronicle timeline yesterday or search Obsidian vault
Q: "How do I link commits to sessions?" A: Automatic! Commits within ±30 minutes of session are linked.
All data stored at:
~/.ai-session/
├── sessions.db # Main database
├── sessions/
│ ├── session_N.log # Transcripts
│ └── session_N.meta # Metadata
└── config.yaml # Configuration
chronicle-session-documenter after completing sessionschronicle-context-retriever when starting related workdevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.