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'
Prompt
Create an annotated git tag named 'v1.0.0' on HEAD with the message 'First stable release'. Output ONLY the git command, nothing else.
Expected
git tag -a v1.0.0 -m 'First stable release'
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git tag -a v1.0.0 -m 'First stable release' HEAD
git tag -a v1.0.0 -m 'First stable release'
JSON Schema
Structured Output
(raw) {"command": "git tag -a v1.0.0 -m 'First stable release'"}
git tag -a v1.0.0 -m 'First stable release'
git tag -a v1.0.0 -m 'First stable release'
JSON Schema
Structured Output
(raw) {
"command": "git tag -a v1.0.0 -m 'First stable release'"
}
git tag -a v1.0.0 -m "First stable release" HEAD
JSON Schema
Structured Output
(raw) {"command": "git tag -a v1.0.0 -m \"First stable release\" HEAD"}
git tag -a v1.0.0 -m "First stable release"
git tag -a v1.0.0 -m "First stable release" HEAD
JSON Schema
Structured Output
(raw) {
"command": "git tag -a v1.0.0 -m \"First stable release\" HEAD"
}
git tag -a v1.0.0 -m "First stable release" HEAD
git tag -a v1.0.0 -m 'First stable release' && git tag -p v1.0.0 -f 'Initial release' && git push --tags --force-with-lease
JSON Schema
Structured Output
(raw) {
"command": "git tag -a v1.0.0 -m 'First stable release' && git tag -p v1.0.0 -f 'Initial release' && git push --tags --force-with-lease"
}
git tag -a v1.0.0 -m 'First stable release'
git tag -a v1.0.0 -m 'First stable release'
JSON Schema
Structured Output
(raw) {
"command": "git tag -a v1.0.0 -m 'First stable release'"
}
git tag -a v1.0.0 -m 'First stable release' HEAD
git tag -a v1.0.0 -m 'First stable release' HEAD
JSON Schema
Structured Output
(raw) {"command": "git tag -a v1.0.0 -m 'First stable release' HEAD"}
```bash
git tag -a v1.0.0 -m "First stable release" HEAD
```
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git tag -l', 'contains': 'v1.0.0'}, {'type': 'git_output', 'command': 'git tag -n1 v1.0.0', 'contains': 'First stable release'}, {'type': 'git_output', 'command': 'git cat-file -t v1.0.0', 'contains': 'tag'}]