Marketplace chronicle-session-documenter
Document AI-assisted development sessions to Obsidian vault using Chronicle data. Works with MCP (fastest) or CLI commands (portable). Use when completing a coding session, creating development logs, or maintaining a knowledge base of past work. Automatically creates structured notes with metadata, summaries, and wikilinks.
git clone https://github.com/aiskillstore/marketplace
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/chandlerhardy/chronicle-session-documenter" ~/.claude/skills/aiskillstore-marketplace-chronicle-session-documenter && rm -rf "$T"
skills/chandlerhardy/chronicle-session-documenter/SKILL.mdChronicle Session Documenter
This skill helps you document development sessions to your Obsidian vault using Chronicle's database. Works with both MCP server (fast, structured) or CLI commands (portable, everywhere).
Auto-Activation
This skill auto-activates! (Milestone #13)
Prompts like "document session 75" or "export to Obsidian" automatically trigger a recommendation to use this skill. No need to manually load it!
Trigger patterns: document session, export to obsidian, save to vault See:
for full detailsdocs/HOOKS.md
When to Use This Skill
Use this skill when:
- A development session has just completed
- User wants to document what was accomplished in a session
- Creating a development log or journal entry
- Building a searchable knowledge base of past work
- Need to link related sessions, commits, or decisions
How It Works
Option 1: With MCP (Preferred)
- Query Chronicle -
→ Get structured JSON with full summarymcp__chronicle__get_session_summary(session_id) - Create Note -
→ Write directly to Obsidian vaultmcp__obsidian__write_note(...) - Link Work - Use session relationships from JSON to create wikilinks
Option 2: With CLI (Portable)
- Query Chronicle -
→ Get formatted session details and summarychronicle session <id> - Parse Output - Extract summary, files, duration from CLI output
- Create Note -
OR manually create note filemcp__obsidian__write_note(...) - Link Work - Use parsed data to create wikilinks
Decision Tree:
Document session to Obsidian ├─ MCP available? → Use mcp__chronicle__get_session_summary() + mcp__obsidian__write_note() └─ CLI only? → Use `chronicle session <id>`, parse output, write note
Note: Summaries are automatically generated in background when session ends (may still be processing for recent sessions)
Note Structure
Create notes in
Chronicle/Sessions/Session-{id}.md with this format:
--- session_id: {id} date: "{YYYY-MM-DD}" started: "{HH:MM AM/PM}" duration_minutes: {minutes} ai_tool: "{tool}" repo: "{repo_name}" tags: ["chronicle-session", "{ai_tool}", "{topics}"] --- # Session {id} - {Brief Title} **Duration:** {duration} **Repository:** [[{repo_name}]] **Tool:** {AI Tool Name} ## Summary {AI-generated summary from Chronicle} ## What Was Accomplished - {Key accomplishment 1} - {Key accomplishment 2} ## Key Technical Decisions - {Decision 1 and rationale} ## Files Created or Modified - `path/to/file.py` - {what changed} ## Issues & Blockers - {Any problems encountered} ## Related - Previous: [[Session-{prev_id}]] - Commits: [[Commit-{sha}]] - Repository: [[{repo_name}]]
Workflow Examples
Option 1: With MCP (Fast, Structured)
After completing a session:
# Step 1: Get session data from Chronicle MCP session_data = mcp__chronicle__get_session_summary(session_id=10) # Step 2: Extract key information session_id = session_data["id"] timestamp = session_data["timestamp"] # "2025-10-24T14:30:00" tool = session_data["tool"] # "claude-code" duration = session_data["duration_minutes"] # 45 repo_path = session_data["repo_path"] # "/Users/.../my-project" summary = session_data["summary"] # AI-generated summary (multi-paragraph) # Step 3: Format note content note_content = f"""# Session {session_id} - {brief_title} **Duration:** {duration} minutes **Repository:** [[{repo_name}]] **Tool:** {tool_emoji} {tool_name} ## Summary {summary} ## What Was Accomplished - {extracted_accomplishments} ## Key Technical Decisions - {extracted_decisions} ## Files Created or Modified - {extracted_files} ## Issues & Blockers - {extracted_blockers} ## Related - Previous: [[Session-{prev_id}]] """ # Step 4: Prepare frontmatter frontmatter = { "session_id": session_id, "date": "2025-10-24", "started": "14:30", "duration_minutes": duration, "ai_tool": tool, "repo": repo_name, "tags": ["chronicle-session", tool, "feature-work"] } # Step 5: Write to Obsidian vault (if MCP available) mcp__obsidian__write_note( path="Chronicle/Sessions/Session-10.md", content=note_content, frontmatter=frontmatter, mode="overwrite" )
Option 2: With CLI (Portable, No MCP Required)
After completing a session:
# Step 1: Get session data from Chronicle CLI chronicle session 10 > /tmp/session_10.txt # Step 2: Parse the output to extract: # - Session ID, timestamp, tool, duration # - Repository path # - AI-generated summary # - Files mentioned # - Keywords/tags # Step 3: Create note content using parsed data # (Similar structure to MCP approach above) # Step 4: If Obsidian MCP available, use it to write note: # mcp__obsidian__write_note(...) # # OR manually create file in Obsidian vault: # Write to ~/Documents/Obsidian/Chronicle/Sessions/Session-10.md
Note: CLI approach requires parsing Chronicle's formatted output, which is less elegant but fully portable to any system with Chronicle installed.
Example Usage
User: "Can you document session 10 to my Obsidian vault?"
Assistant (with MCP):
- Calls
mcp__chronicle__get_session_summary(session_id=10) - Parses structured JSON to extract accomplishments, decisions, files, blockers
- Creates structured Markdown content with wikilinks
- Calls
to save to vaultmcp__obsidian__write_note(...) - Confirms: "Documented Session 10 to Chronicle/Sessions/Session-10.md"
Assistant (without MCP):
- Runs
to get formatted outputchronicle session 10 - Parses CLI output to extract summary and metadata
- Creates structured Markdown content with wikilinks
- Either uses
if available, or creates file manuallymcp__obsidian__write_note(...) - Confirms: "Documented Session 10 to Chronicle/Sessions/Session-10.md"
Tools to Use (MCP or CLI)
Chronicle Database Operations
MCP Approach (Preferred):
- Get full session details with AI summarymcp__chronicle__get_session_summary(session_id)
- List recent sessions to find session IDmcp__chronicle__get_sessions(limit, days, tool, repo_path)
- Search for sessions by keywordmcp__chronicle__search_sessions(query, limit)
- Get related commits for linkingmcp__chronicle__get_commits(repo_path, days, limit)
- Batch get summaries (up to 20 at once)mcp__chronicle__get_sessions_summaries(session_ids)
CLI Alternatives:
- Get session details with summarychronicle session <id>
- List recent sessionschronicle sessions --limit 10
- Search sessionschronicle search "keyword" --limit 10
- Get commits for linkingchronicle show today
Obsidian Vault Operations
MCP Approach (Preferred):
- Write note to vaultmcp__obsidian__write_note(path, content, frontmatter, mode)
- Check if note already exists (optional)mcp__obsidian__read_note(path)
- List existing session notes (optional)mcp__obsidian__list_directory(path)
Manual Alternative (No MCP):
- Create file directly:
~/Documents/Obsidian/<vault>/Chronicle/Sessions/Session-<id>.md - Write YAML frontmatter + markdown content manually
Tips
- Summary generation is automatic - Summarization starts in background immediately when session ends (may take a few minutes for large sessions)
- Parse summaries intelligently - AI summaries often have sections like "Accomplishments:", "Technical Decisions:", "Issues/Blockers:"
- Use wikilinks - Link to
,[[Session-{id}]]
,[[{repo_name}]]
for navigation[[Commit-{short_sha}]] - Extract repo name - Parse from
:repo_path
→/Users/.../my-appmy-app - Handle missing data - Some sessions may not have summaries yet (still processing in background), or durations (still running)
- Batch document - Use
to find recent sessions, then document each in loopget_sessions() - Check existing notes - Use
to avoid overwriting manually edited notes (ask user first)read_note() - Tool emojis - Use 🎯 for claude-code, ✨ for gemini-cli, 🔮 for qwen-cli
- Frontmatter tags - Always include
for filtering in Obsidian["chronicle-session", "{tool}", ...] - Date formatting - Parse ISO timestamp
→ date: "2025-10-24", started: "14:30"2025-10-24T14:30:00
Common Patterns
Document Today's Sessions
With MCP:
# Get today's sessions sessions = mcp__chronicle__get_sessions(days=1, limit=20) # Document each to vault for session in sessions: if session["is_session"]: # Only full sessions, not one-shots document_to_vault(session["id"])
With CLI:
# List today's sessions chronicle sessions --days 1 --limit 20 # Manually document each one chronicle session 10 # View details # Parse and create Obsidian note
Document Specific Session
With MCP:
# Direct documentation session = mcp__chronicle__get_session_summary(session_id=10) # Create note from structured data
With CLI:
# Get session details chronicle session 10 # Parse output and create note
Find and Document Sessions About a Topic
With MCP:
# Search first results = mcp__chronicle__search_sessions(query="authentication", limit=5) # Document each match for result in results: document_to_vault(result["id"])
With CLI:
# Search for sessions chronicle search "authentication" --limit 5 # Document each match chronicle session <id> # Create note from parsed output