@axiomatic-labs/claudeflow 2.0.15 → 2.0.17

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/lib/init.js CHANGED
@@ -106,12 +106,12 @@ async function run() {
106
106
  console.log(` 1. Run ${ui.CYAN}claude${ui.RESET} to start Claude Code`);
107
107
 
108
108
  if (isGreenfield) {
109
- console.log(` 2. Type ${ui.CYAN}/setup${ui.RESET} to scaffold your project`);
109
+ console.log(` 2. Type ${ui.CYAN}/claudeflow-init${ui.RESET} to scaffold your project`);
110
110
  console.log('');
111
111
  console.log(` ${ui.DIM}Claudeflow will ask what you want to build, research${ui.RESET}`);
112
112
  console.log(` ${ui.DIM}the best stack, and generate project-specific skills.${ui.RESET}`);
113
113
  } else if (isMultiStack) {
114
- console.log(` 2. Type ${ui.CYAN}/update${ui.RESET} to detect your stacks and generate project-specific skills`);
114
+ console.log(` 2. Type ${ui.CYAN}/claudeflow-update${ui.RESET} to detect your stacks and generate project-specific skills`);
115
115
  console.log('');
116
116
  ui.info(`Multi-stack project detected: ${stackDirs.join(', ')}${rootHasManifest ? ' + root' : ''}`);
117
117
  console.log('');
@@ -119,15 +119,17 @@ async function run() {
119
119
  console.log(` ${ui.DIM}Just describe what you want — Claudeflow handles the rest.${ui.RESET}`);
120
120
  } else {
121
121
  // Single-stack existing project
122
- console.log(` 2. Type ${ui.CYAN}/update${ui.RESET} to detect your stack and generate project-specific skills`);
122
+ console.log(` 2. Type ${ui.CYAN}/claudeflow-update${ui.RESET} to detect your stack and generate project-specific skills`);
123
123
  console.log(` 3. Tell Claude what you want — it handles the rest`);
124
124
  }
125
125
 
126
126
  console.log('');
127
127
  console.log(` ${ui.BOLD}Commands:${ui.RESET}`);
128
- console.log(` ${ui.CYAN}/setup${ui.RESET} ${ui.DIM}Scaffold a new project (greenfield)${ui.RESET}`);
129
- console.log(` ${ui.CYAN}/update${ui.RESET} ${ui.DIM}Detect stack and generate skills for existing project${ui.RESET}`);
130
- console.log(` ${ui.CYAN}/sdd${ui.RESET} ${ui.DIM}Generate a feature spec (Spec-Driven Development)${ui.RESET}`);
128
+ console.log(` ${ui.CYAN}/claudeflow-init${ui.RESET} ${ui.DIM}Scaffold a new project (greenfield)${ui.RESET}`);
129
+ console.log(` ${ui.CYAN}/claudeflow-update${ui.RESET} ${ui.DIM}Detect stack and generate skills for existing project${ui.RESET}`);
130
+ console.log(` ${ui.CYAN}/claudeflow-sdd${ui.RESET} ${ui.DIM}Generate a feature spec (Spec-Driven Development)${ui.RESET}`);
131
+ console.log(` ${ui.CYAN}/claudeflow-design-tokens${ui.RESET} ${ui.DIM}Create design reference from a site or screenshot${ui.RESET}`);
132
+ console.log(` ${ui.CYAN}/claudeflow-create-ui${ui.RESET} ${ui.DIM}Build pages from visual references${ui.RESET}`);
131
133
  console.log('');
132
134
  console.log(` ${ui.DIM}Docs: https://claudeflow.dev${ui.RESET}`);
133
135
  console.log('');
package/lib/manifest.js CHANGED
@@ -7,6 +7,8 @@ const TEMPLATE_PREFIXES = [
7
7
  '.claude/skills/claudeflow-init/',
8
8
  '.claude/skills/claudeflow-update/',
9
9
  '.claude/skills/claudeflow-sdd/',
10
+ '.claude/skills/claudeflow-design-tokens/',
11
+ '.claude/skills/claudeflow-create-ui/',
10
12
  '.claude/docs/',
11
13
  '.claude/hooks/',
12
14
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
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"