codex-workflow-v2 2.0.0-beta.13.13 → 2.0.0-beta.13.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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "protocol": "codex-workflow-runtime-build-manifest-v1",
3
3
  "packageName": "codex-workflow-v2",
4
- "packageVersion": "2.0.0-beta.13.13",
5
- "packageManifestSha256": "37ec94cef55bf87d76dd57ff1cbfd5221e59ae4c19afbb3c63b1e0040488e989",
4
+ "packageVersion": "2.0.0-beta.13.14",
5
+ "packageManifestSha256": "bd8443dc87a9d88b3cb7cc945383fb348747da3c888107f0f84918912f598365",
6
6
  "requiredEntrypoints": [
7
7
  "dist/src/cli.js",
8
8
  "dist/src/gateway-handshake.js",
@@ -336,11 +336,11 @@
336
336
  },
337
337
  {
338
338
  "path": "dist/src/version.js",
339
- "sha256": "42b78487b895fd8ec504d7eeb906b96b6fa5ceb3a46bcacd3f5eb4035531cb65"
339
+ "sha256": "9f099071a7202ab9b8ca13d65e822ba93d3d81992a9feb28434c891ae1f11dba"
340
340
  },
341
341
  {
342
342
  "path": "dist/src/workflow.js",
343
- "sha256": "a9f2158b0c3e1a1f4cda71d51bd216ae3f83c0869b05ef6d0aa333481a433786"
343
+ "sha256": "98fe880a68b4b4d32bba2c470cc99f0a80edb8bccff53d9e2c1150a4b1ba269f"
344
344
  }
345
345
  ],
346
346
  "runtimeDependencies": [
@@ -1124,5 +1124,5 @@
1124
1124
  ]
1125
1125
  }
1126
1126
  ],
1127
- "fingerprint": "7a052dc8bf3acdb3970c767a683041467e421eddc3fb3496b443d7a94674df2f"
1127
+ "fingerprint": "17ea7a36af433b3f922cabf4678774c5388d6151087d5deea9403a44e325de3f"
1128
1128
  }
@@ -1,2 +1,2 @@
1
1
  export declare const PACKAGE_NAME = "codex-workflow-v2";
2
- export declare const PACKAGE_VERSION = "2.0.0-beta.13.13";
2
+ export declare const PACKAGE_VERSION = "2.0.0-beta.13.14";
@@ -1,3 +1,3 @@
1
1
  export const PACKAGE_NAME = 'codex-workflow-v2';
2
- export const PACKAGE_VERSION = '2.0.0-beta.13.13';
2
+ export const PACKAGE_VERSION = '2.0.0-beta.13.14';
3
3
  //# sourceMappingURL=version.js.map
@@ -51,7 +51,7 @@ import { PACKAGE_NAME, PACKAGE_VERSION } from './version.js';
51
51
  import { correctiveReplanBlockedNavigation, correctiveReplanNavigation, evaluateTaskCorrectiveReplanAvailability, evaluateTaskCorrectiveReplanCandidate, identifyCorrectiveReplanPosture, prepareCorrectiveReplanCandidate, TASK_CORRECTIVE_REPLAN_TRANSITION_ID, } from './lifecycle/corrective-replan.js';
52
52
  const MAX_STRICT_REVIEW_INFRASTRUCTURE_FAILURES = 2;
53
53
  // Release-reviewed exact compatibility target; never infer support from PACKAGE_VERSION.
54
- const CONSUMED_CARRYOVER_TARGET_VERSION = '2.0.0-beta.13.13';
54
+ const CONSUMED_CARRYOVER_TARGET_VERSION = '2.0.0-beta.13.14';
55
55
  export class WorkflowService {
56
56
  store;
57
57
  now;
@@ -6570,6 +6570,8 @@ export class WorkflowService {
6570
6570
  : null;
6571
6571
  let rootCauseReplanDirtyCarryover = ['task run', 'task handoff-prepare', 'task claim'].includes(String(next.action))
6572
6572
  && rootCauseStepId
6573
+ // Match runStep: historical carryover admits a replacement start, never a failed retry.
6574
+ && task.steps.find(step => step.id === rootCauseStepId)?.status === 'planned'
6573
6575
  && changedFiles(repositoryRoot).length > 0
6574
6576
  ? this.assessCurrentRootCauseReplanDirtyCarryover(repositoryRoot, task, rootCauseStepId)
6575
6577
  : null;