Wake default waiters on verifying events

This commit is contained in:
2026-03-24 01:43:51 +08:00
parent 2786a3a7e7
commit 3d4915c5cf
4 changed files with 143 additions and 7 deletions
+2 -2
View File
@@ -312,7 +312,7 @@ This is the normal wait primitive for the interactive leader.
Suggested flags:
- `--run RUN_ID`
- `--for task_ready,task_blocked,task_done,task_failed`
- `--for task_ready,task_blocked,task_verifying,task_done,task_failed`
- `--after-event EVENT_ID`
- `--timeout-seconds N`
@@ -690,7 +690,7 @@ orch dep add --run blog_mvp_001 --task T2 --depends-on T1 --json
orch ready --run blog_mvp_001 --json
orch dispatch --run blog_mvp_001 --task T1 --execution-mode code --to foundation-worker --base-ref main --workspace-root .orch/worktrees --body-file tasks/t1.md --json
orch reconcile --run blog_mvp_001 --json
orch wait --run blog_mvp_001 --for task_blocked,task_done,task_failed --after-event 0 --timeout-seconds 900 --json
orch wait --run blog_mvp_001 --for task_blocked,task_verifying,task_done,task_failed --after-event 0 --timeout-seconds 900 --json
orch blocked --run blog_mvp_001 --json
orch answer --run blog_mvp_001 --task T2 --body "MVP supports draft and published only." --json
orch retry --run blog_mvp_001 --task T7a --to backend-worker --body "Retry after fixing the contract mismatch." --json