agentxchain 2.154.0 → 2.154.1
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/package.json
CHANGED
|
@@ -383,6 +383,7 @@ export function maybeAutoReconcileOperatorCommits(context, session, contOpts, lo
|
|
|
383
383
|
const detail = detailLines.join(' ');
|
|
384
384
|
|
|
385
385
|
if (state) {
|
|
386
|
+
const blockedAt = new Date().toISOString();
|
|
386
387
|
const nextState = {
|
|
387
388
|
...state,
|
|
388
389
|
status: 'blocked',
|
|
@@ -390,10 +391,15 @@ export function maybeAutoReconcileOperatorCommits(context, session, contOpts, lo
|
|
|
390
391
|
blocked_reason: {
|
|
391
392
|
...(state.blocked_reason || {}),
|
|
392
393
|
category: 'operator_commit_reconcile_refused',
|
|
394
|
+
blocked_at: blockedAt,
|
|
395
|
+
turn_id: null,
|
|
393
396
|
error_class: errorClass,
|
|
394
397
|
recovery: {
|
|
395
398
|
...((state.blocked_reason || {}).recovery || {}),
|
|
399
|
+
typed_reason: 'operator_commit_reconcile_refused',
|
|
400
|
+
owner: 'human',
|
|
396
401
|
recovery_action: 'agentxchain reconcile-state --accept-operator-head',
|
|
402
|
+
turn_retained: false,
|
|
397
403
|
detail,
|
|
398
404
|
},
|
|
399
405
|
},
|