npx skills add ...
npx skills add ar9av/obsidian-wiki --skill claude-history-ingest
npx skills add ar9av/obsidian-wiki --skill claude-history-ingest
Ingest Claude Code conversation history into the Obsidian wiki. Use this skill when the user wants to mine their past Claude conversations for knowledge, import their ~/.claude folder, extract insights from previous coding sessions, or says things like "process my Claude history", "add my conversations to the wiki", "what have I discussed with Claude before". Also triggers when the user mentions their .claude folder, Claude projects, session data, past conversation logs, local-agent-mode sessions, or audit logs.
You are extracting knowledge from the user's past Claude Code conversations and distilling it into the Obsidian wiki. Conversations are rich but messy — your job is to find the signal and compile it.
This skill can be invoked directly or via the wiki-history-ingest router (/wiki-history-ingest claude).
llm-wiki/SKILL.md (inline @name override → walk up CWD for .env → ~/.obsidian-wiki/config → prompt setup). This gives OBSIDIAN_VAULT_PATH and CLAUDE_HISTORY_PATH (defaults to ~/.claude).manifest.json at the vault root to check what's already been ingestedindex.md at the vault root to know what the wiki already containsWIKI_SKIP_PROJECTS from config (comma-separated substrings). Exclude any project directory whose name contains one of them from every step below (scan, delta, sampling, manifest writes). If the user names extra projects to skip this run, add them. Apply the exclusion once, uniformly — don't hand-write grep -v filters into individual commands, which drifts between the scan and manifest steps.Check .manifest.json for each source file (conversation JSONL, memory file). Only process:
ingested_at in the manifestThis is usually what you want — the user ran a few new sessions and wants to capture the delta.
Canonical paths when comparing. The manifest keys are absolute paths with
~expanded (seellm-wiki/SKILL.md→.manifest.json). Before deciding a file is "new", expand its path the same way — otherwise a file already tracked as~/.claude/...looks new when you scanned it as/Users/me/.claude/...(or vice-versa) and gets re-ingested. Thescripts/manifest.pyhelper does this for you:The helper is optional — if it's unavailable, do the same expansion inline before every manifest lookup and write.
Raw JSONL files are 80-90% noise: tool_use blocks, thinking blocks, progress events, and
file-history-snapshot entries dominate by byte count. The scripts/extract-jsonl.py helper
strips all of that and writes compact signal-only JSON to ~/.claude/extracted/, achieving
50–200× file-size reduction (e.g. 12 MB JSONL → 64 KB extracted). This lets the skill read
5–10× more conversations per run within the same token budget.
Run it as a pre-step before invoking this skill:
Extracted files live at ~/.claude/extracted/<project-dir>/<session-id>.json and contain:
When Step 3 reads conversations, always prefer the extracted file over the raw JSONL. (See Step 3.)
If extract-jsonl.py was not run first, fall back to raw JSONL — but note the coverage will be
shallower because each raw file costs far more tokens to read.
A history path can hold hundreds of conversation JSONLs — do not try to read them all. Per project:
memory/*.md), ingest those first (they are
pre-distilled signal), then also process conversations not yet in the manifest — new
conversations should still be captured even for memory-rich projects.Process everything regardless of manifest. Use after a wiki-rebuild or if the user explicitly asks.
Claude Code stores data in two locations. Scan both.
~/.claude/ (CLI sessions)~/Library/Application Support/Claude/local-agent-mode-sessions/ (Desktop app agent sessions)Pre-check first. Many users are CLI-only and have no desktop sessions. Before walking the structure below, confirm it's non-empty:
If that prints nothing, skip this entire section (Source 2 + Step 3b) and don't narrate it.
The Claude desktop app stores local agent mode sessions here. The structure is deeply nested:
How to find all local-agent-mode sessions:
Session metadata (local_<uuid>.json) — JSON file with fields like sessionId, cwd, startedAt, model, title. Read this first to understand the session context before opening the transcript.
Audit log (audit.jsonl) — Each line is a JSON record of one agent action: tool calls (Read, Write, Bash, Edit), file accesses, shell commands executed, MCP calls. Useful for understanding what the agent actually did — often richer signal than the conversation text alone. Fields: type, toolName, input, output, timestamp, sessionId.
Conversation transcript (.claude/projects/.../<uuid>.jsonl) — Identical format to CLI conversation JSONL. Parse the same way as ~/.claude/projects/*/*.jsonl.
~/.claude/projects/*/memory/*.md) — Pre-distilled, already wiki-friendly. Gold.~/.claude/projects/*/*.jsonl and desktop app transcripts) — Full conversation transcripts. Rich but noisy.audit.jsonl in desktop sessions) — Tool-call level record of what was done. Useful for extracting concrete actions, file patterns, and command patterns even when the conversation is sparse.sessions/*.json and local_*.json) — Tells you which project, when, and what CWD.Scan both data locations and compare against .manifest.json:
Build a unified inventory and classify each file:
Report to the user: "Found X CLI projects, Y desktop sessions. Memory files: A. Conversations: B. Audit logs: C. Delta: D new, E modified."
Memory files are already structured with YAML frontmatter:
For each memory file:
user type → feeds into an entity page about the user, or concept pages about their domainfeedback type → feeds into skills pages (workflow patterns, what works, what doesn't)project type → feeds into entity pages for the projectreference type → feeds into reference pages pointing to external resourcesThe MEMORY.md index file in each project is a quick summary — read it first to decide which individual memory files are worth reading in full.
Always check for a pre-extracted file first (see Pre-extraction section above). For each
conversation ~/.claude/projects/<proj>/<uuid>.jsonl, look for its counterpart at
~/.claude/extracted/<proj>/<uuid>.json. If found, read that instead — it is already filtered to
user + assistant text turns and costs 50–200× fewer tokens than the raw JSONL.
Reading a pre-extracted file: it already contains only the turns you need. Iterate
turns[].{role, text} directly. The top-level fields (cwd, start_ts, n_user_words, etc.)
give you project context without any further parsing.
Reading raw JSONL (fallback): Each line is a JSON object:
For assistant messages, content may be an array of content blocks:
type: "user" and type: "assistant" entries onlytext blocks (skip thinking and tool_use — those are noise)cwd field tells you which project this conversation belongs totype: "progress" — internal agent progress updatestype: "file-history-snapshot" — file state trackingsubagents/ subdirectories) — unless the user asksFor each audit.jsonl found under local-agent-mode-sessions/, read it line by line. Each line is a JSON record of one agent action:
What to extract from audit logs:
skills/ page (e.g. "how this project is built and tested").Skip from audit logs:
Cross-reference with the conversation transcript: The audit log tells you what happened; the conversation tells you why. When both are available for the same session, use them together — the audit log grounds the conversation in concrete actions.
Read the paired local_<uuid>.json session metadata before processing the audit log — it gives you cwd, startedAt, and title to contextualize the actions.
Don't create one wiki page per conversation. Instead:
Each Claude project maps to a project directory in the vault. The project directory name from ~/.claude/projects/ encodes the original path — decode it to get a clean project name:
| What you found | Where it goes | Example |
|---|---|---|
| Project architecture decisions | projects/<name>/concepts/ | projects/my-project/concepts/main-architecture.md |
| Project-specific debugging | projects/<name>/skills/ | projects/my-project/skills/api-rate-limiting.md |
| General concept the user learned | concepts/ (global) | concepts/react-server-components.md |
| Recurring problem across projects | skills/ (global) | skills/debugging-hydration-errors.md |
| A tool/service used | entities/ (global) | entities/vercel-functions.md |
| Patterns across many conversations | synthesis/ (global) | synthesis/common-debugging-patterns.md |
For each project with content, create or update the project overview page at projects/<name>/<name>.md — named after the project, not _project.md. Obsidian's graph view uses the filename as the node label, so _project.md makes every project show up as _project in the graph. Naming it <name>.md gives each project a distinct, readable node name.
Important: Distill the knowledge, not the conversation. Don't write "In a conversation on March 15, the user asked about X." Write the knowledge itself, with the conversation as a source attribution.
Write a summary: frontmatter field on every new/updated page — 1–2 sentences, ≤200 chars, answering "what is this page about?" for a reader who hasn't opened it. wiki-query's cheap retrieval path reads this field to avoid opening page bodies.
Add confidence and lifecycle fields to every new page's frontmatter:
On update, leave lifecycle and lifecycle_changed unchanged — only a human editor transitions lifecycle state.
Mark provenance per the convention in llm-wiki (Provenance Markers section):
^[inferred] liberally to synthesized patterns, generalizations across sessions, and "what the user really meant" interpretations.^[ambiguous] when the user changed their mind across sessions or when assistant and user contradicted each other and the resolution is unclear.provenance: frontmatter block on every new/updated page summarizing the rough mix..manifest.jsonFor each source file processed, add/update its entry with:
ingested_at, size_bytes, modified_atsource_type: one of "claude_conversation", "claude_memory", "claude_audit_log", "claude_desktop_session"project: the decoded project namepages_created and pages_updated listsAlso update the projects section of the manifest:
Update index.md and log.md per the standard process:
hot.md — Read $OBSIDIAN_VAULT_PATH/hot.md (create from the template in wiki-ingest if missing). Update Recent Activity with a one-line summary — e.g. "Ingested 5 Claude conversations across 2 projects; surfaced patterns in API design and testing strategy." Keep the last 3 operations. Update Active Threads if any ongoing project is now better understood. Update the updated: field in the frontmatter to the current timestamp — this is easy to forget; the body edit and the frontmatter bump must both happen.
See references/claude-data-format.md for more details on the data structures.
QMD is a search index, not the source of truth. If $QMD_WIKI_COLLECTION is empty or unset, skip this step. Run it only after this skill has written or rewritten vault markdown. If QMD refresh fails, do not roll back the vault changes; report the QMD status separately.
Use $QMD_CLI if set; otherwise use qmd.
If the output says vectors are needed or embeddings may be stale, run:
Verify the collection with either:
or, when a specific page path is known:
Record one of:
QMD refreshed: update + embed + verifiedQMD refreshed: update only + verifiedQMD skipped: QMD_WIKI_COLLECTION unsetQMD skipped: qmd CLI unavailableQMD failed: <short error summary>