Agent skill · AI & Agents

memory-bridge

Bridge Claude Code auto-memory into AgentDB with ONNX embeddings, deduplicate, and enable unified cross-project search

rUv72,748★ · +654/wk · 4 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add ruvnet/ruflo --skill memory-bridge --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: BashReadmcp__plugin_ruflo-core_ruflo__memory_import_claudemcp__plugin_ruflo-core_ruflo__memory_bridge_statusmcp__plugin_ruflo-core_ruflo__memory_search_unified
Path: plugins/ruflo-rag-memory/skills/memory-bridge/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Memory Bridge Import Claude Code's native auto-memory files into AgentDB for semantic search across sessions and projects. ## What it does Claude Code stores memories as markdown files in `~/.claude/projects/*/memory/*.md`. This bridge: 1. Reads all memory files (current project or all projects) 2. Generates 384-dim ONNX embeddings (all-MiniLM-L6-v2) 3. Stores in AgentDB's `claude-memories` namespace with HNSW indexing 4. Deduplicates against existing entries (cosine similarity > 0.95) 5. Enables unified semantic search across all memory sources ## Steps 1. **Check bridge health**: `mcp__plugin_ruflo-core_ruflo__memory_bridge_status({})` Verify: Claude files count, AgentDB entries, SONA state, connection status. 2. **Import memories**: - Current project: `mcp__plugin_ruflo-core_ruflo__memory_import_claude({})` - All projects: `mcp__plugin_ruflo-core_ruflo__memory_import_claude({ allProjects: true })` CLI alternative: ```bash node .claude/helpers/auto-memory-hook.mjs import-all ``` 3. **Verify import**: `mcp__plugin_ruflo-core_ruflo__memory_bridge_status({})` Confirm entry counts match expected file counts. 4. **Deduplicate** (if --dedupe): Search for near-duplicate entries (cosin

What's inside
Steps it walks through
  1. What it does
  2. Steps
  3. Auto-import
  4. Integration with ruvector
Commands it runs
node .claude/helpers/auto-memory-hook.mjs import-all
More from ruflo
All skills →
About this skill
What does the memory-bridge skill do?

Bridge Claude Code auto-memory into AgentDB with ONNX embeddings, deduplicate, and enable unified cross-project search

How do I install it?

Run `npx skills add ruvnet/ruflo --skill memory-bridge --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going