@lsctech/polaris 0.5.13 → 0.5.14

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.
@@ -61,10 +61,12 @@ function writeSealedResultFromSummary(packet, parsedSummary) {
61
61
  }
62
62
  const commit = (typeof parsedSummary["commit"] === "string" && parsedSummary["commit"]) ||
63
63
  (typeof parsedSummary["commit_hash"] === "string" && parsedSummary["commit_hash"]) ||
64
+ (typeof parsedSummary["commit_sha"] === "string" && parsedSummary["commit_sha"]) ||
64
65
  undefined;
65
66
  const validation = parsedSummary["validation"] ?? parsedSummary["validation_summary"];
66
67
  const sealedResult = {
67
68
  run_id: packet.run_id,
69
+ cluster_id: packet.cluster_id,
68
70
  child_id: packet.active_child,
69
71
  status: normalizeSealedStatus(parsedSummary["status"]),
70
72
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lsctech/polaris",
3
- "version": "0.5.13",
3
+ "version": "0.5.14",
4
4
  "description": "Polaris — standalone taskchain orchestration framework for governed AI agent workflows",
5
5
  "bin": {
6
6
  "polaris": "dist/cli/index.js",