@axiomatic-labs/claudeflow 2.4.5 → 2.4.7

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 -7
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -99,13 +99,6 @@ async function run() {
99
99
  }
100
100
  }
101
101
 
102
- // Copy .mcp.json to project root
103
- const srcMcp = path.join(tmpExtract, '.mcp.json');
104
- const dstMcp = path.join(cwd, '.mcp.json');
105
- if (fs.existsSync(srcMcp)) {
106
- fs.copyFileSync(srcMcp, dstMcp);
107
- }
108
-
109
102
  // Write version file
110
103
  writeLocalVersion(version);
111
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
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"