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 'Hello' > hello.txt - 05
git add hello.txt - 06
git commit -m 'Initial commit' - 07
git checkout -b feature - 08
echo 'Feature' > feature.txt - 09
git add feature.txt - 10
git commit -m 'Add feature' - 11
git checkout main - 12
git worktree add ../feature-wt feature - 13
rm -rf ../feature-wt
Prompt
The worktree at '../feature-wt' was deleted without using 'git worktree remove'. Run the command to repair/prune the stale worktree reference. Output ONLY the git command, nothing else.
Expected
git worktree prune
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git worktree prune
git worktree prune
git worktree prune
JSON Schema
Structured Output
(raw) {
"command": "git worktree prune"
}
git worktree prune
JSON Schema
Structured Output
(raw) {"command": "git worktree prune"}
git worktree prune
git worktree prune
JSON Schema
Structured Output
(raw) {
"command": "git worktree prune"
}
git worktree prune
JSON Schema
Structured Output
(raw) {
"command": "git worktree prune"
}
git worktree prune
git worktree prune
JSON Schema
Structured Output
(raw) {
"command": "git worktree prune"
}
git worktree prune
git worktree prune
JSON Schema
Structured Output
(raw) {
"command": "git worktree prune"
}
Invalid JSON. Output: git worktree prune
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)
```bash
git worktree prune
```
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git worktree list', 'not_contains': 'feature-wt'}]
git worktree remove /path/to/./worktree_usage_f009_txv2sgm1/feature-wt
Failure: Failed assertions: [{'type': 'git_output', 'command': 'git worktree list', 'not_contains': 'feature-wt'}]