-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
86 lines (86 loc) · 1.95 KB
/
config.json
File metadata and controls
86 lines (86 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"copilotCliPath": "copilot",
"promptsFile": "./azure-skills-prompts.json",
"resultsDir": "./results",
"logsDir": "./results/logs",
"maxParallelTabs": 5,
"timeoutSeconds": 300,
"maxRetries": 3,
"workingDirectory": ".",
"runOrganization": {
"enabled": true,
"folderFormat": "run_%Y-%m-%d_%H-%M-%S",
"collectCopilotLogs": true,
"collectSessionState": true,
"generateSummary": true
},
"copilotOptions": {
"logLevel": "debug",
"model": "claude-opus-4.5",
"silent": false,
"allowAllTools": true,
"noAskUser": true,
"noColor": true
},
"nonInteractive": {
"enabled": true,
"azDefaults": {
"AZURE_CORE_NO_PROMPT": "true",
"AZURE_CORE_ONLY_SHOW_ERRORS": "false",
"AZURE_CORE_OUTPUT": "json"
},
"azdDefaults": {
"AZURE_DEV_COLLECT_TELEMETRY": "no",
"AZD_DEBUG": "false"
},
"commonFlags": {
"az": ["--only-show-errors", "--output", "json"],
"azd": ["--no-prompt"]
},
"autoResponses": {
"y/n": "y",
"yes/no": "yes",
"continue": "y",
"proceed": "y"
}
},
"authInheritance": {
"_comment": "Copilot CLI inherits Azure credentials from parent shell. Ensure 'az login' before running.",
"requireAzLogin": true,
"requireAzdLogin": false,
"preRunCheck": true,
"envVarsToInherit": [
"AZURE_SUBSCRIPTION_ID",
"AZURE_TENANT_ID",
"AZURE_CLIENT_ID",
"AZURE_CLIENT_SECRET",
"AZURE_DEFAULTS_GROUP",
"AZURE_DEFAULTS_LOCATION"
]
},
"successIndicators": [
"completed successfully",
"done",
"created",
"deployed",
"generated",
"finished",
"succeeded"
],
"failureIndicators": [
"error:",
"failed",
"exception",
"unable to",
"could not",
"not found",
"denied"
],
"logging": {
"captureStdout": true,
"captureStderr": true,
"includeTimestamps": true,
"maxOutputSize": 1048576,
"captureCopilotLogs": true
}
}