@clawos-dev/clawd 0.2.135 → 0.2.136-beta.286.f41a8a0
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/dist/cli.cjs +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -36775,7 +36775,7 @@ function buildTuiSpawnArgs(ctx, isResume = false) {
|
|
|
36775
36775
|
args.push(isResume ? "--resume" : "--session-id", ctx.toolSessionId);
|
|
36776
36776
|
}
|
|
36777
36777
|
if (ctx.model) args.push("--model", ctx.model);
|
|
36778
|
-
args.push("--permission-mode", ctx.permissionMode
|
|
36778
|
+
args.push("--permission-mode", ctx.permissionMode || "bypassPermissions");
|
|
36779
36779
|
if (ctx.effort) args.push("--effort", ctx.effort);
|
|
36780
36780
|
if (ctx.extraSettings) args.push("--settings", ctx.extraSettings);
|
|
36781
36781
|
return args;
|
package/package.json
CHANGED