claude-bridge-cli 1.1.3 → 1.1.4
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/lib/bridge.js +1 -1
- package/package.json +1 -1
package/lib/bridge.js
CHANGED
|
@@ -339,7 +339,7 @@ function askClaude(config, { prompt, session_id, images, cwd, plan_mode, allow_t
|
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
const args = ["-p", "
|
|
342
|
+
const args = ["-p", "--output-format", "json"];
|
|
343
343
|
if (session_id) args.push("--session-id", session_id);
|
|
344
344
|
if (plan_mode) args.push("--plan");
|
|
345
345
|
|
package/package.json
CHANGED