@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.
- package/CHANGELOG.md +11 -0
- package/dist/a2a/index.cjs +2 -1
- package/dist/a2a/index.cjs.map +1 -1
- package/dist/a2a/index.js +2 -1
- package/dist/a2a/index.js.map +1 -1
- package/dist/a2a/subagent.d.cts +24 -2
- package/dist/a2a/subagent.d.ts +24 -2
- package/dist/{cron-CWQPZTwX.d.cts → cron-26WH1n7o.d.cts} +9 -0
- package/dist/{cron-DVM9f1I_.d.ts → cron-D_0p_gXd.d.ts} +9 -0
- package/dist/cron.cjs +79 -18
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.d.cts +1 -1
- package/dist/cron.d.ts +1 -1
- package/dist/cron.js +79 -18
- package/dist/cron.js.map +1 -1
- package/dist/eval.cjs +79 -18
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.js +79 -18
- package/dist/eval.js.map +1 -1
- package/dist/index.cjs +79 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +79 -18
- package/dist/index.js.map +1 -1
- package/dist/types/agent.d.ts +9 -0
- package/package.json +1 -1
package/dist/types/agent.d.ts
CHANGED
|
@@ -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