# Genpark Claude Code Conversation Archiver Skill

> Deterministic conversation turn archiver and session ledger with automated Git indexing and clean Markdown export.

- Skill: `alphaparkinc/genpark-claude-code-conversation-archiver-skill` (Agent Skill, multi-file: 8 files)
- Install (CLI): `npx skillmds@latest add alphaparkinc/genpark-claude-code-conversation-archiver-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/alphaparkinc/genpark-claude-code-conversation-archiver-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- License: Apache-2.0
- Author: alphaparkinc (https://skillmd.com/u/alphaparkinc)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/alphaparkinc/genpark-claude-code-conversation-archiver-skill

---


# 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

```mermaid
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.py` for standard Model Context Protocol stdio transport.
- Import `client.py` directly for programmatic, zero-dependency integration.
- Refer to `example_usage.py` for end-to-end usage examples.

