-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteamcode.jsonc
More file actions
55 lines (55 loc) · 1.28 KB
/
Copy pathteamcode.jsonc
File metadata and controls
55 lines (55 loc) · 1.28 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
50
51
52
53
54
55
{
"$schema": "https://raw.githubusercontent.com/ElioNeto/teamcode/main/schemas/teamcode.json",
"default_agent": "god",
"command": {
"dev": {
"description": "Start dev server",
"template": "npm run dev"
},
"build": {
"description": "Build project",
"template": "npm run build"
},
"test": {
"description": "Run tests",
"template": "npm test"
},
"lint": {
"description": "Lint code",
"template": "npx eslint frontend/src --ext .js,.jsx,.ts,.tsx"
}
},
"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"
},
"frontend": {
"description": "Frontend specialist for UI development"
}
},
"permission": {
"edit": "allow",
"bash": {
"npm *": "allow",
"npx *": "allow",
"node *": "allow",
"cargo *": "allow",
"*": "ask"
}
}
}