feat(opencode): add opencode.json

Signed-off-by: Anthony Oteri <4360016+anthonyoteri@users.noreply.github.com>
This commit is contained in:
Anthony Oteri
2026-04-29 10:29:29 -04:00
parent e67b7b173c
commit 782db4970c
+42
View File
@@ -0,0 +1,42 @@
{
"$schema": "https://opencode.ai/config.json",
"permission": {
"*": "ask",
"todowrite": "allow",
"read": {
"*": "allow",
"*.env": "deny"
},
"edit": "ask",
"webfetch": "allow",
"websearch": "allow",
"question": "allow",
"grep": "allow",
"glob": "allow",
"lsp": "allow",
"skill": "allow",
"bash": {
"*": "ask",
"ls": "allow",
"ls *": "allow",
"pwd": "allow",
"git status": "allow",
"git status *": "allow",
"git diff *": "allow",
"git log": "allow",
"git log *": "allow",
"grep *": "allow",
"just *": "allow",
"cargo test *": "allow",
"cargo fmt": "allow",
"cargo fmt *": "allow",
"cargo check": "allow",
"cargo check *": "allow",
"cargo clippy": "allow",
"cargo clippy *": "allow",
"gh issue view *": "allow",
"gh issue list *": "allow",
"gh pr view *": "allow",
}
}
}