@kynver-app/runtime 0.1.105 → 0.1.106

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
@@ -311,7 +311,9 @@ function redactHomePath(value) {
311
311
  if (resolved.startsWith(`${home}${path2.sep}`)) {
312
312
  return `~/${path2.relative(home, resolved).split(path2.sep).join("/")}`;
313
313
  }
314
- return resolved.replace(/^\/home\/[^/]+(?=\/|$)/, "~").replace(/^\/Users\/[^/]+(?=\/|$)/, "~");
314
+ const posix = resolved.replace(/\\/g, "/");
315
+ const redacted = posix.replace(/^\/home\/[^/]+(?=\/|$)/, "~").replace(/^\/Users\/[^/]+(?=\/|$)/, "~").replace(/^[A-Za-z]:\/home\/[^/]+(?=\/|$)/i, "~").replace(/^[A-Za-z]:\/Users\/[^/]+(?=\/|$)/i, "~");
316
+ return redacted;
315
317
  }
316
318
  function displayUserPath(value) {
317
319
  return redactHomePath(value);
@@ -2696,14 +2698,14 @@ var WORKER_PERSONA_CATALOG = [
2696
2698
  {
2697
2699
  slug: "lorentz",
2698
2700
  displayName: "Lorentz",
2699
- description: "Review / testing \u2014 pre-landing and post-landing verification, report + deep review.",
2701
+ description: "Deep/adversarial review lane expert for risk, correctness, and safety gates. Run adversarial review and validation gating.",
2700
2702
  dispatchLane: "review",
2701
2703
  defaultRoleLane: "report_reviewer"
2702
2704
  },
2703
2705
  {
2704
2706
  slug: "dalton",
2705
2707
  displayName: "Dalton",
2706
- description: "Landing / merge execution \u2014 merge-ready PR landing and merge evidence only (no implementation).",
2708
+ description: "Landing-only \u2014 merge-ready handoff and final verification evidence; no implementation ownership.",
2707
2709
  dispatchLane: "landing",
2708
2710
  defaultRoleLane: "implementer"
2709
2711
  }