Skip to content

Commit e91ec40

Browse files
docs: fix documentation drift — remove fictitious model names and unsupported deprecation promise (#673)
1 parent 8855a55 commit e91ec40

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

docs/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Global flags (apply to all subcommands): `--verbose, -v` (enable info-level logg
3535
- `--ado-project <name>` - Azure DevOps project name override
3636
- `--dry-run` - Validate inputs but skip ADO API calls (useful for local testing and QA review)
3737

38-
- `configure` *(deprecated; hidden in --help)* - Alias forwarding to `secrets set GITHUB_TOKEN`. Existing scripts keep working but get a stderr warning. The alias will be removed in the next minor release.
38+
- `configure` *(deprecated; hidden in --help)* - Alias forwarding to `secrets set GITHUB_TOKEN`. Existing scripts keep working but get a stderr warning.
3939

4040
- `secrets set <name> [<value>] [PATH]` - Set a pipeline variable (with `isSecret=true`) on every matched ADO definition. Value resolution: positional `<value>``--value-stdin` (one line) → interactive tty prompt with echo off.
4141
- `--allow-override` - Force `allowOverride=true` on the set variable. When omitted, `allowOverride` is **preserved** on existing variables (so secret rotation does not silently downgrade an existing `allowOverride=true`) and defaults to `false` for new variables.

docs/engine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ engine:
2222
| Field | Type | Default | Description |
2323
|-------|------|---------|-------------|
2424
| `id` | string | `copilot` | Engine identifier. Currently only `copilot` (GitHub Copilot CLI) is supported. |
25-
| `model` | string | `claude-opus-4.7` | AI model to use. Options include `claude-sonnet-4.5`, `gpt-5.2-codex`, `gemini-3-pro-preview`, etc. |
25+
| `model` | string | `claude-opus-4.7` | AI model to use (e.g., `claude-sonnet-4.5`). The compiler passes the value directly to the Copilot CLI `--model` flag — any model identifier the Copilot CLI accepts is valid. |
2626
| `timeout-minutes` | integer | *(none)* | Maximum time in minutes the agent job is allowed to run. Sets `timeoutInMinutes` on the `Agent` job in the generated pipeline. |
2727
| `version` | string | *(none)* | Engine CLI version to install (e.g., `"1.0.48"`, `"latest"`). Overrides the pinned `COPILOT_CLI_VERSION`. Set to `"latest"` to use the newest available version. |
2828
| `agent` | string | *(none)* | Custom agent file identifier (Copilot only). Adds `--agent <name>` to the CLI invocation, selecting a custom agent from `.github/agents/`. |

prompts/create-ado-agentic-workflow.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ The default model is `claude-opus-4.7`. To use a different model, use the object
7272
|---|---|
7373
| `claude-opus-4.7` | Default. Best reasoning, complex tasks. |
7474
| `claude-sonnet-4.5` | Faster, cheaper, simpler tasks. |
75-
| `gpt-5.2-codex` | Code-heavy tasks. |
76-
| `gemini-3-pro-preview` | Google ecosystem tasks. |
7775

7876
Object form with model selection and extra options:
7977
```yaml

0 commit comments

Comments
 (0)