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/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