@claude-flow/cli 3.32.7 → 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.4",
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": "sexJgMxhPXdN6hdOAUxiBupen/PSnwe93zxnEiqok8TkWlA9ltiajTkC2ImizGlSUhuYBP6yfLoNCvH+nNlXCw==",
11
+ "signature": "TONMa8Qpj74yNYmQ0rEys1aIge1QZH9isWzT9GwIWj+94YHailYLhtBg9S26bIQPoxtSWV7IeT0up4RO+dbhBg==",
12
12
  "algorithm": "ed25519"
13
13
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "generation": 1,
4
- "generatedAt": "2026-07-17T19:11:16.010Z",
5
- "gitSha": "f9e0dcff",
4
+ "generatedAt": "2026-07-18T22:28:26.547Z",
5
+ "gitSha": "fb2f92bb",
6
6
  "catalog": {
7
7
  "agents": 164,
8
8
  "tools": 387,
@@ -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: "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
- const namespace = input.namespace || 'default';
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.7",
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",