@axiomatic-labs/claudeflow 2.12.264 → 2.12.266
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/install.js +7 -0
- package/package.json +1 -1
package/lib/install.js
CHANGED
|
@@ -104,7 +104,10 @@ async function run() {
|
|
|
104
104
|
} catch {
|
|
105
105
|
// File doesn't exist or is invalid JSON — start fresh with empty servers
|
|
106
106
|
}
|
|
107
|
+
// Spread first so user-added fields (env with API keys, cwd, etc.) survive.
|
|
108
|
+
// Only command/args are CLI-canonical and get overridden.
|
|
107
109
|
mcpConfig.mcpServers.playwright = {
|
|
110
|
+
...mcpConfig.mcpServers.playwright,
|
|
108
111
|
command: "npx",
|
|
109
112
|
args: [
|
|
110
113
|
"@playwright/mcp@latest",
|
|
@@ -598,7 +601,9 @@ function configureMcpServers(hasUv) {
|
|
|
598
601
|
'--project-from-cwd',
|
|
599
602
|
];
|
|
600
603
|
ui.step(mcpConfig.mcpServers.serena ? 'Refreshing Serena MCP configuration...' : 'Adding Serena MCP for semantic code analysis...');
|
|
604
|
+
// Spread first so user-added fields (env with API keys, cwd, etc.) survive.
|
|
601
605
|
mcpConfig.mcpServers.serena = {
|
|
606
|
+
...mcpConfig.mcpServers.serena,
|
|
602
607
|
type: 'stdio',
|
|
603
608
|
command: serenaCommand,
|
|
604
609
|
args: serenaArgs,
|
|
@@ -609,7 +614,9 @@ function configureMcpServers(hasUv) {
|
|
|
609
614
|
|
|
610
615
|
// context7 MCP
|
|
611
616
|
ui.step(mcpConfig.mcpServers.context7 ? 'Refreshing context7 MCP configuration...' : 'Adding context7 MCP for library documentation...');
|
|
617
|
+
// Spread first so user-added fields (env with API keys, cwd, etc.) survive.
|
|
612
618
|
mcpConfig.mcpServers.context7 = {
|
|
619
|
+
...mcpConfig.mcpServers.context7,
|
|
613
620
|
type: 'stdio',
|
|
614
621
|
command: 'npx',
|
|
615
622
|
args: ['-y', '@upstash/context7-mcp@latest'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.266",
|
|
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"
|