List all tags
Tests ability to list all tags in a repository. Evaluates tag-enumeration command knowledge.
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 'v3' > app.txt - 13
git add app.txt - 14
git commit -m 'v3' - 15
git tag v3.0
Prompt
List all git tags in the repository. Output ONLY the git command, nothing else.
Expected
git tag -l
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git tag
git tag
git tag
JSON Schema
Structured Output
(raw) {
"command": "git tag"
}
```bash
git tag
```
git tag
JSON Schema
Structured Output
(raw) {"command": "git tag"}
git tag
git tag
JSON Schema
Structured Output
(raw) {
"command": "git tag"
}
git tag -l
git tag
JSON Schema
Structured Output
(raw) {
"command": "git tag"
}
git tag
git tag
JSON Schema
Structured Output
(raw) {"command": "git tag"}
git tag -l
git tag -l
JSON Schema
Structured Output
(raw) {"command": "git tag -l"}
Invalid JSON. Output:
JSON Schema
Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)