@odla-ai/harness 0.10.0 → 0.10.2
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/{chunk-U324RQ4N.js → chunk-CPV7ZVHH.js} +1 -1
- package/dist/{chunk-U324RQ4N.js.map → chunk-CPV7ZVHH.js.map} +1 -1
- package/dist/{chunk-OZBJNTML.js → chunk-ESLFS3FY.js} +4 -4
- package/dist/{chunk-5LRYJKUI.js → chunk-FUDTSAOZ.js} +3 -3
- package/dist/{chunk-VDY5V7ZG.js → chunk-JV45JAAW.js} +3 -3
- package/dist/chunk-JV45JAAW.js.map +1 -0
- package/dist/{chunk-FAN2R3GW.js → chunk-KXFI3WM2.js} +5 -1
- package/dist/chunk-KXFI3WM2.js.map +1 -0
- package/dist/{chunk-5MDYIJXC.js → chunk-VIZALA6O.js} +643 -67
- package/dist/chunk-VIZALA6O.js.map +1 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +4 -4
- package/dist/code-runtime-cli.cjs +706 -125
- package/dist/code-runtime-cli.cjs.map +1 -1
- package/dist/code-runtime-cli.js +5 -5
- package/dist/index.cjs +5 -1
- 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 +3 -3
- package/dist/node.cjs +713 -130
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +41 -6
- package/dist/node.d.ts +41 -6
- package/dist/node.js +8 -6
- package/dist/node.js.map +1 -1
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +1 -1
- package/dist/{types-_8y8vBDI.d.ts → types-ocy70g_p.d.cts} +1 -1
- package/dist/{types-_8y8vBDI.d.cts → types-ocy70g_p.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/chunk-5MDYIJXC.js.map +0 -1
- package/dist/chunk-FAN2R3GW.js.map +0 -1
- package/dist/chunk-VDY5V7ZG.js.map +0 -1
- /package/dist/{chunk-OZBJNTML.js.map → chunk-ESLFS3FY.js.map} +0 -0
- /package/dist/{chunk-5LRYJKUI.js.map → chunk-FUDTSAOZ.js.map} +0 -0
|
@@ -246,7 +246,7 @@ type CodeSessionEvent = CodeSessionEventData & {
|
|
|
246
246
|
createdAt: number;
|
|
247
247
|
};
|
|
248
248
|
/** Closed set of effects an agent container may request from its trusted broker. */
|
|
249
|
-
type HarnessToolName = "sandbox.read" | "sandbox.list" | "sandbox.search" | "sandbox.overview" | "sandbox.where_is" | "sandbox.who_imports" | "sandbox.who_touches" | "sandbox.apply_patch" | "sandbox.run_recipe";
|
|
249
|
+
type HarnessToolName = "sandbox.read" | "sandbox.list" | "sandbox.search" | "sandbox.overview" | "sandbox.where_is" | "sandbox.who_imports" | "sandbox.who_touches" | "sandbox.apply_patch" | "sandbox.edit" | "sandbox.run_recipe";
|
|
250
250
|
/** Correlated, structured tool request emitted by an untrusted agent container. */
|
|
251
251
|
interface HarnessToolRequest {
|
|
252
252
|
requestId: string;
|
|
@@ -246,7 +246,7 @@ type CodeSessionEvent = CodeSessionEventData & {
|
|
|
246
246
|
createdAt: number;
|
|
247
247
|
};
|
|
248
248
|
/** Closed set of effects an agent container may request from its trusted broker. */
|
|
249
|
-
type HarnessToolName = "sandbox.read" | "sandbox.list" | "sandbox.search" | "sandbox.overview" | "sandbox.where_is" | "sandbox.who_imports" | "sandbox.who_touches" | "sandbox.apply_patch" | "sandbox.run_recipe";
|
|
249
|
+
type HarnessToolName = "sandbox.read" | "sandbox.list" | "sandbox.search" | "sandbox.overview" | "sandbox.where_is" | "sandbox.who_imports" | "sandbox.who_touches" | "sandbox.apply_patch" | "sandbox.edit" | "sandbox.run_recipe";
|
|
250
250
|
/** Correlated, structured tool request emitted by an untrusted agent container. */
|
|
251
251
|
interface HarnessToolRequest {
|
|
252
252
|
requestId: string;
|
package/package.json
CHANGED