feat: Created the step-runner graph agent for more deterministic coding workflows to produce even more reliable and higher-quality results
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
if [[ -n "${GRAPH_STATE_FILE:-}" ]]; then
|
||||
state=$(cat "$GRAPH_STATE_FILE")
|
||||
elif [[ -n "${GRAPH_STATE:-}" ]]; then
|
||||
state="$GRAPH_STATE"
|
||||
else
|
||||
state='{}'
|
||||
fi
|
||||
|
||||
coder_result=$(echo "$state" | jq -r '.coder_result // ""')
|
||||
|
||||
case "$coder_result" in
|
||||
*CODER_COMPLETE*)
|
||||
jq -nc '{"_next": "verify_format_lint"}'
|
||||
;;
|
||||
*CODER_REJECTED*)
|
||||
jq -nc '{"_next": "end_rejected"}'
|
||||
;;
|
||||
*CODER_FAILED*)
|
||||
jq -nc '{"blocking_reason": "coder fix-loop exhausted; see coder result", "_next": "end_failure"}'
|
||||
;;
|
||||
*)
|
||||
jq -nc '{"blocking_reason": "coder returned no recognizable sentinel (expected CODER_COMPLETE / CODER_REJECTED / CODER_FAILED)", "_next": "end_failure"}'
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user