@axiomatic-labs/claudeflow 2.4.23 → 2.4.24

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 +0 -9
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -90,15 +90,6 @@ async function run() {
90
90
  // Ensure .claude/tmp exists
91
91
  fs.mkdirSync(path.join(cwd, '.claude', 'tmp'), { recursive: true });
92
92
 
93
- // CLAUDE.md — only copy on fresh install (updates generate it via /setup and /update skills)
94
- if (!isUpdate) {
95
- const srcClaude_md = path.join(tmpExtract, 'CLAUDE.md');
96
- const dstClaude_md = path.join(cwd, 'CLAUDE.md');
97
- if (fs.existsSync(srcClaude_md)) {
98
- fs.copyFileSync(srcClaude_md, dstClaude_md);
99
- }
100
- }
101
-
102
93
  // Write version file
103
94
  writeLocalVersion(version);
104
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.4.23",
3
+ "version": "2.4.24",
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"