@sylphx/flow 2.1.10 → 2.1.11

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 2.1.11 (2025-11-29)
4
+
5
+ ### 🐛 Bug Fixes
6
+
7
+ - **mcp:** remove --mcp-config flag, rely on project .mcp.json ([b11af31](https://github.com/SylphxAI/flow/commit/b11af31b1f31551e820e03d6a9404382656aef93))
8
+
3
9
  ## 2.1.10 (2025-11-28)
4
10
 
5
11
  ### 🐛 Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "description": "One CLI to rule them all. Unified orchestration layer for Claude Code, OpenCode, Cursor and all AI development tools. Auto-detection, auto-installation, auto-upgrade.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -207,9 +207,8 @@ Please begin your response with a comprehensive summary of all the instructions
207
207
  // Build arguments
208
208
  const args = ['--dangerously-skip-permissions'];
209
209
 
210
- // Add MCP config flag to explicitly load project MCP servers
211
- const mcpConfigPath = path.join(process.cwd(), this.config.configFile);
212
- args.push('--mcp-config', mcpConfigPath);
210
+ // MCP servers are loaded automatically from .mcp.json at project root
211
+ // (written by attach-manager before executing Claude Code)
213
212
 
214
213
  // Add print and continue flags
215
214
  if (options.print) {