humanish 0.51.0 → 0.53.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/concurrent-shared-world-lab.d.ts +7 -0
- package/dist/concurrent-shared-world-lab.js +11 -1
- package/dist/concurrent-shared-world-lab.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +7 -0
- package/dist/cua-actor-lab.js +11 -1
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/e2b-terminal-lab.d.ts +7 -0
- package/dist/e2b-terminal-lab.js +11 -1
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/oss-meta-lab.d.ts +7 -0
- package/dist/oss-meta-lab.js +11 -1
- package/dist/oss-meta-lab.js.map +1 -1
- package/dist/program.js +4 -1
- package/dist/program.js.map +1 -1
- package/dist/scripted-browser-lab.d.ts +7 -0
- package/dist/scripted-browser-lab.js +11 -1
- package/dist/scripted-browser-lab.js.map +1 -1
- package/dist/shared-world-lab.d.ts +7 -0
- package/dist/shared-world-lab.js +11 -1
- package/dist/shared-world-lab.js.map +1 -1
- package/dist/tui-actions.d.ts +16 -0
- package/dist/tui-actions.js +68 -0
- package/dist/tui-actions.js.map +1 -0
- package/dist/tui-app.js +131 -131
- package/dist/tui-contract.d.ts +6 -0
- package/dist/tui-contract.js.map +1 -1
- package/docs/contracts/schemas.md +1 -1
- package/docs/goals/current.md +2 -2
- package/docs/ramp/README.md +1 -1
- package/package.json +1 -1
package/dist/program.js
CHANGED
|
@@ -27,6 +27,7 @@ import { reclaimRunSandboxes } from "./reclaim.js";
|
|
|
27
27
|
import { RunIndexCache, readRunIndex } from "./run-index.js";
|
|
28
28
|
import { readLabSummary } from "./lab-summary.js";
|
|
29
29
|
import { readProjectState } from "./tui-project.js";
|
|
30
|
+
import { openObserverArtifact } from "./tui-actions.js";
|
|
30
31
|
import { readRunDetail } from "./run-detail.js";
|
|
31
32
|
import { launchRun, readLaunchLogTail } from "./tui-launch.js";
|
|
32
33
|
import { TUI_MIN_NODE_MAJOR, nodeSupportsTui, tuiBundleUrl } from "./tui-contract.js";
|
|
@@ -335,7 +336,9 @@ function registerTuiCommand(parent, io) {
|
|
|
335
336
|
readLaunchLog: readLaunchLogTail,
|
|
336
337
|
readRunDetail,
|
|
337
338
|
readLabSummary,
|
|
338
|
-
readProjectState
|
|
339
|
+
readProjectState,
|
|
340
|
+
openObserver: openObserverArtifact,
|
|
341
|
+
reclaimRun: (target, runId) => reclaimRunSandboxes(target, runId)
|
|
339
342
|
},
|
|
340
343
|
stdin,
|
|
341
344
|
stdout
|