
Memory Bridge
- 2k installs
- 3.1k repo stars
- Updated August 4, 2026
- ar9av/obsidian-wiki
memory-bridge is an agent skill that browses and diffs Obsidian wiki pages by originating AI tool using manifest provenance.
About
The memory-bridge skill helps developers browse and compare Obsidian wiki knowledge filtered by which AI tool originally produced it using manifest.json provenance and page sources frontmatter. Config resolution follows the llm-wiki SKILL.md walk-up .env and ~/.obsidian-wiki/config protocol for OBSIDIAN_VAULT_PATH. Modes include browse by tool, search topic within tool, diff unique pages and blind spots across tools, diff two specific tools, and full origin matrix map of every page per tool. Source map building maps claude_conversation, codex_rollout, hermes_memory, openclaw sessions, copilot transcripts, and ingest documents to tool buckets with pages_created and pages_updated sets. Diff mode is the killer feature surfacing knowledge gaps between tools the user may not know exist. Recognized tools: claude, codex, hermes, openclaw, copilot, pi, manual, ingest. Use for memory-bridge, cross-tool memory, compare AI tool memories, or what does hermes know that claude doesn't.
- Browse, search, diff, and map modes across AI tool provenance.
- Reads .manifest.json and index.md for source-of-truth page origins.
- Diff mode surfaces unique pages, overlap, and blind spots between tools.
- Maps many source_type values to claude, codex, hermes, openclaw, copilot.
- Config resolution via OBSIDIAN_VAULT_PATH from llm-wiki protocol.
Memory Bridge by the numbers
- 1,978 all-time installs (skills.sh)
- +38 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #622 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
memory-bridge capabilities & compatibility
- Capabilities
- manifest source map construction · browse and search by tool filters · cross tool diff blind spot detection · full origin matrix map mode · vault config resolution protocol
- Use cases
- memory · research · orchestration
What memory-bridge says it does
Browse and compare wiki knowledge by which AI tool originally produced it.
npx skills add https://github.com/ar9av/obsidian-wiki --skill memory-bridgeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2k |
|---|---|
| repo stars | ★ 3.1k |
| Security audit | 2 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ar9av/obsidian-wiki ↗ |
What knowledge did codex capture that claude does not have in my Obsidian wiki?
Browse and diff Obsidian wiki knowledge by originating AI tool with browse, search, diff, and map modes across claude, codex, hermes, and copilot sources.
Who is it for?
Developers maintaining cross-tool Obsidian wikis who need provenance-aware knowledge browsing.
Skip if: Skip when you have no Obsidian wiki with .manifest.json tool provenance metadata.
When should I use this skill?
Use for memory-bridge, cross-tool memory, compare AI memories, or knowledge from a specific tool.
What you get
Tool-filtered page lists, topic search results, or diff matrix showing cross-tool knowledge gaps.
- filtered note listings
- cross-tool diff report
- knowledge gap summary
Files
Memory Bridge — Cross-Tool Knowledge Browser
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.
Before You Start
1. Resolve config — follow the Config Resolution Protocol in llm-wiki/SKILL.md (walk up CWD for .env → ~/.obsidian-wiki/config → prompt setup). This gives OBSIDIAN_VAULT_PATH. 2. Read $OBSIDIAN_VAULT_PATH/.manifest.json — this is the source-of-truth for what tool produced what. 3. Read $OBSIDIAN_VAULT_PATH/index.md for page titles and one-line descriptions.
Commands
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).
Step 1: Build the Source Map
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→ingest- anything else →
manual pages_createdandpages_updated— the wiki pages that came out of this source
Build a map:
tool_pages = {
"claude": set(pages created/updated by claude sources),
"codex": set(pages created/updated by codex sources),
...
}A page can appear in multiple tools' sets if multiple tools contributed to it.
Step 2: Execute the Mode
Browse Mode
Filter tool_pages[<tool>] and present as a grouped list:
## Knowledge from <tool> (<N> pages)
### By category
- concepts/ — N pages
- entities/ — N pages
- skills/ — N pages
...
### Pages
| Page | Category | Tags | Last updated |
|------|----------|------|--------------|
| [[page-name]] | concept | tag1, tag2 | 2026-04-10 |
...Read frontmatter for the listed pages (grep for ^(title|category|tags|updated):) — do not read full page bodies unless the user asks.
Search Mode
Within the filtered page set, run:
grep -l "<topic>" <pages in tool set>Then grep section headers (^##) around matches to give context without full reads. Present results as a ranked list with the matching excerpt.
Diff Mode
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:
## Memory Bridge Diff — <tool-a> vs <tool-b>
### Only in <tool-a> (<N> pages)
These concepts exist in your wiki from <tool-a> sessions but <tool-b> has never touched them.
<list with one-line descriptions from index.md>
### Only in <tool-b> (<N> pages)
<list>
### Shared (<N> pages)
Both tools have contributed to these pages.
<list — only show if ≤15; otherwise just the count>
### Notable gaps
<highlight the most interesting asymmetries — e.g. "codex has 12 pages on build tooling that claude has never seen">Map Mode
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).
| Page | claude | codex | hermes | copilot | pi |
|------|--------|-------|--------|---------|----|
| [[react-patterns]] | ✓ | ✓ | — | ✓ | — |
| [[rust-ownership]] | — | ✓ | — | — | ✓ |Step 3: Spawn impl-validator (if available)
After generating output, if the impl-validator skill is available in the current environment, spawn it as a subagent:
impl-validator check:
goal: "Browse/diff wiki knowledge by source tool and surface cross-tool blind spots"
artifacts: [the output you just generated]
checks:
- Did you correctly parse source_type from .manifest.json?
- Are page counts plausible (not 0 unless vault is empty)?
- Is the diff symmetric (a−b and b−a are disjoint)?
- Did you avoid reading full page bodies when not needed?Apply any issues it surfaces before presenting output to the user.
Step 4: Log
Append to $OBSIDIAN_VAULT_PATH/log.md:
- [TIMESTAMP] MEMORY-BRIDGE mode=<browse|search|diff|map> tool=<tool> pages_shown=NOutput Conventions
- Always show page counts so the user can calibrate how much knowledge is in each tool's silo.
- Use
[[wikilinks]]for page references (or standard Markdown links ifOBSIDIAN_LINK_FORMAT=markdownis set). - In diff mode, call out the most surprising asymmetry explicitly — that's the insight the user came for.
- If
.manifest.jsonis empty or missing, say so clearly and suggest running/wiki-history-ingestfirst.
Related skills
How it compares
Use memory-bridge for cross-agent wiki comparison; use a single-agent memory skill when only one coding tool writes notes.
FAQ
Who is memory-bridge for?
Developers and software engineers maintaining cross-tool Obsidian wikis who need provenance-aware knowledge browsing.
When should I use memory-bridge?
When memory-bridge, cross-tool memory, compare AI memories, or knowledge from a specific tool.
Is memory-bridge safe to install?
Review the Security Audits panel on this page before installing in production.