From e2ebfcbb09f4db61b2e7572fdaefad84ad64aa44 Mon Sep 17 00:00:00 2001 From: CleverThis Date: Sun, 31 May 2026 11:55:18 -0400 Subject: [PATCH] fix(uat-tester): add missing bash permissions for worker clone and docs Worker Mode requires git clone, git config, git pull, git checkout, git add, git commit, git push, and uv commands in bash. These were all missing from the frontmatter permission block, causing every Worker Mode instance to fail immediately with permission denied on the first command. --- .opencode/agents/uat-tester.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.opencode/agents/uat-tester.md b/.opencode/agents/uat-tester.md index ca640f5fa..bf49fe597 100644 --- a/.opencode/agents/uat-tester.md +++ b/.opencode/agents/uat-tester.md @@ -40,6 +40,16 @@ permission: "git diff*": allow "git show*": allow "git branch*": allow + # Read-write git commands (worker clone and documentation): + "git clone *": allow + "git config *": allow + "git pull *": allow + "git checkout *": allow + "git add *": allow + "git commit *": allow + "git push *": allow + # Python/UV environment: + "uv *": allow task: "*": deny # ONE-SHOT helpers only: