claude-flow 2.0.0-alpha.7 ā 2.0.0-alpha.8
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/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
5
|
[](https://github.com/ruvnet/claude-code-flow)
|
|
6
|
-
[](https://www.npmjs.com/package/claude-flow)
|
|
7
7
|
[](https://github.com/ruvnet/claude-code-flow)
|
|
8
8
|
[](https://github.com/ruvnet/ruv-FANN)
|
|
9
9
|
[](https://github.com/ruvnet/claude-code-flow)
|
|
@@ -50,7 +50,7 @@ Instead of promising "AI magic," Claude Flow delivers practical improvements:
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## š **What's New in v2.0.0-alpha.
|
|
53
|
+
## š **What's New in v2.0.0-alpha.7**
|
|
54
54
|
|
|
55
55
|
### š **Automatic MCP Setup (NEW!)**
|
|
56
56
|
- **Smart Detection** - Automatically detects Claude Code CLI installation
|
package/package.json
CHANGED
|
@@ -494,12 +494,12 @@ export async function initCommand(subArgs, flags) {
|
|
|
494
494
|
console.log(' ⢠Monitor performance with real-time metrics');
|
|
495
495
|
}
|
|
496
496
|
|
|
497
|
-
// Check for Claude Code and set up MCP servers
|
|
497
|
+
// Check for Claude Code and set up MCP servers (always enabled by default)
|
|
498
498
|
if (!initDryRun && isClaudeCodeInstalled()) {
|
|
499
499
|
console.log('\nš Claude Code CLI detected!');
|
|
500
|
-
const
|
|
500
|
+
const skipMcp = subArgs && subArgs.includes && subArgs.includes('--skip-mcp');
|
|
501
501
|
|
|
502
|
-
if (
|
|
502
|
+
if (!skipMcp) {
|
|
503
503
|
await setupMcpServers(initDryRun);
|
|
504
504
|
} else {
|
|
505
505
|
console.log(' ā¹ļø Skipping MCP setup (--skip-mcp flag used)');
|
|
@@ -1099,15 +1099,15 @@ ${commands.map(cmd => `- [${cmd}](./${cmd}.md)`).join('\n')}
|
|
|
1099
1099
|
printSuccess('ā Initialized memory system');
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
-
// Check for Claude Code and set up MCP servers
|
|
1102
|
+
// Check for Claude Code and set up MCP servers (always enabled by default)
|
|
1103
1103
|
if (!dryRun && isClaudeCodeInstalled()) {
|
|
1104
1104
|
console.log('\nš Claude Code CLI detected!');
|
|
1105
|
-
const
|
|
1105
|
+
const skipMcp = (flags && flags['skip-mcp']) || (subArgs && subArgs.includes && subArgs.includes('--skip-mcp'));
|
|
1106
1106
|
|
|
1107
|
-
if (
|
|
1107
|
+
if (!skipMcp) {
|
|
1108
1108
|
await setupMcpServers(dryRun);
|
|
1109
1109
|
} else {
|
|
1110
|
-
console.log(' ā¹ļø Skipping MCP setup (
|
|
1110
|
+
console.log(' ā¹ļø Skipping MCP setup (--skip-mcp flag used)');
|
|
1111
1111
|
console.log('\n š To add MCP servers manually:');
|
|
1112
1112
|
console.log(' claude mcp add claude-flow claude-flow mcp start');
|
|
1113
1113
|
console.log(' claude mcp add ruv-swarm npx ruv-swarm mcp start');
|