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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# VTCode Configuration
# Minimal configuration with only actively used settings
[]
# Provider to use: one of "gemini", "openai", "anthropic", "openrouter"
# API key environment variable is automatically inferred from provider
= "openai"
# Default model for single-agent mode
# Please also check router.models below if change default_model
= "gpt-5-codex"
[]
= "gpt-5-codex"
= "gpt-5-codex"
= "gpt-5-codex"
= "gpt-5-codex"
= "gpt-5-codex"
# Max conversation turns per session (prevents infinite loops)
= 150
# Reasoning effort for models that support it: "low" | "medium" | "high"
= "medium"
# Prompt refinement settings (optimize GPT-5 prompts; can apply to all models)
= false
= 1
= ""
# Enable a self-review refinement pass for final responses
= false
# Maximum number of self-review passes (only used if enable_self_review = true)
= 1
[]
= true
= "VT Code" # VT Code
= false
= false
= false
= 4
# [
# "Share the outcome you need or ask for a quick /status summary.",
# "Reference AGENTS.md expectations before changing files.",
# ]
= []
# suggestion:
# [
# "Request a workspace orientation or describe the task you want to tackle.",
# "Confirm priorities or blockers so I can suggest next steps.",
# ]
= []
# suggestion: "Implement {feature}..."
= ""
[]
# Enable human-in-the-loop mode (requires confirmation for destructive actions)
= true
# Require write tool confirmation for claims about file changes
= true
# Auto-apply patches detected in responses (use with caution)
= false
[]
# Disable by default; must be enabled intentionally per workspace
= false
# Require presence of an acknowledgement/profile file before autonomous runs
= true
# Path is resolved relative to the workspace when not absolute
= "automation/full_auto_profile.toml"
# Restrictive default allow-list focused on read-only tools
= ["read_file", "list_files", "grep_search", "simple_search"]
[]
# Default tool policy for tools not explicitly listed below
# Values: "allow" | "deny" | "prompt" (require confirmation)
= "prompt"
# Limit the number of inner tool-call loops per user turn (prevents infinite cycles)
= 100
# Per-tool policy overrides (more specific takes precedence)
[]
# File system tools
= "allow"
= "allow"
= "allow"
= "allow"
= "prompt"
= "allow"
= "allow"
= "deny"
# Code analysis tools
= "allow"
= "allow"
= "allow"
# Build and test tools
= "allow"
= "prompt"
= "allow"
= "allow"
= "allow"
# Git tools
= "allow"
= "allow"
= "allow"
= "prompt"
= "prompt"
# Code modification tools
= "prompt"
[]
# Allow-list commands (exact matches, executed without confirmation)
= [
"ls",
"pwd",
"cat",
"grep",
"find",
"head",
"tail",
"wc",
"git status",
"git diff",
"git log",
"cargo check",
"cargo tree",
"cargo metadata",
"which",
"echo",
]
# Deny-list commands (always blocked, cannot be executed)
= [
"rm -rf /",
"rm -rf ~",
"rm -rf /*",
"shutdown",
"reboot",
"halt",
"poweroff",
"sudo rm",
"sudo chmod",
"sudo chown",
"format",
"fdisk",
"mkfs",
"dd if=",
"wget",
"curl",
":(){ :|:& };:", # Fork bomb
]
# Glob-based allow patterns (commands matching these patterns are allowed)
= [
"git *",
"cargo *",
"rustc *",
"python -m *",
"node *",
"npm *",
"yarn *",
"pnpm *",
]
# Glob-based deny patterns (commands matching these patterns are blocked)
= [
"rm *",
"sudo *",
"chmod *",
"chown *",
"kill *",
"pkill *",
"systemctl *",
"service *",
"mount *",
"umount *",
"docker run *",
"kubectl *",
]
# Regex-based allow patterns (advanced users only)
= [
"^(ls|pwd|cat|grep|find|head|tail|wc)\\b",
"^git (status|diff|log|show|branch)\\b",
"^cargo (check|build|test|doc|clippy|fmt)\\b",
]
# Regex-based deny patterns (commands matching these patterns are blocked)
= [
"rm\\s+(-rf|--force)",
"sudo\\s+.*",
"chmod\\s+.*",
"chown\\s+.*",
"docker\\s+run\\s+.*--privileged",
"kubectl\\s+(delete|drain|uncordon)",
]
[]
# Enable PTY (pseudo-terminal) for interactive commands
= true
# Default terminal size (rows x columns)
= 24
= 80
# Maximum concurrent PTY sessions (prevents resource exhaustion)
= 10
# Command timeout in seconds (prevents hanging commands)
= 300
# Dynamic Router: choose model and engine based on task complexity
[]
= true
= true
= ""
[]
# Enable trajectory logging to logs/trajectory.jsonl
= true