@claude-flow/cli 3.26.0 → 3.26.1

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,13 +1,13 @@
1
1
  {
2
2
  "manifest": {
3
- "version": "3.26.0",
3
+ "version": "3.26.1",
4
4
  "files": {
5
5
  "auto-memory-hook.mjs": "68be7e9a9eba7bf9c4e8a230db7bf61a243b965639f8504842799d6c6ca28762",
6
6
  "hook-handler.cjs": "2a18a761f0dc4839df8b6eeadf8f0ceb6badcc5bf14414c91555711a5e9d4bdc",
7
7
  "intelligence.cjs": "bd1f8e4b034944aee1df0391dc47ac2e8cc4b3aa542c65407a59d49620bbf76b",
8
- "statusline.cjs": "ac6be4ed31b30cef7b325c15d0feb77f3a8a26a69f7186907ba0340d332f2d05"
8
+ "statusline.cjs": "8abc67b7512e66fe5f8fe6cc5f099f827de6f7e2023a493f920090248d326e01"
9
9
  }
10
10
  },
11
- "signature": "htvyWBS+UYspE4SIyoVj+S4HdaJymRlQGYQSMSP5PCang0CelajiGJKyaY3c0vzBUn7DAMxbXDl9jLlSe+j/DA==",
11
+ "signature": "WJv7lzA3G5RhBcD8z7v1+uGwPHY6aIEoIPgOW5QjH3fRHvL0vMC7tVR+1QviVQtQY0hblBYrK4bpvFqzoFukAw==",
12
12
  "algorithm": "ed25519"
13
13
  }
@@ -199,9 +199,19 @@ function getStatuslineData() {
199
199
  // back to `npx --prefer-offline @claude-flow/cli` (no @latest); an existing
200
200
  // but broken install (e.g. a stale marketplace checkout missing a bundled
201
201
  // workspace dep) must not block trying the next one.
202
+ //
203
+ // No `2>/dev/null` here (deliberately) — the execSync call below already
204
+ // sets stdio: ['pipe','pipe','pipe'], which captures/discards stderr at the
205
+ // Node level regardless of shell. The redirect was redundant on POSIX and
206
+ // actively broke every candidate on Windows: cmd.exe (execSync's default
207
+ // shell there) doesn't understand /dev/null, so the CLI delegation always
208
+ // failed, silently degrading every render to buildLocalFallback() — 0%
209
+ // intelligence and an empty promo row (the memo cache that keeps the row
210
+ // populated across CLI hiccups is only ever written from a SUCCESSFUL
211
+ // delegation, so it could never get seeded on Windows either).
202
212
  const cmds = resolveCliBinCandidates()
203
- .map((bin) => '"' + process.execPath + '" "' + bin + '" hooks statusline --json 2>/dev/null')
204
- .concat(['npx --prefer-offline @claude-flow/cli hooks statusline --json 2>/dev/null']);
213
+ .map((bin) => '"' + process.execPath + '" "' + bin + '" hooks statusline --json')
214
+ .concat(['npx --prefer-offline @claude-flow/cli hooks statusline --json']);
205
215
  for (const cmd of cmds) {
206
216
  try {
207
217
  const raw = execSync(
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "generation": 1,
4
- "generatedAt": "2026-07-13T16:09:11.080Z",
5
- "gitSha": "2d42012e",
4
+ "generatedAt": "2026-07-13T17:21:15.123Z",
5
+ "gitSha": "eabf9530",
6
6
  "catalog": {
7
7
  "agents": 164,
8
8
  "tools": 387,
@@ -222,9 +222,19 @@ function getStatuslineData() {
222
222
  // back to \`npx --prefer-offline @claude-flow/cli\` (no @latest); an existing
223
223
  // but broken install (e.g. a stale marketplace checkout missing a bundled
224
224
  // workspace dep) must not block trying the next one.
225
+ //
226
+ // No \`2>/dev/null\` here (deliberately) — the execSync call below already
227
+ // sets stdio: ['pipe','pipe','pipe'], which captures/discards stderr at the
228
+ // Node level regardless of shell. The redirect was redundant on POSIX and
229
+ // actively broke every candidate on Windows: cmd.exe (execSync's default
230
+ // shell there) doesn't understand /dev/null, so the CLI delegation always
231
+ // failed, silently degrading every render to buildLocalFallback() — 0%
232
+ // intelligence and an empty promo row (the memo cache that keeps the row
233
+ // populated across CLI hiccups is only ever written from a SUCCESSFUL
234
+ // delegation, so it could never get seeded on Windows either).
225
235
  const cmds = resolveCliBinCandidates()
226
- .map((bin) => '"' + process.execPath + '" "' + bin + '" hooks statusline --json 2>/dev/null')
227
- .concat(['npx --prefer-offline @claude-flow/cli hooks statusline --json 2>/dev/null']);
236
+ .map((bin) => '"' + process.execPath + '" "' + bin + '" hooks statusline --json')
237
+ .concat(['npx --prefer-offline @claude-flow/cli hooks statusline --json']);
228
238
  for (const cmd of cmds) {
229
239
  try {
230
240
  const raw = execSync(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.26.0",
3
+ "version": "3.26.1",
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",