From b618d3a8ea2886d38db1936f78542bb90bacbd74 Mon Sep 17 00:00:00 2001 From: "Rai (Michael Pokorny)" Date: Tue, 24 Jun 2025 19:01:54 -0700 Subject: [PATCH] agentydragon(tasks): fix numbering in Implementation steps --- agentydragon/tasks/02-auto-approve-predicates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agentydragon/tasks/02-auto-approve-predicates.md b/agentydragon/tasks/02-auto-approve-predicates.md index 8cf855ed90..fde91622d8 100644 --- a/agentydragon/tasks/02-auto-approve-predicates.md +++ b/agentydragon/tasks/02-auto-approve-predicates.md @@ -32,8 +32,8 @@ Multiple scripts cast votes: if any script returns `deny`, the command is denied - On `allow`, auto-approve under sandbox. - On script errors or unrecognized outputs, immediately prompt the user (via `request_command_approval`) with a reason string describing the error/output, then run or reject based on their decision. - On `no-opinion`, fall through to the next script. -6. Write async unit tests for `get_auto_allow_vote`, covering allow, deny, no-opinion, and error-exit cases. -7. Update documentation (`config.md`) to document the new auto-approval predicates feature. +5. Write async unit tests for `get_auto_allow_vote`, covering allow, deny, no-opinion, and error-exit cases. +6. Update documentation (`config.md`) to document the new auto-approval predicates feature. ## Notes - This pairs with the existing `approval_policy = "unless-allow-listed"` but now ensures script errors or unexpected outputs trigger a targeted manual approval prompt with context.