npx skills add ...
npx skills add ar9av/obsidian-wiki --skill memory-bridge
npx skills add ar9av/obsidian-wiki --skill memory-bridge
Browse and compare wiki knowledge by which AI tool originally produced it. Use this skill when the user says "/memory-bridge", "browse codex memory", "what did codex know about X", "show me claude knowledge", "cross-tool memory", "what does hermes know that claude doesn't", "show me knowledge from <tool>", "compare my AI tool memories", or wants to explore knowledge gaps between tools. Works from any project. Diff mode ("what's different", "unique to codex", "gaps between tools") is the killer feature — it surfaces blind spots between tools that the user may not know exist.
You are helping the user browse and compare their Obsidian wiki knowledge filtered by which AI tool originally produced it. The wiki tracks source provenance in .manifest.json and page sources: frontmatter — this skill surfaces that metadata as a navigable view.
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 — this is the source-of-truth for what tool produced what.$OBSIDIAN_VAULT_PATH/index.md for page titles and one-line descriptions.Parse the user's invocation to determine mode:
| Invocation | Mode |
|---|---|
/memory-bridge <tool> | Browse — list all wiki pages sourced from <tool> |
/memory-bridge <tool> "<topic>" | Search — pages from <tool> that mention <topic> |
/memory-bridge diff | Diff — pages unique to each tool; overlap; blind spots |
/memory-bridge diff <tool-a> <tool-b> | Diff — compare two specific tools |
/memory-bridge map | Map — full origin matrix: every page × every tool that touched it |
Recognized tool names: claude, codex, hermes, openclaw, copilot, pi, manual (hand-written), ingest (wiki-ingest documents).
Read .manifest.json. For each source entry, extract:
source_type — maps to tool name:
claude_conversation, claude_memory, claude_audit_log, claude_desktop_session → claudecodex_rollout, codex_index, codex_history → codexhermes_memory, hermes_session → hermesopenclaw_memory, openclaw_daily_note, openclaw_session, openclaw_dreams → openclawcopilot_session, copilot_checkpoint, copilot_transcript, copilot_memory_artifact → copilotpi_session → pidocument → ingestmanualpages_created and pages_updated — the wiki pages that came out of this sourceBuild a map:
A page can appear in multiple tools' sets if multiple tools contributed to it.
Filter tool_pages[<tool>] and present as a grouped list:
Read frontmatter for the listed pages (grep for ^(title|category|tags|updated):) — do not read full page bodies unless the user asks.
Within the filtered page set, run:
Then grep section headers (^##) around matches to give context without full reads. Present results as a ranked list with the matching excerpt.
Compute:
only_in_a = tool_pages[a] − tool_pages[b]only_in_b = tool_pages[b] − tool_pages[a]shared = tool_pages[a] ∩ tool_pages[b]If no specific tools are given, compare all tools pairwise (limit to pairs with >0 overlap or unique pages to keep output concise).
Present:
Build a matrix showing every page and which tools have touched it. Cap at 50 rows; sort by number of contributing tools descending (most cross-tool pages first — these are the richest nodes).
After generating output, if the impl-validator skill is available in the current environment, spawn it as a subagent:
Apply any issues it surfaces before presenting output to the user.
Append to $OBSIDIAN_VAULT_PATH/log.md:
[[wikilinks]] for page references (or standard Markdown links if OBSIDIAN_LINK_FORMAT=markdown is set)..manifest.json is empty or missing, say so clearly and suggest running /wiki-history-ingest first.