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 'v1' > app.txt - 05
git add app.txt - 06
git commit -m 'v1' - 07
git tag v1.0 - 08
echo 'v2' > app.txt - 09
git add app.txt - 10
git commit -m 'v2' - 11
git tag v2.0 - 12
echo 'beta' > app.txt - 13
git add app.txt - 14
git commit -m 'beta' - 15
git tag beta-1 - 16
echo 'rc' > app.txt - 17
git add app.txt - 18
git commit -m 'rc' - 19
git tag rc-1
Prompt
List only git tags matching the pattern 'v*'. Output ONLY the git command, nothing else.
Expected
git tag -l 'v*'
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git tag -l 'v*'
git tag -l 'v*'
JSON Schema
Structured Output
(raw) {"command": "git tag -l 'v*'"}
git tag -l 'v*'
git tag --list 'v*'
JSON Schema
Structured Output
(raw) {
"command": "git tag --list 'v*'"
}
```bash
git tag -l 'v*'
```
git tag -l 'v*'
JSON Schema
Structured Output
(raw) {"command": "git tag -l 'v*'"}
git tag --list 'v*'
git tag -l 'v*'
JSON Schema
Structured Output
(raw) {
"command": "git tag -l 'v*'"
}
git tag --list 'v*'
git tag --list 'v*'
JSON Schema
Structured Output
(raw) {
"command": "git tag --list 'v*'"
}
git tag -l "v*"
git tag -l 'v*'
JSON Schema
Structured Output
(raw) {
"command": "git tag -l 'v*'"
}
git tag -l 'v*'
git tag -l 'v*'
JSON Schema
Structured Output
(raw) {"command": "git tag -l 'v*'"}