@axiomatic-labs/claudeflow 2.0.29 → 2.0.31

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
@@ -43,7 +43,7 @@ async function run() {
43
43
 
44
44
  try {
45
45
  ui.step('Extracting template files...');
46
- execSync(`unzip -o "${tmpZip}" ".claude/*" "CLAUDE.md" -d "${process.cwd()}"`, { stdio: 'pipe' });
46
+ execSync(`unzip -o "${tmpZip}" ".claude/*" -d "${process.cwd()}"`, { stdio: 'pipe' });
47
47
  } finally {
48
48
  fs.unlinkSync(tmpZip);
49
49
  }
@@ -127,7 +127,6 @@ async function run() {
127
127
  console.log(` ${ui.BOLD}Commands:${ui.RESET}`);
128
128
  console.log(` ${ui.CYAN}/claudeflow-init${ui.RESET} ${ui.DIM}Scaffold a new project (greenfield)${ui.RESET}`);
129
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
130
  console.log(` ${ui.CYAN}/claudeflow-design-tokens${ui.RESET} ${ui.DIM}Create design reference from a site or screenshot${ui.RESET}`);
132
131
  console.log(` ${ui.CYAN}/claudeflow-create-ui${ui.RESET} ${ui.DIM}Build pages from visual references${ui.RESET}`);
133
132
  console.log('');
package/lib/manifest.js CHANGED
@@ -3,10 +3,8 @@
3
3
 
4
4
  // Directory prefixes: any file under these paths is template-managed.
5
5
  const TEMPLATE_PREFIXES = [
6
- '.claude/skills/claudeflow/',
7
6
  '.claude/skills/claudeflow-init/',
8
7
  '.claude/skills/claudeflow-update/',
9
- '.claude/skills/claudeflow-sdd/',
10
8
  '.claude/skills/claudeflow-design-tokens/',
11
9
  '.claude/skills/claudeflow-create-ui/',
12
10
  '.claude/docs/',
@@ -15,7 +13,6 @@ const TEMPLATE_PREFIXES = [
15
13
 
16
14
  // Exact file paths that are template-managed.
17
15
  const TEMPLATE_FILES = [
18
- 'CLAUDE.md',
19
16
  '.claude/settings.json',
20
17
  ];
21
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.0.29",
3
+ "version": "2.0.31",
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"