Teaches agents when to query Cipher/Mem0, when to consult Obsidian, and when to log decisions inline — routing context retrieval to the right memory layer.
60
71%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./skills/memory-layer-bridge/SKILL.mdThis skill is the standing memory routing contract for all agent sessions. It is always-on — it defines which memory layer to query and when, preventing wasted LLM context and ensuring decisions are persisted to the right store.
Route agent memory operations to the correct layer: short-term inline context, Mem0/Cipher semantic memory, or Obsidian vault structured notes. Prevent agents from hallucinating past decisions, duplicating retrieval work, or logging to the wrong store.
OpenCode / Codex: Invoke memory-layer-bridge
Freebuff: /skill memory-layer-bridge
What are you trying to do?
│
├─ Recall a past decision, preference, or fact about the user/project
│ → Query Mem0 / Cipher first (semantic search)
│ → Fall back to Obsidian vault search if not in Mem0
│
├─ Look up a structured document (architecture, plan, meeting note, log)
│ → Query Obsidian vault directly (note title or tag search)
│
├─ Access session-scoped context (current task, open files, recent output)
│ → Use inline context window; do not hit external memory stores
│
├─ Log a significant decision, change, or discovery
│ → Write to Obsidian vault (permanent, searchable, linked)
│ → Also update Mem0 if it is a preference or fact about the user
│
└─ Log a homelab event or infrastructure change
→ obsidian-homelab-logbook (structured Obsidian note)
→ homelab-logbook (audit trail entry)Projects/<project>/decisions/ in the vault.obsidian-vault-manager — vault write/read operationsgit-safe-ops — log significant code decisions (parallel always-on)homelab-safe-ops — log infrastructure decisions (parallel always-on)homelab-logbook — structured homelab event loggingobsidian-homelab-logbook — vault-native homelab log layer0f62e6b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.