npx skills add ...
npx skills add ar9av/obsidian-wiki --skill wiki-agent
npx skills add ar9av/obsidian-wiki --skill wiki-agent
Query-driven targeted ingest from a specific AI agent's raw history. Use this skill when the user invokes /wiki-claude, /wiki-codex, /wiki-hermes, /wiki-openclaw, /wiki-copilot, /wiki-pi — with or without a search topic. Different from wiki-history-ingest (which bulk-ingests everything new): this skill finds sessions about a SPECIFIC TOPIC in a specific agent's history and ingests just those, then returns a synthesized answer immediately usable in the current session. Primary use case: you're working in agent A and want to pull in how you solved X in agent B's history. Cross-referencing, not archiving. Also trigger on: "what did I work on in codex about X", "search my claude sessions for Y", "pull in hermes knowledge about Z", "find that conversation where I did X in codex".
You are doing a query-driven targeted ingest from one specific AI agent's raw conversation history. The user is typically working in a different agent right now and wants to pull in context from another agent's past sessions.
This is not bulk ingest. You find sessions about a specific topic, extract the relevant blobs, distill them into the wiki, and return a synthesized answer the user can act on immediately.
Parse the invocation to determine the target agent and optional query:
| Command | Target | Example |
|---|---|---|
/wiki-claude [query] | Claude Code history | /wiki-claude "how did I set up auth middleware" |
/wiki-codex [query] | Codex CLI history | /wiki-codex "rust ownership patterns" |
/wiki-hermes [query] | Hermes agent history | /wiki-hermes "memory architecture" |
/wiki-openclaw [query] | OpenClaw history | /wiki-openclaw "project planning approach" |
/wiki-copilot [query] | Copilot chat history | /wiki-copilot "test strategy for API routes" |
/wiki-pi [query] | Pi agent history | /wiki-pi "how did I refactor the auth module" |
If no query is given, default to recent sessions mode: ingest the last 5 unprocessed sessions from that agent and return a summary of what was found. This is equivalent to a focused wiki-history-ingest for that agent only.
llm-wiki/SKILL.md (inline @name override → walk up CWD for .env → ~/.obsidian-wiki/config → prompt setup). This gives OBSIDIAN_VAULT_PATH.$OBSIDIAN_VAULT_PATH/.manifest.json → know what's already ingested.$OBSIDIAN_VAULT_PATH/hot.md if it exists → warm context on recent wiki activity.| Agent | Default path | Config override |
|---|---|---|
claude | ~/.claude + ~/Library/Application Support/Claude/local-agent-mode-sessions/ | CLAUDE_HISTORY_PATH in .env |
codex | ~/.codex | CODEX_HISTORY_PATH in .env |
hermes | ~/.hermes | HERMES_HOME in env or .env |
openclaw | ~/.openclaw | OPENCLAW_HOME in .env |
copilot | ~/.copilot | COPILOT_HISTORY_PATH in .env |
pi | ~/.pi/agent/sessions | PI_HISTORY_PATH in .env |
If the history root doesn't exist, stop and tell the user: "No <agent> history found at <path>. Have you run <agent> on this machine? You can set a custom path with <CONFIG_VAR> in .env."
Use the cheapest index source for each agent — don't open session files until you know which ones are relevant.
Build a list of sessions: {path, project_dir, modified_at, already_ingested}.
Read session_index.jsonl as the inventory. Each line: {thread_id, name, updated_at}. Map thread IDs to rollout files by matching directory names.
Scan memory filenames first (they're often titled by topic). Fall back to session listing.
Read MEMORY.md sections first — it's the pre-compiled summary of everything. Daily notes give recency signal.
Scan session directories first. Decode --<cwd>-- to get the working directory. Read the first line (session header) and any session_info entries for the session name. No separate index file — the filesystem is the index.
If a query was given, score each session in the inventory without opening full session files:
hot.md + index.md), flag as "covered" but still show in resultsSelect the top 3–5 sessions by score. If no query was given, select the 5 most recent unprocessed sessions.
Open each selected session file and extract only the content relevant to the query. Do not read the full session if it's large — use targeted extraction.
Claude (JSONL conversation):
{role, content, timestamp, ...}rg -i "<query terms>" <session.jsonl> to find the relevant linesCodex (rollout JSONL):
{type: "session_meta|turn_context|event_msg|response_item", ...}type: "event_msg" (user turns) and type: "response_item" (model output)rg -i "<query terms>" <rollout.jsonl>turn_context preceding the match)session_meta events (operational metadata, not knowledge)Hermes (memory files + session JSONL):
rg -i "<query terms>" + surrounding windowOpenClaw (MEMORY.md + daily notes + session JSONL):
MEMORY.md: grep for section headers containing query terms → extract that sectionCopilot (session JSONL):
Pi (structured JSONL with tree layout):
{type, id, parentId, timestamp, message?, ...}id, find leaf (last entry with no children), walk parentId to rootrg -i "<query terms>" <session.jsonl> to find matching entriestoolCall blocks inside assistant messages reveal what was actually done — extract these even without keyword matches if they're in the relevant windowcompaction and branch_summary entries when available — they're pre-synthesized summariesthinking content blocks (noise) and model_change / thinking_level_change entriesFor each extracted blob, determine where it belongs in the wiki:
index.md and page frontmatter for the topic. If yes, update the existing page rather than creating a new one.llm-wiki/SKILL.md):
skills/concepts/entities/synthesis/sources with the agent prefix so memory-bridge can find it later.index.md.Distillation rules (same as all ingest skills):
After ingesting, immediately synthesize and return an answer from the newly ingested + existing wiki content:
If a query was given but no relevant sessions were found, say so explicitly: "No sessions about '' found in <agent> history. The most recent sessions covered: <list topics from last 3 sessions>."
Update .manifest.json for each session file processed:
Append to log.md:
Update hot.md with a one-line summary of what was ingested.
These are the primary use cases this skill is designed for:
"I'm on Codex. What did I figure out about X in Claude?"
→ /wiki-claude "X" — finds Claude sessions about X, ingests them, returns the answer
"I solved a bug in Hermes last week. I need that context now in Claude Code."
→ /wiki-hermes "bug description" — surfaces and ingests the Hermes session
"What are all the approaches I've tried for X across all my tools?"
→ Run /wiki-claude "X", /wiki-codex "X", /wiki-hermes "X" in sequence — each ingests its slice, the wiki accumulates the cross-agent picture, then /memory-bridge diff shows what each tool uniquely contributed
No query — just "catch me up on recent Codex work"
→ /wiki-codex — ingests last 5 Codex sessions and returns a summary
"I'm on Claude Code. What did I figure out about X in Pi?"
→ /wiki-pi "X" — finds Pi sessions about X, ingests them, returns the answer
No query — just "catch me up on recent Pi work"
→ /wiki-pi — ingests last 5 Pi sessions and returns a summary
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>Primary index: session filenames / directory listing
Session files: varies by client (VS Code: ~/.copilot/sessions/*.jsonl or similar)
Signal fields: session timestamps, file namesPrimary index: ~/.pi/agent/sessions/--<cwd>--/ directories
Session files: ~/.pi/agent/sessions/--<cwd>--/<timestamp>_<uuid>.jsonl
Signal fields: cwd (decoded from dir name), session_info.name, timestamp in filename