v2/docs/V2.7.28_RELEASE_NOTES.md
Release Date: 2025-11-06 Type: Enhancement Release Priority: Medium Related Issue: #857
Removed automatic installation of agentic-payments MCP server from the init process. Payment integrations are now opt-in, giving users more control over which tools are installed.
src/cli/simple-commands/init/index.js:104-120)src/cli/simple-commands/init/index.js:1440-1459)src/cli/simple-commands/init/index.js)src/core/MCPIntegrator.ts:153-202)File: tests/docker/Dockerfile.init-test
Test Scenarios:
Run Tests:
# Build test image
docker build -f tests/docker/Dockerfile.init-test -t claude-flow-init-test:v2.7.28 .
# Run tests
docker run --rm claude-flow-init-test:v2.7.28
Manual Installation:
# After running init, add agentic-payments manually
claude mcp add agentic-payments npx agentic-payments@latest mcp
Or Add to .mcp.json:
{
"mcpServers": {
"claude-flow@alpha": { ... },
"ruv-swarm": { ... },
"flow-nexus": { ... },
"agentic-payments": {
"command": "npx",
"args": ["agentic-payments@latest", "mcp"],
"type": "stdio"
}
}
}
No Action Required if you don't use agentic-payments.
If You Use Agentic-Payments:
Modified:
• src/cli/simple-commands/init/index.js
• src/core/MCPIntegrator.ts
• bin/claude-flow (version bump)
• package.json (version bump)
Created:
• tests/docker/Dockerfile.init-test
• docs/V2.7.28_RELEASE_NOTES.md
# Next run uses v2.7.28
npx claude-flow@latest init
npm update -g claude-flow
# Verify version
claude-flow --version # Should show v2.7.28
tests/docker/Dockerfile.init-testPotential improvements for future versions:
If you have questions about this change:
We'd love to hear:
Full Changelog: v2.7.27...v2.7.28