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 'tracked' > tracked.txt - 05
git add tracked.txt - 06
git commit -m 'Initial commit' - 07
echo 'important' > important.tmp - 08
echo 'junk1' > junk1.tmp - 09
echo 'junk2' > junk2.txt
Prompt
Remove all untracked files except important.tmp. Output ONLY the git command, nothing else.
Expected
git clean -f -e important.tmp
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git clean -f -e important.tmp
git clean -f -e important.tmp
JSON Schema
Structured Output
(raw) {
"command": "git clean -f -e important.tmp"
}
git clean -f -e important.tmp
git clean -f -e important.tmp
JSON Schema
Structured Output
(raw) {
"command": "git clean -f -e important.tmp"
}
git clean -f -e important.tmp
JSON Schema
Structured Output
(raw) {"command": "git clean -f -e important.tmp"}
git clean -fd --exclude=important.tmp
git clean -fd --exclude=important.tmp .
JSON Schema
Structured Output
(raw) {
"command": "git clean -fd --exclude=important.tmp ."
}
git clean -fd --dry-run && git clean -fd --exclude=important.tmp
git clean -fd -e important.tmp
git clean -f -e important.tmp
JSON Schema
Structured Output
(raw) {
"command": "git clean -f -e important.tmp"
}
git clean -fd
JSON Schema
Structured Output
(raw) {
"command": "git clean -fd"
}
Failure: Failed assertions: [{'type': 'file_exists', 'path': 'important.tmp'}]
```bash
git clean -f -e important.tmp
```
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'junk1.tmp'}, {'type': 'file_not_exists', 'path': 'junk2.txt'}]
git clean -D --exclude=important.tmp
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'junk1.tmp'}, {'type': 'file_not_exists', 'path': 'junk2.txt'}]
git clean -i --exclude=important.tmp
JSON Schema
Structured Output
(raw) {
"command": "git clean -i --exclude=important.tmp"
}
Failure: Failed assertions: [{'type': 'file_not_exists', 'path': 'junk1.tmp'}, {'type': 'file_not_exists', 'path': 'junk2.txt'}]