@claude-flow/cli 3.32.32 → 3.32.33

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.32",
3
+ "version": "3.32.33",
4
4
  "files": {
5
5
  "auto-memory-hook.mjs": "68be7e9a9eba7bf9c4e8a230db7bf61a243b965639f8504842799d6c6ca28762",
6
6
  "hook-handler.cjs": "50ea92a72651bdc95634f7588d56a5870963168eef5226f66ed14af3b47c8d9a",
@@ -8,6 +8,6 @@
8
8
  "statusline.cjs": "d2a0eac56d1267d8dbed2d70b09feb592299469196ec4b215909f2b052144882"
9
9
  }
10
10
  },
11
- "signature": "04DvDI9kCGvy1HIskgegJsTnGUTgnDBMGTb/c+ef/hy3XgM4WvpHb6xePaWraB6YQ4F41+4BZRi4ZeBWBrVbBA==",
11
+ "signature": "cdCqQZfkjY3y+45Yuk0kKw2yV3CApVm21lmQcxZhYrxgAhhh2o6nAWbFnmNUJIMD/LBPmDjiy4zT9kjoRMMOCA==",
12
12
  "algorithm": "ed25519"
13
13
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "generation": 3,
4
- "generatedAt": "2026-07-29T12:41:44.000Z",
5
- "gitSha": "388849b3",
4
+ "generatedAt": "2026-07-29T12:53:25.000Z",
5
+ "gitSha": "c1957608",
6
6
  "catalog": {
7
7
  "agents": 164,
8
8
  "tools": 395,
@@ -187,9 +187,11 @@ const configCommand = {
187
187
  ],
188
188
  action: async (ctx) => {
189
189
  const state = loadState();
190
- const maxIter = ctx.flags?.['max-iterations'];
190
+ // CommandParser canonicalizes kebab-case flags to camelCase.
191
+ // Retain kebab-case reads for direct/legacy action callers.
192
+ const maxIter = (ctx.flags?.maxIterations ?? ctx.flags?.['max-iterations']);
191
193
  const timeout = ctx.flags?.timeout;
192
- const sources = ctx.flags?.['task-sources'];
194
+ const sources = (ctx.flags?.taskSources ?? ctx.flags?.['task-sources']);
193
195
  if (maxIter)
194
196
  state.maxIterations = validateNumber(maxIter, 1, 1000, state.maxIterations);
195
197
  if (timeout)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.32.32",
3
+ "version": "3.32.33",
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",