claude-flow 3.5.17 → 3.5.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "3.5.17",
3
+ "version": "3.5.18",
4
4
  "description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -1007,17 +1007,14 @@ async function writeStatusline(targetDir, options, result) {
1007
1007
  }
1008
1008
  }
1009
1009
  }
1010
- // ALWAYS generate statusline.cjs — settings.json references this path
1011
- // regardless of whether advanced statusline files were also copied.
1010
+ // ALWAYS generate statusline.cjs — the generated version includes AgentDB
1011
+ // vectors/size, tests, ADRs, hooks, and integration stats that the
1012
+ // pre-installed static copy in the npm package lacks.
1013
+ // This must overwrite any copy from writeHelpers() which copies the legacy file.
1012
1014
  const statuslineScript = generateStatuslineScript(options);
1013
1015
  const statuslinePath = path.join(helpersDir, 'statusline.cjs');
1014
- if (!fs.existsSync(statuslinePath) || options.force) {
1015
- fs.writeFileSync(statuslinePath, statuslineScript, 'utf-8');
1016
- result.created.files.push('.claude/helpers/statusline.cjs');
1017
- }
1018
- else {
1019
- result.skipped.push('.claude/helpers/statusline.cjs');
1020
- }
1016
+ fs.writeFileSync(statuslinePath, statuslineScript, 'utf-8');
1017
+ result.created.files.push('.claude/helpers/statusline.cjs');
1021
1018
  }
1022
1019
  /**
1023
1020
  * Write runtime configuration (.claude-flow/)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.5.17",
3
+ "version": "3.5.18",
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",