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
if [[ "$status"=="ok"||"$overall"=="completed"||"$overall"=="session_exited"||"$overall"=="partial"||"$overall"=="partial_budget"||"$overall"=="timed_out" ]];then
239
+
return 0
240
+
fi
241
+
if [[ "$status"=="needs_input" ]];then
242
+
run_dx "dual_gate_continue_${attempt}"continue --workspace "$workspace" --assistant "$assistant" --text "Continue from current state and finish this run with a concise completion summary." --enter --wait-timeout 70s --idle-threshold 10s
243
+
fi
244
+
245
+
elapsed="$(( $(date +%s) - start_ts ))"
246
+
if(( elapsed >= timeout_s ));then
247
+
echo"timed out waiting for workspace $workspace implement run to reach terminal state before review (status=$status overall=$overall)">&2
248
+
return 1
249
+
fi
250
+
sleep "$poll_s"
251
+
done
252
+
}
253
+
222
254
run_assistant_local_ping() {
223
255
local slug="$1"
224
256
local session_id="$2"
@@ -439,7 +471,11 @@ run_dx terminal_run_ws1 terminal run --workspace "$WS1_ID" --text "go run main.g
run_dx workflow_dual_ws1 workflow dual --workspace "$WS1_ID" --implement-assistant "$ASSISTANT" --implement-prompt "Append one concise mobile-coding tip to README.md and proceed even if there are unrelated uncommitted changes." --review-assistant "$ASSISTANT" --review-prompt "Review for clarity and correctness." --max-steps 1 --turn-budget 100 --wait-timeout 70s --idle-threshold 10s --auto-continue-impl true
474
+
run_dx dual_impl_ws1 start --workspace "$WS1_ID" --assistant "$ASSISTANT" --prompt "Append one concise mobile-coding tip to README.md and proceed even if there are unrelated uncommitted changes." --max-steps 1 --turn-budget 100 --wait-timeout 70s --idle-threshold 10s --allow-new-run
0 commit comments