GenPark Claude Code Conversation Archiver Skill
Deterministic conversation turn archiver and session ledger with automated Git indexing and clean Markdown export.
Capabilities & Tool Surface
archive_turn: Archive a prompt-response turn into session history and format clean markdown transcript.generate_monthly_index: Build a master index of sessions for a specific year-month (e.g. 2026-09).prepare_git_commit: Prepare git commit payload for staging and synchronizing to remote Second Brain.
Architecture
graph LR
A[User Prompt / Agent Response] --> B[Conversation Turn Filter]
B -->|Sanitize & Strip Noise| C[Per-Session Markdown Ledger]
C --> D[Monthly Archive Index]
C --> E[Git Commit & Second Brain Exporter]
style A fill:#e1f5fe
style B fill:#fff9c4
style C fill:#c8e6c9
style D fill:#ffe0b2
style E fill:#d1c4e9
Integration Guide
- Run
mcp_server.pyfor standard Model Context Protocol stdio transport. - Import
client.pydirectly for programmatic, zero-dependency integration. - Refer to
example_usage.pyfor end-to-end usage examples.