@axiomatic-labs/claudeflow 2.10.193 → 2.10.194

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 +7 -7
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -77,6 +77,13 @@ async function run() {
77
77
  fs.copyFileSync(srcSettings, dstSettings);
78
78
  }
79
79
 
80
+ // Copy .mcp.json (MCP server config)
81
+ const srcMcp = path.join(path.dirname(srcClaude), '.mcp.json');
82
+ const dstMcp = path.join(cwd, '.mcp.json');
83
+ if (fs.existsSync(srcMcp)) {
84
+ fs.copyFileSync(srcMcp, dstMcp);
85
+ }
86
+
80
87
  // Copy all template-managed skills from the ZIP, including subskills.
81
88
  const srcSkills = path.join(srcClaude, 'skills');
82
89
  const dstSkills = path.join(cwd, '.claude', 'skills');
@@ -126,13 +133,6 @@ async function run() {
126
133
  }
127
134
  }
128
135
 
129
- // Copy browser observer extension
130
- const srcExtension = path.join(srcClaude, 'browser-observer-extension');
131
- const dstExtension = path.join(cwd, '.claude', 'browser-observer-extension');
132
- if (fs.existsSync(srcExtension)) {
133
- copyDirSync(srcExtension, dstExtension);
134
- }
135
-
136
136
  // Copy rules
137
137
  const srcRules = path.join(srcClaude, 'rules');
138
138
  const dstRules = path.join(cwd, '.claude', 'rules');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.10.193",
3
+ "version": "2.10.194",
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"