@axiomatic-labs/claudeflow 2.4.1 → 2.4.3

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/bin/cli.js +2 -5
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -11,9 +11,7 @@ async function main() {
11
11
 
12
12
  switch (command) {
13
13
  case '':
14
- case 'install':
15
- case 'init':
16
- case 'update': {
14
+ case 'install': {
17
15
  const install = require('../lib/install.js');
18
16
  await install();
19
17
  break;
@@ -31,8 +29,7 @@ async function main() {
31
29
  console.log(' Usage: npx @axiomatic-labs/claudeflow [command]');
32
30
  console.log('');
33
31
  console.log(' Commands:');
34
- console.log(` ${ui.CYAN}(default)${ui.RESET} Install or update Claudeflow`);
35
- console.log(` ${ui.CYAN}update${ui.RESET} Alias for default (re-download template files)`);
32
+ console.log(` ${ui.CYAN}install${ui.RESET} Install or update Claudeflow (default)`);
36
33
  console.log(` ${ui.CYAN}version${ui.RESET} Show version info`);
37
34
  console.log('');
38
35
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
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"