humanish 0.50.0 → 0.52.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 +29 -2
- 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/lab-summary.d.ts +36 -0
- package/dist/lab-summary.js +86 -0
- package/dist/lab-summary.js.map +1 -0
- 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 +8 -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 +135 -135
- package/dist/tui-contract.d.ts +17 -0
- package/dist/tui-contract.js.map +1 -1
- package/dist/tui-project.d.ts +9 -0
- package/dist/tui-project.js +18 -0
- package/dist/tui-project.js.map +1 -0
- 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
|
@@ -25,6 +25,9 @@ import { cleanupOssMetaLabSandboxes, cleanupStaleOssMetaLabSandboxes, runOssMeta
|
|
|
25
25
|
import { cleanupRun, doctor, listRuns, readReview, runDryRun, verifyRun } from "./run.js";
|
|
26
26
|
import { reclaimRunSandboxes } from "./reclaim.js";
|
|
27
27
|
import { RunIndexCache, readRunIndex } from "./run-index.js";
|
|
28
|
+
import { readLabSummary } from "./lab-summary.js";
|
|
29
|
+
import { readProjectState } from "./tui-project.js";
|
|
30
|
+
import { openObserverArtifact } from "./tui-actions.js";
|
|
28
31
|
import { readRunDetail } from "./run-detail.js";
|
|
29
32
|
import { launchRun, readLaunchLogTail } from "./tui-launch.js";
|
|
30
33
|
import { TUI_MIN_NODE_MAJOR, nodeSupportsTui, tuiBundleUrl } from "./tui-contract.js";
|
|
@@ -331,7 +334,11 @@ function registerTuiCommand(parent, io) {
|
|
|
331
334
|
listLabs: listLabManifests,
|
|
332
335
|
startRun: launchRun,
|
|
333
336
|
readLaunchLog: readLaunchLogTail,
|
|
334
|
-
readRunDetail
|
|
337
|
+
readRunDetail,
|
|
338
|
+
readLabSummary,
|
|
339
|
+
readProjectState,
|
|
340
|
+
openObserver: openObserverArtifact,
|
|
341
|
+
reclaimRun: (target, runId) => reclaimRunSandboxes(target, runId)
|
|
335
342
|
},
|
|
336
343
|
stdin,
|
|
337
344
|
stdout
|