Replies: 2 comments
-
|
I believe this is related: |
Beta Was this translation helpful? Give feedback.
-
|
The memory tools are one of the few parts of ruflo that actually work. Your issue is likely one of these: 1. Namespace mismatch — HNSW search is per-namespace. If you stored with one namespace and search without specifying it (or with a different one), you'll get nothing back: 2. Hive-mind memory vs MCP memory — these are separate systems:
3. Memory stats may report differently — the The memory/HNSW system genuinely works — 384-dim all-MiniLM-L6-v2 embeddings with real cosine similarity search. Just make sure you're always specifying the namespace. For reference on what works vs what doesn't: Independent Audit |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After using the run command with the memory name, when checking memory stats it does not appear.
The flow I am using is quite simple:
I install Claude and Claude-flow globally via npm.
Then I launch the project
$claude-flow hive-mind spawn "Develop a to-do list application"
--agents 10
--strategy parallel
--memory-namespace todolist
--claude
Checking $claude-flow memory stats I get:
Memory Bank Statistics:
Total Entries: 0
Namespaces: 0
Size: 0.00 KB
Similarly $ claude-flow memory list
⚠️ No namespaces found
I only get a result if I explicitly create the namespace with a command like:
$ claude-flow memory store "project-context" "Full-stack app requirements"
✅ Stored successfully
📝 Key: project-context
📦 Namespace: default
💾 Size: 27 bytes
I am very interested in the memory issue, since many projects become large and consume all my session tokens and when they are close to finish I would like to be able to pause the development and continue it in my next session and I had understood that with the persistent memory it would be easier to resume the progress made.
I'm using Ubuntu 22.04 with VS Code Server.
Beta Was this translation helpful? Give feedback.
All reactions