Baseline Repository
These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.
- 01
git init - 02
git config user.email 'test@test.com' - 03
git config user.name 'Test User' - 04
echo 'App' > app.txt - 05
git add app.txt - 06
git commit -m 'Initial release' - 07
git tag v1.0 - 08
echo 'New' > new.txt - 09
git add new.txt - 10
git commit -m 'Second release' - 11
git tag v2.0 - 12
mkdir -p ../remote-bare && cd ../remote-bare && git init --bare - 13
git remote add origin ../remote-bare - 14
git push origin main --tags - 15
git tag -d v1.0 - 16
git tag -d v2.0
Prompt
Fetch all tags from the remote 'origin'. Output ONLY the git command, nothing else.
Expected
git fetch --tags origin
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git fetch --tags origin
git fetch origin --tags
JSON Schema
Structured Output
(raw) { "command": "git fetch origin --tags" }
git fetch origin --tags
JSON Schema
Structured Output
(raw) {
"command": "git fetch origin --tags"
}
git fetch origin --tags
JSON Schema
Structured Output
(raw) {"command": "git fetch origin --tags"}
git fetch --tags origin
git fetch --tags origin
JSON Schema
Structured Output
(raw) {"command":"git fetch --tags origin"}
git fetch origin --tags
git fetch origin --tags
JSON Schema
Structured Output
(raw) {
"command": "git fetch origin --tags"
}
git tag -a v1.0 -m "Initial release"
git tag -a v1.0.1 -m "Second release"
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v2.0'}]
(empty output)
Failure: Model 'deepseek/deepseek-v4-flash:none' violated the reasoning_level=none invariant: provider reported 63 reasoning token(s)
```bash
git fetch origin --tags
```
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v1.0'}, {'type': 'git_output', 'command': 'git tag -l', 'contains': 'v2.0'}]
git tag
JSON Schema
Structured Output
(raw) {
"command": "git tag"
}
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v1.0'}, {'type': 'git_output', 'command': 'git tag -l', 'contains': 'v2.0'}]
git ls-remote --tags origin
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v1.0'}, {'type': 'git_output', 'command': 'git tag -l', 'contains': 'v2.0'}]
git ls-remote --tags origin
JSON Schema
Structured Output
(raw) {"command": "git ls-remote --tags origin"}
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v1.0'}, {'type': 'git_output', 'command': 'git tag -l', 'contains': 'v2.0'}]