Show tag details
Tests ability to show detailed tag information. Evaluates tag-inspection with git show.
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 'Release candidate' - 07
git tag -a v1.0.0-rc1 -m 'Release candidate 1'
Prompt
Show the details (message, tagger, date) of the tag 'v1.0.0-rc1'. Output ONLY the git command, nothing else.
Expected
git show v1.0.0-rc1
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git show v1.0.0-rc1
JSON Schema
Structured Output
(raw) {"command":"git show v1.0.0-rc1"}
```bash
git show v1.0.0-rc1 --format="%H %an %ad %s" --no-patch
```
git show v1.0.0-rc1
JSON Schema
Structured Output
(raw) {"command": "git show v1.0.0-rc1"}
git show v1.0.0-rc1
git show v1.0.0-rc1 --pretty='%b%nTagger: %an%nDate: %ad'
JSON Schema
Structured Output
(raw) {
"command": "git show v1.0.0-rc1 --pretty='%b%nTagger: %an%nDate: %ad'"
}
git show --decorate=v --pretty="%b%x09%an%x09%ci" v1.0.0-rc1
git show v1.0.0-rc1 --pretty=format:'Message: %s\nTagger: %an\nDate: %ai' --date=iso-strict
JSON Schema
Structured Output
(raw) {
"command": "git show v1.0.0-rc1 --pretty=format:'Message: %s\\nTagger: %an\\nDate: %ai' --date=iso-strict"
}
git show v1.0.0-rc1
git show v1.0.0-rc1
JSON Schema
Structured Output
(raw) {"command": "git show v1.0.0-rc1"}
git show v1.0.0-rc1 --format="%s%n%an%n%ad"
git show v1.0.0-rc1 --format="%(message)%n%(taggername)%n%(date)%n" --no-show-signature
JSON Schema
Structured Output
(raw) {"command": "git show v1.0.0-rc1 --format=\"%(message)%n%(taggername)%n%(date)%n\" --no-show-signature"}
git tag -l v1.0.0-rc1 --format='%(contents:subject) %(taggername) %(taggerdate)'
Failure: Failed assertions: [{'type': 'model_output', 'contains': 'git show'}]
git log --format="%h %s%nAuthor: %an <%ae>%nDate: %ad" --tags="v1.0.0-rc1" --all | head -4
Failure: Failed assertions: [{'type': 'model_output', 'contains': 'git show'}]
git tag -l v1.0.0-rc1 --format='%(refname:short) %(taggerdate:iso8601) %(taggername)'
JSON Schema
Structured Output
(raw) {
"command": "git tag -l v1.0.0-rc1 --format='%(refname:short) %(taggerdate:iso8601) %(taggername)'"
}
Failure: Failed assertions: [{'type': 'model_output', 'contains': 'git show'}]