You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/src/content/docs/setup/cli.mdx
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,23 +154,23 @@ Options:
154
154
155
155
### `disable [path]`
156
156
157
-
Set `queueStatus` to `disabled` (or `paused`) on every matched ADO definition.
157
+
Set `queueStatus` to `disabled` (or `paused`) on every matched ADO definition. Disabled definitions reject all queue requests; paused definitions queue scheduled runs but hold them without executing.
158
158
159
159
Options:
160
160
161
-
-`--paused` -- use`queueStatus: paused` instead of `disabled`; paused definitions still queue scheduled runs but hold the queue, while disabled definitions reject all queue requests
161
+
-`--paused` -- set`queueStatus` to `paused` instead of `disabled`
162
162
-`--org`, `--project`, `--pat` -- same as `enable`
163
-
-`--dry-run` -- print the planned transitions without calling the ADO API
163
+
-`--dry-run` -- preview the planned transitions without calling the ADO API
164
164
165
165
### `remove [path]`
166
166
167
167
**Destructive.** Delete every matched ADO build definition. Bulk deletes (more than one match) require `--yes`; a single match on a tty prompts interactively.
168
168
169
169
Options:
170
170
171
-
-`--yes` -- required for bulk deletes and for any delete in a non-tty context
171
+
-`--yes` -- required for bulk deletes (more than one match) and for any delete in a non-tty context
172
172
-`--org`, `--project`, `--pat` -- same as `enable`
173
-
-`--dry-run` -- print the planned deletions without calling the ADO API
173
+
-`--dry-run` -- preview the planned deletions without calling the ADO API
174
174
175
175
### `list [path]`
176
176
@@ -202,32 +202,32 @@ ado-aw run [path] [--wait] [--parameters key=value]
202
202
Options:
203
203
204
204
-`--branch <ref>` -- source branch to queue (defaults to the definition's `defaultBranch`)
205
-
-`--parameters <k=v>` -- ADO `templateParameters` as `key=value` pairs; repeatable and/or comma-separated. Values must not contain commas — use one `--parameters` flag per pair when values contain commas.
206
-
-`--wait` -- poll each queued build to completion before exiting
207
-
-`--poll-interval <secs>` -- polling interval when `--wait` is set (default: `10`)
208
-
-`--timeout <secs>` -- maximum wait time when `--wait` is set (default: `1800`)
205
+
-`--parameters <k=v>` -- ADO `templateParameters` as `key=value` pairs; repeatable and/or comma-separated. Values must not contain commas — use one `--parameters` flag per pair when values contain commas
206
+
-`--wait` -- poll each queued build to completion before exiting; aggregate result determines the exit code
207
+
-`--poll-interval <secs>` -- seconds between polls when `--wait` is set (default: `10`)
208
+
-`--timeout <secs>` -- maximum seconds to wait when `--wait` is set (default: `1800`)
209
209
-`--org`, `--project`, `--pat` -- same as `enable`
210
-
-`--dry-run` -- print the planned queue body without calling the ADO API
210
+
-`--dry-run` -- preview the planned queue body without calling the ADO API
211
211
212
212
## Internal / pipeline runtime commands
213
213
214
214
These commands are used by the compiled pipeline itself and are not typically called by users directly.
215
215
216
216
### `mcp <output_directory> <bounding_directory>`
217
217
218
-
Run SafeOutputs as a stdio MCP server (used by Stage 1).
218
+
Run SafeOutputs as a stdio MCP server (used by Stage 1). The `<bounding_directory>` guards against directory traversal attacks by ensuring the agent cannot influence folders outside this path.
0 commit comments