@claude-flow/cli 3.32.5 → 3.32.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": {
|
|
3
|
-
"version": "3.32.
|
|
3
|
+
"version": "3.32.8",
|
|
4
4
|
"files": {
|
|
5
5
|
"auto-memory-hook.mjs": "e3e1033b24704992ddef6b31c7fa9dd7fcd9e1af7935dd77ef73402b916b31e6",
|
|
6
6
|
"hook-handler.cjs": "f87ec28684bfc5fd0a54c46bd2a53a3fb037defe71d0ea4b8a5cb88a2cd87a3f",
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"statusline.cjs": "af2703bdd710fb52af3221669266771ba1684157f34d77de21373890b5c2a126"
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"signature": "
|
|
11
|
+
"signature": "TONMa8Qpj74yNYmQ0rEys1aIge1QZH9isWzT9GwIWj+94YHailYLhtBg9S26bIQPoxtSWV7IeT0up4RO+dbhBg==",
|
|
12
12
|
"algorithm": "ed25519"
|
|
13
13
|
}
|
package/catalog-manifest.json
CHANGED
|
@@ -389,7 +389,7 @@ export const memoryTools = [
|
|
|
389
389
|
type: 'object',
|
|
390
390
|
properties: {
|
|
391
391
|
query: { type: 'string', description: 'Search query (semantic similarity)' },
|
|
392
|
-
namespace: { type: 'string', description: 'Namespace to search (default:
|
|
392
|
+
namespace: { type: 'string', description: 'Namespace to search (default: all namespaces — omit to search across every namespace)' },
|
|
393
393
|
limit: { type: 'number', description: 'Maximum results (default: 10)' },
|
|
394
394
|
threshold: { type: 'number', description: 'Minimum similarity threshold 0-1 (default: 0.3)' },
|
|
395
395
|
smart: { type: 'boolean', description: 'Enable SmartRetrieval pipeline — query expansion, RRF fusion, recency boost, MMR diversity (default: false)' },
|
|
@@ -400,10 +400,18 @@ export const memoryTools = [
|
|
|
400
400
|
await ensureInitialized();
|
|
401
401
|
const { searchEntries } = await getMemoryFunctions();
|
|
402
402
|
const query = input.query;
|
|
403
|
-
|
|
403
|
+
// #2646 (3rd occurrence of #1123/#1131 shape): do NOT coerce an omitted
|
|
404
|
+
// namespace to the literal string 'default' here. Both searchEntries()
|
|
405
|
+
// and bridgeSearchEntries() already resolve an omitted/undefined
|
|
406
|
+
// namespace to 'all' (fan out across every namespace) — but 'default'
|
|
407
|
+
// is truthy, so passing it defeats that fallback and silently scopes
|
|
408
|
+
// the search to a namespace that is usually empty. Leave namespace
|
|
409
|
+
// undefined when not provided so the underlying `|| 'all'` fallback
|
|
410
|
+
// in the search layer actually fires.
|
|
411
|
+
const namespace = input.namespace;
|
|
404
412
|
const limit = input.limit ?? 10;
|
|
405
413
|
const threshold = input.threshold ?? 0.3;
|
|
406
|
-
validateMemoryInput(undefined, undefined, query);
|
|
414
|
+
validateMemoryInput(undefined, undefined, query, namespace);
|
|
407
415
|
const startTime = performance.now();
|
|
408
416
|
try {
|
|
409
417
|
// #1846: feature-detect smartSearch on the resolved memory package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.32.
|
|
3
|
+
"version": "3.32.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
},
|
|
113
113
|
"optionalDependencies": {
|
|
114
114
|
"@claude-flow/memory": "^3.0.0-alpha.21",
|
|
115
|
-
"@claude-flow/security": "^3.0.0-alpha.
|
|
115
|
+
"@claude-flow/security": "^3.0.0-alpha.12",
|
|
116
116
|
"agentdb": "^3.0.0-alpha.17",
|
|
117
117
|
"agentic-flow": "^3.0.0-alpha.1",
|
|
118
118
|
"ruvector": "^0.2.27"
|