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' > version.txt - 05
git add version.txt - 06
git commit -m 'Version 1' - 07
echo 'v2' > version.txt - 08
git add version.txt - 09
git commit -m 'Version 2'
Prompt
Create a detached git worktree at '../detached-wt' pointing at the first commit (HEAD~1). Output ONLY the git worktree command, nothing else.
Expected
git worktree add --detach ../detached-wt HEAD~1
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git worktree add ../detached-wt HEAD~1
git worktree add --detach ../detached-wt HEAD~1
git worktree add --detach ../detached-wt HEAD~1
JSON Schema
Structured Output
(raw) {
"command": "git worktree add --detach ../detached-wt HEAD~1"
}
git worktree add --detach ../detached-wt HEAD~1
JSON Schema
Structured Output
(raw) {"command": "git worktree add --detach ../detached-wt HEAD~1"}
git worktree add ../detached-wt HEAD~1
git worktree add ../detached-wt HEAD~1
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../detached-wt HEAD~1"
}
git worktree add ../detached-wt HEAD~1
git worktree add ../detached-wt $(git rev-parse HEAD~1)
JSON Schema
Structured Output
(raw) {
"command": "git worktree add ../detached-wt $(git rev-parse HEAD~1)"
}
git worktree add ../detached-wt HEAD~1
git worktree add ../detached-wt HEAD~1
JSON Schema
Structured Output
(raw) {"command": "git worktree add ../detached-wt HEAD~1"}
git worktree add --detach ../detached-wt HEAD~1
JSON Schema
Structured Output
(raw) {"command": "git worktree add --detach ../detached-wt HEAD~1"}
Invalid JSON. Output: git worktree add --detach ../detached-wt HEAD~1
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)
```sh
git worktree add --detach ../detached-wt HEAD~1
```
Failure: Failed assertions: [{'type': 'dir_exists', 'path': '../detached-wt'}, {'type': 'file_content', 'path': '../detached-wt/version.txt', 'value': 'v1'}]
```bash
git worktree add --detach ../detached-wt HEAD~1
```
Failure: Failed assertions: [{'type': 'dir_exists', 'path': '../detached-wt'}, {'type': 'file_content', 'path': '../detached-wt/version.txt', 'value': 'v1'}]