You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`coordinator moved to blocked_external from ${sourceStatus} at ${stageLabel}; retryAfter=manual; source=none; reason=${truncateReason(manualBlockErr.blockedReason)}`,
157
+
);
158
+
159
+
log.warn(
160
+
{
161
+
taskId,
162
+
stage: stageLabel,
163
+
errorName: manualBlockErr.name,
164
+
},
165
+
"Subagent stage requested manual block",
166
+
);
167
+
168
+
return{
169
+
kind: "blocked_external",
170
+
blockedReason: manualBlockErr.blockedReason,
171
+
retryAfter: null,
172
+
retryAfterSource: "none",
173
+
retryCount: input.retryCount??0,
174
+
limitSnapshot: null,
175
+
};
176
+
}
177
+
133
178
// Branch / worktree isolation failures must NEVER fall into the generic
134
179
// revert path — generic revert triggers unbounded re-planning on a
135
180
// corrupted work tree. Pin the task to blocked_external with no retry so
0 commit comments