claude-flow 2.7.26 ā 2.7.28
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/CHANGELOG.md +306 -0
- package/bin/claude-flow +60 -6
- package/dist/src/cli/simple-cli.js +79 -173
- package/dist/src/cli/simple-cli.js.map +1 -1
- package/dist/src/cli/simple-commands/init/index.js +0 -16
- package/dist/src/cli/simple-commands/init/index.js.map +1 -1
- package/dist/src/cli/simple-commands/memory.js +16 -1
- package/dist/src/cli/simple-commands/memory.js.map +1 -1
- package/dist/src/cli/validation-helper.js.map +1 -1
- package/dist/src/core/MCPIntegrator.js +0 -99
- package/dist/src/core/MCPIntegrator.js.map +1 -1
- package/dist/src/memory/swarm-memory.js +348 -416
- package/dist/src/memory/swarm-memory.js.map +1 -1
- package/dist/src/utils/metrics-reader.js +10 -0
- package/docs/V2.7.26_RELEASE_SUMMARY.md +454 -0
- package/docs/V2.7.27_RELEASE_NOTES.md +208 -0
- package/docs/V2.7.27_TEST_REPORT.md +259 -0
- package/docs/V2.7.28_RELEASE_NOTES.md +205 -0
- package/package.json +1 -1
- package/src/cli/simple-commands/init/index.js +0 -13
- package/src/cli/simple-commands/memory.js +16 -1
- package/src/core/MCPIntegrator.ts +0 -51
|
@@ -86,11 +86,6 @@ async function setupMcpServers(dryRun1 = false) {
|
|
|
86
86
|
name: 'flow-nexus',
|
|
87
87
|
command: 'npx flow-nexus@latest mcp start',
|
|
88
88
|
description: 'Flow Nexus Complete MCP server for advanced AI orchestration'
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
name: 'agentic-payments',
|
|
92
|
-
command: 'npx agentic-payments@latest mcp',
|
|
93
|
-
description: 'Agentic Payments MCP server for autonomous agent payment authorization'
|
|
94
89
|
}
|
|
95
90
|
];
|
|
96
91
|
for (const server of servers){
|
|
@@ -617,7 +612,6 @@ export async function initCommand(subArgs, flags) {
|
|
|
617
612
|
console.log(' claude mcp add claude-flow npx claude-flow@alpha mcp start');
|
|
618
613
|
console.log(' claude mcp add ruv-swarm npx ruv-swarm mcp start');
|
|
619
614
|
console.log(' claude mcp add flow-nexus npx flow-nexus@latest mcp start');
|
|
620
|
-
console.log(' claude mcp add agentic-payments npx agentic-payments@latest mcp');
|
|
621
615
|
}
|
|
622
616
|
}
|
|
623
617
|
} catch (err) {
|
|
@@ -1175,14 +1169,6 @@ async function enhancedClaudeFlowInit(flags, subArgs = []) {
|
|
|
1175
1169
|
'start'
|
|
1176
1170
|
],
|
|
1177
1171
|
type: 'stdio'
|
|
1178
|
-
},
|
|
1179
|
-
'agentic-payments': {
|
|
1180
|
-
command: 'npx',
|
|
1181
|
-
args: [
|
|
1182
|
-
'agentic-payments@latest',
|
|
1183
|
-
'mcp'
|
|
1184
|
-
],
|
|
1185
|
-
type: 'stdio'
|
|
1186
1172
|
}
|
|
1187
1173
|
}
|
|
1188
1174
|
};
|
|
@@ -1409,7 +1395,6 @@ ${commands.map((cmd)=>`- [${cmd}](./${cmd}.md)`).join('\n')}
|
|
|
1409
1395
|
console.log(' claude mcp add claude-flow npx claude-flow@alpha mcp start');
|
|
1410
1396
|
console.log(' claude mcp add ruv-swarm npx ruv-swarm@latest mcp start');
|
|
1411
1397
|
console.log(' claude mcp add flow-nexus npx flow-nexus@latest mcp start');
|
|
1412
|
-
console.log(' claude mcp add agentic-payments npx agentic-payments@latest mcp');
|
|
1413
1398
|
console.log('\n š” MCP servers are defined in .mcp.json (project scope)');
|
|
1414
1399
|
}
|
|
1415
1400
|
} else if (!dryRun1 && !isClaudeCodeInstalled()) {
|
|
@@ -1420,7 +1405,6 @@ ${commands.map((cmd)=>`- [${cmd}](./${cmd}.md)`).join('\n')}
|
|
|
1420
1405
|
console.log(' claude mcp add claude-flow@alpha npx claude-flow@alpha mcp start');
|
|
1421
1406
|
console.log(' claude mcp add ruv-swarm npx ruv-swarm@latest mcp start');
|
|
1422
1407
|
console.log(' claude mcp add flow-nexus npx flow-nexus@latest mcp start');
|
|
1423
|
-
console.log(' claude mcp add agentic-payments npx agentic-payments@latest mcp');
|
|
1424
1408
|
console.log('\n š” MCP servers are defined in .mcp.json (project scope)');
|
|
1425
1409
|
}
|
|
1426
1410
|
console.log('\nš¤ Setting up agent system...');
|