@axiomatic-labs/claudeflow 2.12.152 → 2.12.154

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.
Files changed (2) hide show
  1. package/lib/install.js +8 -5
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -260,13 +260,16 @@ async function run() {
260
260
  }
261
261
 
262
262
  ui.done(`Claudeflow ${version} installed.`);
263
+ }
263
264
 
264
- // Ensure the `claudeflow` shell command is available
265
- const cliStatus = ensureGlobalCli(version);
265
+ // Ensure the `claudeflow` shell command is available and matches the
266
+ // just-installed template version. Runs for both fresh installs and
267
+ // updates — the shell command is independent of the project template
268
+ // and needs to stay in sync either way.
269
+ const cliStatus = ensureGlobalCli(version);
266
270
 
267
- // Getting started guide with project detection
268
- showGettingStarted(cwd, cliStatus);
269
- }
271
+ // Getting started guide with project detection
272
+ showGettingStarted(cwd, cliStatus);
270
273
  }
271
274
 
272
275
  function ensureGlobalCli(version) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.12.152",
3
+ "version": "2.12.154",
4
4
  "description": "Claudeflow — AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps.",
5
5
  "bin": {
6
6
  "claudeflow": "./bin/cli.js"