@axiomatic-labs/claudeflow 2.6.25 → 2.6.27

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 +4 -2
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -14,7 +14,8 @@ const TEMPLATE_SKILLS = new Set([
14
14
  'claudeflow-design-tokens',
15
15
  'claudeflow-create-ui',
16
16
  'claudeflow-checkpoints',
17
- 'claudeflow-add',
17
+ 'claudeflow-add-skill',
18
+ 'claudeflow-add-tools',
18
19
  'claudeflow-regen-skills',
19
20
  'claudeflow-regen-agents',
20
21
  ]);
@@ -205,7 +206,8 @@ function showGettingStarted(cwd) {
205
206
  console.log(` ${ui.CYAN}/claudeflow-design-tokens${ui.RESET} ${ui.DIM}Create design reference from a site or screenshot${ui.RESET}`);
206
207
  console.log(` ${ui.CYAN}/claudeflow-create-ui${ui.RESET} ${ui.DIM}Build pages from visual references${ui.RESET}`);
207
208
  console.log(` ${ui.CYAN}/claudeflow-checkpoints${ui.RESET} ${ui.DIM}Auto-save work with git checkpoints${ui.RESET}`);
208
- console.log(` ${ui.CYAN}/claudeflow-add${ui.RESET} ${ui.DIM}Add new technology skills (e.g. /claudeflow-add stripe)${ui.RESET}`);
209
+ console.log(` ${ui.CYAN}/claudeflow-add-skill${ui.RESET} ${ui.DIM}Add new technology skills (e.g. /claudeflow-add-skill stripe)${ui.RESET}`);
210
+ console.log(` ${ui.CYAN}/claudeflow-add-tools${ui.RESET} ${ui.DIM}Discover and install MCP servers + CLI tools${ui.RESET}`);
209
211
  console.log('');
210
212
  console.log(` ${ui.DIM}Docs: https://claudeflow.dev${ui.RESET}`);
211
213
  console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.6.25",
3
+ "version": "2.6.27",
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"