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.0' > version.txt - 05
git add version.txt - 06
git commit -m 'Version 1.0' - 07
git tag v1.0 - 08
echo 'v2.0' > version.txt - 09
git add version.txt - 10
git commit -m 'Version 2.0' - 11
git tag v2.0
Prompt
Create a worktree at '../v1-checkout' pointing at the tag 'v1.0'. Output ONLY the git worktree command, nothing else.
Expected
git worktree add ../v1-checkout v1.0
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git worktree add ../v1-checkout v1.0
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) { "command": "git worktree add ../v1-checkout v1.0" }
git worktree add ../v1-checkout v1.0
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../v1-checkout v1.0"
}
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../v1-checkout v1.0"}
git worktree add ../v1-checkout v1.0
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../v1-checkout v1.0"
}
git worktree add '../v1-checkout' 'refs/tags/v1.0'
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../v1-checkout v1.0"
}
git worktree add ../v1-checkout v1.0
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../v1-checkout v1.0"}
git worktree add ../v1-checkout v1.0
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../v1-checkout v1.0"
}
```sh
git worktree add ../v1-checkout v1.0
```
Failure: Failed assertions: [{'type': 'dir_exists', 'path': '../v1-checkout'}, {'type': 'file_content', 'path': '../v1-checkout/version.txt', 'value': 'v1.0'}]
```bash
git worktree add ../v1-checkout v1.0
```
Failure: Failed assertions: [{'type': 'dir_exists', 'path': '../v1-checkout'}, {'type': 'file_content', 'path': '../v1-checkout/version.txt', 'value': 'v1.0'}]