-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathvibehq.config.json
More file actions
40 lines (40 loc) · 1.23 KB
/
Copy pathvibehq.config.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"teams": [
{
"name": "my-project",
"hub": {
"port": 3001
},
"agents": [
{
"name": "Emma",
"role": "Project Manager",
"cli": "claude",
"cwd": "/path/to/project"
},
{
"name": "Sam",
"role": "Product Designer",
"cli": "claude",
"cwd": "/path/to/project/design",
"dangerouslySkipPermissions": true
},
{
"name": "Alex",
"role": "Backend Engineer",
"cli": "claude",
"cwd": "/path/to/project/backend",
"dangerouslySkipPermissions": true
},
{
"name": "Jordan",
"role": "Frontend Engineer",
"cli": "claude",
"cwd": "/path/to/project/frontend",
"dangerouslySkipPermissions": true,
"additionalDirs": ["/path/to/project/shared"]
}
]
}
]
}