-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteamcode.jsonc
More file actions
49 lines (49 loc) · 1.11 KB
/
Copy pathteamcode.jsonc
File metadata and controls
49 lines (49 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://raw.githubusercontent.com/ElioNeto/teamcode/main/schemas/teamcode.json",
"default_agent": "god",
"command": {
"dev": {
"description": "Run the application",
"template": "go run ."
},
"build": {
"description": "Build the project",
"template": "go build ./..."
},
"test": {
"description": "Run tests",
"template": "go test ./... -v"
},
"lint": {
"description": "Lint code",
"template": "golangci-lint run ./..."
}
},
"agent": {
"god": {
"description": "Omnipotent agent with unrestricted access to all tools and permissions",
"permission": {
"edit": "allow",
"read": "allow",
"glob": "allow",
"grep": "allow",
"list": "allow",
"bash": "allow",
"task": "allow",
"external_directory": "allow",
"question": "allow",
"webfetch": "allow"
}
},
"build": {
"description": "Default development agent"
}
},
"permission": {
"edit": "allow",
"bash": {
"go *": "allow",
"*": "ask"
}
}
}