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