humanish 0.46.0 → 0.48.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/dist/actor-contract.d.ts +10 -0
- package/dist/actor-contract.js.map +1 -1
- package/dist/computer-use-actor.d.ts +3 -1
- package/dist/computer-use-actor.js +2 -1
- package/dist/computer-use-actor.js.map +1 -1
- package/dist/computer-use.d.ts +10 -1
- package/dist/computer-use.js +27 -14
- package/dist/computer-use.js.map +1 -1
- package/dist/concurrent-shared-world-lab.js +37 -7
- package/dist/concurrent-shared-world-lab.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +17 -2
- package/dist/cua-actor-lab.js +146 -6
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/observer-app.html +5 -5
- package/dist/run.d.ts +15 -1
- package/dist/run.js.map +1 -1
- package/docs/contracts/schemas.md +6 -2
- package/docs/goals/current.md +29 -25
- package/docs/ramp/README.md +1 -1
- package/package.json +2 -2
package/dist/run.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type CodexAppServerTrace } from "./codex-app-server.js";
|
|
2
|
-
import { type ActorStatus, type ActorTrace } from "./actor-contract.js";
|
|
2
|
+
import { type ActorStatus, type ActorTrace, type ActorTraceItem } from "./actor-contract.js";
|
|
3
3
|
import type { TaskFunnel } from "./tasks.js";
|
|
4
4
|
import { type CapturedGitState } from "./core/git-state.js";
|
|
5
5
|
import type { E2BDesktopModule } from "./e2b-desktop-launch.js";
|
|
@@ -358,6 +358,20 @@ export interface RunStream {
|
|
|
358
358
|
turnId?: string;
|
|
359
359
|
};
|
|
360
360
|
actor?: ActorTrace;
|
|
361
|
+
/**
|
|
362
|
+
* Mid-run partial actor evidence (#441): the redacted trace items recorded SO FAR,
|
|
363
|
+
* flushed while a live lane is still running so the attached Observer's timeline can
|
|
364
|
+
* grow. Deliberately NOT an ActorTrace — a running lane has no honest status,
|
|
365
|
+
* completionReason, or completedAt, and this shape cannot claim them. Present ONLY on
|
|
366
|
+
* `inProgress` bundles; the final write replaces it with the real `actor` and never
|
|
367
|
+
* carries it.
|
|
368
|
+
*/
|
|
369
|
+
liveActor?: {
|
|
370
|
+
schema: "humanish.live-actor.v1";
|
|
371
|
+
/** When this flush was written (ISO-8601). */
|
|
372
|
+
updatedAt: string;
|
|
373
|
+
items: ActorTraceItem[];
|
|
374
|
+
};
|
|
361
375
|
completion?: RunStreamCompletion;
|
|
362
376
|
artifacts: Array<{
|
|
363
377
|
label: string;
|