fix(agents): fix bug-hunt-pool-supervisor bash permission block
CI / lint (pull_request) Successful in 45s
CI / build (pull_request) Successful in 54s
CI / helm (pull_request) Successful in 52s
CI / quality (pull_request) Successful in 57s
CI / push-validation (pull_request) Successful in 30s
CI / typecheck (pull_request) Successful in 1m24s
CI / security (pull_request) Successful in 1m25s
CI / unit_tests (pull_request) Successful in 4m29s
CI / docker (pull_request) Successful in 1m38s
CI / integration_tests (pull_request) Successful in 10m53s
CI / coverage (pull_request) Successful in 9m15s
CI / status-check (pull_request) Successful in 3s

- Add missing ': allow' suffix to 'git clone*' entry (was a bare key,
  effectively null/denied, breaking Worker Mode clone step)
- Add 'rm -rf /tmp/*': allow for mandatory clone cleanup on exit

ISSUES CLOSED: #10820
This commit is contained in:
2026-06-14 03:44:33 -04:00
parent 7b49e81379
commit 0bb37a6f39
+3 -1
View File
@@ -30,8 +30,10 @@ permission:
"wc *": allow
"head *": allow
"tail *": allow
# Cleanup (mandatory on exit):
"rm -rf /tmp/*": allow
# Read-only git commands:
"git clone*"
"git clone*": allow
"git log*": allow
"git status*": allow
"git diff*": allow