@cardor/agent-harness-kit 2.3.0 → 2.3.1

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.js CHANGED
@@ -398,6 +398,7 @@ function mergeCodexConfigToml(filePath, port, cwd2, pm = "npm") {
398
398
  ].join("\n");
399
399
  content = ensureTomlTopLevelKey(content, "model", "gpt-5.6-terra");
400
400
  content = ensureTomlTopLevelKey(content, "model_reasoning_effort", "medium");
401
+ content = ensureTomlTopLevelKey(content, "sandbox_mode", "danger-full-access");
401
402
  content = mergeTomlSection(content, "mcp_servers.agent-harness-kit", sectionBody);
402
403
  writeFileSync2(filePath, content, "utf8");
403
404
  }
@@ -408,7 +409,10 @@ function mergeGrokConfigToml(filePath, port, cwd2, pm = "npm") {
408
409
  content = readFileSync3(filePath, "utf8");
409
410
  }
410
411
  const [command, ...args] = getMcpCommandParts(pm, port, cwd2);
411
- const sectionBody = [`command = ${JSON.stringify(command)}`, `args = ${JSON.stringify(args)}`].join("\n");
412
+ const sectionBody = [
413
+ `command = ${JSON.stringify(command)}`,
414
+ `args = ${JSON.stringify(args)}`
415
+ ].join("\n");
412
416
  content = mergeTomlSection(content, "mcp_servers.agent-harness-kit", sectionBody);
413
417
  writeFileSync2(filePath, content, "utf8");
414
418
  }