Restructure agent setup

This commit is contained in:
2026-07-05 19:00:24 +01:00
parent 1e0c195f42
commit 79c5d368bf
5 changed files with 230 additions and 61 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"$schema": "https://opencode.ai/config.json",
"command": {
"build": {
"template": "!just build",
"description": "Build the project"
},
"lint": {
"template": "!just lint",
"description": "Run linter / typecheck"
},
"test": {
"template": "!just test",
"description": "Run tests"
}
},
"permission": {
"edit": {
"src/wapp/**": "deny"
}
}
}