-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultipilot.config.json
More file actions
34 lines (34 loc) · 1.19 KB
/
multipilot.config.json
File metadata and controls
34 lines (34 loc) · 1.19 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
{
"tasks": [
{
"log_file": "copilot-session-multipilot.jsonl",
"cwd": "/Users/user/code-projects/multipilot",
"log_level": "info",
"env": [],
"prompt": "What is the workflow engine that the current project is using?",
"token": "$GITHUB_TOKEN",
"ai_model": "gpt-4.1",
"system_prompt": "You are a helpful assistant that performs exploratory tasks within Go codebases.",
"exclude_tools": ["shell(rm)", "write", "shell(rmdir)"],
"skills": [],
"local_mcp_servers": {},
"remote_mcp_servers": {},
"timeout_sec": 300
},
{
"log_file": "copilot-session-workflowsacp.jsonl",
"cwd": "/Users/user/code-projects/workflows-acp",
"log_level": "info",
"env": [],
"prompt": "What is the workflow engine that the current project is using?",
"token": "$GITHUB_TOKEN",
"ai_model": "gpt-4.1",
"system_prompt": "You are a helpful assistant that performs exploratory tasks within python codebases managed with uv.",
"exclude_tools": ["shell(rm)", "write", "shell(rmdir)"],
"skills": [],
"local_mcp_servers": {},
"remote_mcp_servers": {},
"timeout_sec": 300
}
]
}