@axiomatic-labs/claudeflow 2.13.26 → 2.13.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 +9 -7
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -517,13 +517,15 @@ function showGettingStarted(cwd, cliStatus = { available: false, autoInstalled:
517
517
 
518
518
  console.log('');
519
519
  console.log(` ${ui.BOLD}Slash commands (inside Claude Code):${ui.RESET}`);
520
- console.log(` ${ui.CYAN}/claudeflow-install${ui.RESET} ${ui.DIM}Route setup automatically for new or existing projects${ui.RESET}`);
521
- console.log(` ${ui.CYAN}/claudeflow-build${ui.RESET} ${ui.DIM}Execute an approved spec for larger or higher-risk changes${ui.RESET}`);
522
- console.log(` ${ui.CYAN}/claudeflow-design-tokens${ui.RESET} ${ui.DIM}Create design reference from a site or screenshot${ui.RESET}`);
523
- console.log(` ${ui.CYAN}/claudeflow-create-ui${ui.RESET} ${ui.DIM}Build pages from visual references${ui.RESET}`);
524
- console.log(` ${ui.CYAN}/claudeflow-checkpoints${ui.RESET} ${ui.DIM}Auto-save work with git checkpoints${ui.RESET}`);
525
- console.log(` ${ui.CYAN}/claudeflow-add-skill${ui.RESET} ${ui.DIM}Add new technology skills (e.g. /claudeflow-add-skill stripe)${ui.RESET}`);
526
- console.log(` ${ui.CYAN}/claudeflow-add-tools${ui.RESET} ${ui.DIM}Discover and install MCP servers + CLI tools${ui.RESET}`);
520
+ console.log(` ${ui.CYAN}/claudeflow-install${ui.RESET} ${ui.DIM}Smart router scaffold a new project or update an existing one${ui.RESET}`);
521
+ console.log(` ${ui.CYAN}/claudeflow-build${ui.RESET} ${ui.DIM}Execute multi-file implementation requests with explicit verification${ui.RESET}`);
522
+ console.log(` ${ui.CYAN}/claudeflow-review${ui.RESET} ${ui.DIM}Senior review of a spec, request, or whole project${ui.RESET}`);
523
+ console.log(` ${ui.CYAN}/claudeflow-test${ui.RESET} ${ui.DIM}Run applicable test types with anti-falsification enforcement${ui.RESET}`);
524
+ console.log(` ${ui.CYAN}/claudeflow-ship${ui.RESET} ${ui.DIM}Release gate classify blockers and deploy when ready${ui.RESET}`);
525
+ console.log(` ${ui.CYAN}/claudeflow-design-init${ui.RESET} ${ui.DIM}Initialize design direction from reference sites or screenshots${ui.RESET}`);
526
+ console.log(` ${ui.CYAN}/claudeflow-prototype${ui.RESET} ${ui.DIM}Generate three UI direction prototypes via anchor-screen workflow${ui.RESET}`);
527
+ console.log(` ${ui.CYAN}/claudeflow-create-ui${ui.RESET} ${ui.DIM}Build pages or components from text, URLs, or plan files${ui.RESET}`);
528
+ console.log(` ${ui.CYAN}/claudeflow-regen-claudemd${ui.RESET} ${ui.DIM}Regenerate CLAUDE.md from the latest template + setup-context${ui.RESET}`);
527
529
  console.log('');
528
530
  console.log(` ${ui.BOLD}Shell commands (outside Claude Code):${ui.RESET}`);
529
531
  console.log(` ${ui.CYAN}claudeflow${ui.RESET} ${ui.DIM}Start Claude Code with this project's claudeflow context${ui.RESET}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.13.26",
3
+ "version": "2.13.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"