@sylphx/flow 2.1.8 → 2.1.9
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 +6 -0
- package/package.json +1 -1
- package/src/targets/claude-code.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.1.9 (2025-11-28)
|
|
4
|
+
|
|
5
|
+
### 🐛 Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **mcp:** use process.cwd() instead of undefined cwd variable ([aa99db0](https://github.com/SylphxAI/flow/commit/aa99db0a96bb333c38da3c73c325fddf124948d8))
|
|
8
|
+
|
|
3
9
|
## 2.1.8 (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.
|
|
3
|
+
"version": "2.1.9",
|
|
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": {
|
|
@@ -208,7 +208,7 @@ Please begin your response with a comprehensive summary of all the instructions
|
|
|
208
208
|
const args = ['--dangerously-skip-permissions'];
|
|
209
209
|
|
|
210
210
|
// Add MCP config flag to explicitly load project MCP servers
|
|
211
|
-
const mcpConfigPath = path.join(cwd, this.config.configFile);
|
|
211
|
+
const mcpConfigPath = path.join(process.cwd(), this.config.configFile);
|
|
212
212
|
args.push('--mcp-config', mcpConfigPath);
|
|
213
213
|
|
|
214
214
|
// Add print and continue flags
|