@theokit/sdk 4.5.1 → 4.6.0

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.
@@ -97,6 +97,15 @@ export interface AgentDefinition {
97
97
  * parent's full toolset). Apply with `withSubagentToolScope`.
98
98
  */
99
99
  tools?: string[];
100
+ /**
101
+ * Per-subagent shell sandbox toggle. When `true`, the spawned child runs with
102
+ * `local.sandboxOptions.enabled = true` (the SDK's boolean shell sandbox). Absent
103
+ * ⇒ inherit the parent's sandbox posture. The SDK has no granular sandbox *mode*
104
+ * (read-only / workspace-write / danger); a mode string in the disk frontmatter is
105
+ * a typed load error, not a silent boolean coercion. Reasoning effort is NOT a
106
+ * field here — it rides inside `model.params` (e.g. `[{ id: "thinking", value: "low" }]`).
107
+ */
108
+ sandbox?: boolean;
100
109
  }
101
110
  /**
102
111
  * Public view of a recalled memory fact exposed to the system-prompt resolver.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk",
3
- "version": "4.5.1",
3
+ "version": "4.6.0",
4
4
  "description": "TypeScript SDK for the Theo agent harness — same surface, local or cloud.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/usetheodev/theokit-sdk#readme",