@rulvar/cli 1.230.0 → 1.232.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/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { r as runCli, t as processIo } from "./io-OKD0hUpc.js";
2
+ import { r as runCli, t as processIo } from "./io-KRkYIeo8.js";
3
3
  import { sanitizeTerminalText } from "@rulvar/core";
4
4
  import { inspect } from "node:util";
5
5
  //#region src/cli.ts
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as assembleEngine, a as inspectCommand, b as looksLikeFile, c as resumeCommand, d as driveRun, f as reportOutcome, g as DEFAULT_STORE_DIR, h as renderEventLine, i as costAuditCommand, l as runCommand, m as attachProgress, n as HELP, o as invoiceCommand, p as strictExitCode, r as runCli, s as preflightCommand, t as processIo, u as runsLsCommand, v as loadCliConfig, y as loadWorkflowModule } from "./io-OKD0hUpc.js";
1
+ import { _ as assembleEngine, a as inspectCommand, b as looksLikeFile, c as resumeCommand, d as driveRun, f as reportOutcome, g as DEFAULT_STORE_DIR, h as renderEventLine, i as costAuditCommand, l as runCommand, m as attachProgress, n as HELP, o as invoiceCommand, p as strictExitCode, r as runCli, s as preflightCommand, t as processIo, u as runsLsCommand, v as loadCliConfig, y as loadWorkflowModule } from "./io-KRkYIeo8.js";
2
2
  import { ConfigError, JournalCompatibilityError, LeaseHeldError, Replayer, RulvarError, buildDeriverRegistry, compileSecretMasker, costReportFromJournal, journalPricingSnapshot, maskSecrets, normalizeEntry, persistedTerminalEnvelope, readRunMeta, scanJournalCompatibility, validateDetachedResolution } from "@rulvar/core";
3
3
  //#region src/server.ts
4
4
  /**
@@ -1276,6 +1276,8 @@ async function inspectCommand(argv, context) {
1276
1276
  if (belowFloor.length > 0) context.io.out(` settled ok below their declared evidence floor: ${belowFloor.length} (handle${belowFloor.length === 1 ? "" : "s"} ${belowFloor.map((child) => String(child.handle)).join(", ")})`);
1277
1277
  const unsettled = roster.children.filter((child) => child.status === void 0);
1278
1278
  if (unsettled.length > 0) context.io.out(` dispatched with no terminal in the journal: ${unsettled.length} (handle${unsettled.length === 1 ? "" : "s"} ${unsettled.map((child) => String(child.handle)).join(", ")})`);
1279
+ const discarded = roster.children.filter((child) => child.abandoned === true);
1280
+ if (discarded.length > 0) context.io.out(` on branches the run ABANDONED: ${discarded.length} (handle${discarded.length === 1 ? "" : "s"} ${discarded.map((child) => String(child.handle)).join(", ")})`);
1279
1281
  }
1280
1282
  const rejected = settled?.rejectedFinishCandidates ?? [];
1281
1283
  if (rejected.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/cli",
3
- "version": "1.230.0",
3
+ "version": "1.232.0",
4
4
  "description": "Rulvar shell: run/resume/runs/inspect/plan/kb commands, TUI progress, createServer, createWorker, OTel exporter.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -22,17 +22,17 @@
22
22
  "access": "public"
23
23
  },
24
24
  "dependencies": {
25
- "@rulvar/core": "1.230.0"
25
+ "@rulvar/core": "1.232.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.20.1",
29
29
  "tsdown": "^0.22.14",
30
30
  "typescript": "~6.0.3",
31
- "@rulvar/testing": "1.230.0",
32
- "@rulvar/planner": "1.230.0",
33
- "@rulvar/store-sqlite": "1.230.0",
34
- "@rulvar/evals": "1.230.0",
35
- "@rulvar/plan": "1.230.0"
31
+ "@rulvar/testing": "1.232.0",
32
+ "@rulvar/store-sqlite": "1.232.0",
33
+ "@rulvar/plan": "1.232.0",
34
+ "@rulvar/evals": "1.232.0",
35
+ "@rulvar/planner": "1.232.0"
36
36
  },
37
37
  "bin": {
38
38
  "rulvar": "./dist/cli.js"