Stash with branch name in message
Tests ability to identify a stash by its custom branch-name message. Evaluates stash-message parsing for identification.

These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.

  1. 01 git init
  2. 02 git config user.email 'test@test.com'
  3. 03 git config user.name 'Test User'
  4. 04 git checkout -b my-feature-branch
  5. 05 echo 'Initial' > file.txt
  6. 06 git add file.txt
  7. 07 git commit -m 'Initial'
  8. 08 echo 'Feature work' > file.txt
  9. 09 git stash -m 'feature-on-my-feature-branch'
  10. 10 echo 'Main work' > file.txt
  11. 11 git add file.txt
  12. 12 git commit -m 'Main work'
Prompt
You were on 'my-feature-branch' and stashed 'Feature work' with message 'feature-on-my-feature-branch'. Which stash entry contains this work? Provide the stash reference.
Expected
stash@{0}

Scoped model quality, cost, API time, and token usage for stash_recovery/f012.

Loading...
Loading raw attempt evidence…
anthropic/claude-fable-5:high PASS 100% 192 in → 275 out (17 reasoning)
**Answer: `stash@{0}`** This stash entry matches your work on all counts: 1. **Branch match**: The stash list shows `On my-feature-branch`, confirming it was created while you were on `my-feature-branch`. 2. **Message match**: The stash message is `feature-on-my-feature-branch`, exactly as you described. 3. **Content match**: The diff shows the change in `file.txt` from `Initial` to `Feature work`, which is the feature work you stashed. To restore this work, you can run: ```bash git stash apply stash@{0} ``` or, to apply and remove it from the stash list in one step: ```bash git stash pop stash@{0} ``` Since it's the only (and most recent) stash entry, a plain `git stash pop` would also work.
anthropic/claude-fable-5:high__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:low PASS 100% 192 in → 102 out (0 reasoning)
The stash entry is **`stash@{0}`** — it's labeled "On my-feature-branch: feature-on-my-feature-branch" and its diff shows the "Feature work" change. Apply it with: ```bash git stash apply stash@{0} # or git stash pop stash@{0} ```
anthropic/claude-fable-5:low__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:max PASS 100% 192 in → 395 out (78 reasoning)
## Answer: `stash@{0}` This stash entry matches all the criteria: | Criterion | Match | |-----------|-------| | **Branch** | `On my-feature-branch` ✓ | | **Message** | `feature-on-my-feature-branch` ✓ | | **Content** | The diff shows `file.txt` changed from `Initial` to `Feature work` ✓ | To restore this work, you can run: ```bash git stash apply stash@{0} ``` or, to apply it and remove it from the stash list in one step: ```bash git stash pop stash@{0} ``` Since it's the only stash entry (and the most recent one), you could also simply run `git stash pop` without specifying the reference.
anthropic/claude-fable-5:max__json_schema PASS 100% 413 in → 126 out (39 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:medium PASS 100% 192 in → 222 out (0 reasoning)
The stash entry containing your work is: **`stash@{0}`** This is confirmed by: 1. **The stash list entry**: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` — it matches both the branch (`my-feature-branch`) and your custom message (`feature-on-my-feature-branch`). 2. **The diff contents**: The stash shows the change from `Initial` to `Feature work`, which is exactly the work you stashed. To restore it, you can run: ```bash git stash apply stash@{0} # apply and keep the stash # or git stash pop stash@{0} # apply and remove the stash ```
anthropic/claude-fable-5:medium__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:xhigh PASS 100% 192 in → 259 out (25 reasoning)
**Answer: `stash@{0}`** This is the correct stash entry because: 1. **The stash message matches**: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` — it was created on `my-feature-branch` with the message `feature-on-my-feature-branch`. 2. **The diff confirms the content**: The stash details show the change introduces the line `Feature work` in `file.txt`, replacing `Initial`. To restore this work, you could run: ```bash git stash apply stash@{0} # apply and keep the stash # or git stash pop stash@{0} # apply and remove the stash ``` Since it's the only (and most recent) stash, a plain `git stash pop` would also work.
anthropic/claude-fable-5:xhigh__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:high PASS 100% 188 in → 349 out (204 reasoning)
# Stash Reference The stash entry containing this work is: **`stash@{0}`** This stash entry: - **Branch**: Was stashed on `my-feature-branch` - **Message**: `feature-on-my-feature-branch` - **Content**: Contains the "Feature work" changes (file.txt modified from "Initial" to "Feature work")
anthropic/claude-haiku-4.5:high__json_schema PASS 100% 364 in → 335 out (264 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:low PASS 100% 188 in → 346 out (179 reasoning)
# Stash Reference The stash entry containing your "Feature work" is: **`stash@{0}`** This is confirmed by: - The stash list showing: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` - The diff showing the change from "Initial" to "Feature work" in file.txt - It's the most recent stash (index 0) You can apply this stash using: ```bash git stash apply stash@{0} # or simply git stash apply ```
anthropic/claude-haiku-4.5:low__json_schema PASS 100% 364 in → 221 out (190 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:medium PASS 100% 188 in → 255 out (150 reasoning)
# Stash Reference The stash entry containing this work is: **`stash@{0}`** This stash entry: - Is on the branch `my-feature-branch` - Has the message `feature-on-my-feature-branch` - Contains the "Feature work" changes (modified file.txt)
anthropic/claude-haiku-4.5:medium__json_schema PASS 100% 364 in → 418 out (321 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:none PASS 100% 159 in → 66 out (0 reasoning)
# Stash Reference The stash entry containing your work is: ``` stash@{0} ``` This stash entry contains the "Feature work" changes you stashed on `my-feature-branch` with the message `feature-on-my-feature-branch`.
anthropic/claude-haiku-4.5:none__json_schema PASS 100% 334 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:xhigh PASS 100% 188 in → 402 out (243 reasoning)
# Stash Reference The stash entry containing this work is: ## **stash@{0}** **Verification:** - ✓ On branch: `my-feature-branch` - ✓ Message: `feature-on-my-feature-branch` - ✓ Contains the change: `file.txt` modified with "Feature work" This is the most recent stash (index 0) and matches all the criteria from your scenario.
anthropic/claude-haiku-4.5:xhigh__json_schema PASS 100% 364 in → 219 out (172 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:high PASS 100% 159 in → 94 out (0 reasoning)
The stash entry containing your "Feature work" is: **`stash@{0}`** This is confirmed by both the stash list and the diff details: - **Branch:** `my-feature-branch` - **Stash message:** `feature-on-my-feature-branch` - **Change:** The file `file.txt` was modified from `Initial` to `Feature work`
anthropic/claude-opus-4.6:high__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:low PASS 100% 159 in → 10 out (0 reasoning)
`stash@{0}`
anthropic/claude-opus-4.6:low__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:max PASS 100% 159 in → 254 out (83 reasoning)
## Stash Reference The stash entry containing the "Feature work" is: **`stash@{0}`** This is confirmed by the stash list output: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` - **Branch**: `my-feature-branch` - **Message**: `feature-on-my-feature-branch` - **Change**: `file.txt` was modified from `Initial` to `Feature work` To restore this work, you would run: ```bash git stash apply stash@{0} ```
anthropic/claude-opus-4.6:max__json_schema PASS 100% 335 in → 93 out (60 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:medium PASS 100% 159 in → 10 out (0 reasoning)
`stash@{0}`
anthropic/claude-opus-4.6:medium__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:none PASS 100% 159 in → 114 out (0 reasoning)
**`stash@{0}`** This stash entry contains your work because it matches all three identifying criteria: - **Branch**: `On my-feature-branch` — confirms it was stashed from `my-feature-branch`. - **Message**: `feature-on-my-feature-branch` — matches the stash message you provided. - **Diff**: Shows `file.txt` was changed from `Initial` to `Feature work`, confirming it holds your "Feature work" changes.
anthropic/claude-opus-4.6:none__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:xhigh PASS 100% 159 in → 91 out (0 reasoning)
The stash entry containing your "Feature work" is: **`stash@{0}`** This is confirmed by both the stash list and the diff details: - **Branch:** `my-feature-branch` - **Message:** `feature-on-my-feature-branch` - **Change:** The file `file.txt` was modified from `Initial` to `Feature work`
anthropic/claude-opus-4.6:xhigh__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:high PASS 100% 197 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:high__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:low PASS 100% 197 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:low__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:max PASS 100% 197 in → 315 out (0 reasoning)
# Stash Reference The stash entry containing your "Feature work" is: **`stash@{0}`** ## Details Looking at the stash list, we can confirm this is the correct entry: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` This matches all your criteria: - ✅ **Branch**: `my-feature-branch` (shown after "On") - ✅ **Message**: `feature-on-my-feature-branch` - ✅ **Content**: The diff shows `file.txt` being changed from `Initial` to `Feature work` ## Useful Commands To work with this stash: ```bash # View the stash contents git stash show stash@{0} # View full diff git stash show -p stash@{0} # Apply the stash (keeps it in the stash list) git stash apply stash@{0} # Apply and remove from stash list git stash pop stash@{0} ```
anthropic/claude-opus-4.7:max__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:medium PASS 100% 197 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:medium__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:none PASS 100% 197 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:none__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:xhigh PASS 100% 197 in → 193 out (0 reasoning)
The stash reference containing your work is: **`stash@{0}`** This entry matches your described work: - **Branch:** `my-feature-branch` (shown by `On my-feature-branch:`) - **Message:** `feature-on-my-feature-branch` - **Content:** The diff shows `file.txt` being changed from `Initial` to `Feature work`, confirming this is your "Feature work" stash. You can restore it with: ```bash git stash apply stash@{0} # or to apply and remove from the stash list: git stash pop stash@{0} ```
anthropic/claude-opus-4.7:xhigh__json_schema PASS 100% 418 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:high PASS 100% 192 in → 223 out (11 reasoning)
The stash entry containing your work is: **`stash@{0}`** This matches your described work because: - **Branch**: The stash was created `On my-feature-branch` — matching the branch you were on. - **Message**: The description `feature-on-my-feature-branch` matches your stash message. - **Content**: The diff shows the change from `Initial` to `Feature work` in `file.txt`, confirming this is your "Feature work." To apply this stash, you can use: ```bash git stash apply stash@{0} ``` Or to apply it and remove it from the stash list: ```bash git stash pop stash@{0} ```
anthropic/claude-opus-4.8:high__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:low PASS 100% 192 in → 158 out (4 reasoning)
**stash@{0}** This stash entry contains your work. It matches on all counts: - **Branch:** `On my-feature-branch` ✓ - **Message:** `feature-on-my-feature-branch` ✓ - **Content:** The diff shows `file.txt` changing from `Initial` to `Feature work` ✓ You can apply it with `git stash apply stash@{0}` or apply and remove it with `git stash pop stash@{0}`.
anthropic/claude-opus-4.8:low__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:max PASS 100% 192 in → 465 out (41 reasoning)
The stash reference is: ``` stash@{0} ``` This entry matches your work on all counts: - **Branch:** `On my-feature-branch` ✓ - **Message:** `feature-on-my-feature-branch` ✓ - **Content:** The diff changes `file.txt` from `Initial` to `Feature work` ✓ You can restore it with either of these commands: ```bash # Apply and remove the stash entry git stash pop stash@{0} # Apply but keep the stash entry git stash apply stash@{0} ``` Since this is the most recent stash (index `0`), a plain `git stash pop` would also work.
anthropic/claude-opus-4.8:max__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:medium PASS 100% 192 in → 250 out (10 reasoning)
The stash entry containing your work is: **`stash@{0}`** This is confirmed by both the stash list and the stash details: - **Stash list:** `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` — matches your branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`). - **Stash details:** The diff shows `file.txt` being changed from `Initial` to `Feature work`, matching your "Feature work" description. You can apply or restore this stash with: ```bash git stash apply stash@{0} # applies but keeps the stash # or git stash pop stash@{0} # applies and removes the stash from the list ```
anthropic/claude-opus-4.8:medium__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:none PASS 100% 192 in → 194 out (0 reasoning)
The stash reference is **`stash@{0}`**. This matches your work because: - **Branch:** The stash shows `On my-feature-branch`, matching the branch you were on. - **Message:** The message `feature-on-my-feature-branch` matches your stash message. - **Content:** The diff shows the change from `Initial` to `Feature work`, confirming this contains your feature work. To restore this work, you can use: ```bash git stash apply stash@{0} # applies but keeps the stash # or git stash pop stash@{0} # applies and removes the stash ```
anthropic/claude-opus-4.8:none__json_schema PASS 100% 413 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:xhigh PASS 100% 192 in → 268 out (18 reasoning)
The stash reference containing your work is: **`stash@{0}`** You can verify this from the stash list: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` This matches your criteria: - **Branch:** `my-feature-branch` ✓ - **Message:** `feature-on-my-feature-branch` ✓ - **Content:** The diff shows the change from `Initial` to `Feature work` in `file.txt` ✓ To apply this stash, you can use either: ```bash git stash apply stash@{0} # Applies the stash but keeps it in the list git stash pop stash@{0} # Applies the stash and removes it from the list ```
anthropic/claude-opus-4.8:xhigh__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:high PASS 100% 159 in → 295 out (33 reasoning)
## Stash Reference The work is contained in: ``` stash@{0} ``` ### Evidence from Git Stash List ```bash stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` | Detail | Value | |---|---| | **Stash Reference** | `stash@{0}` | | **Branch** | `my-feature-branch` | | **Message** | `feature-on-my-feature-branch` | | **Change** | `Initial` → `Feature work` in `file.txt` | ### How to Verify ```bash git stash show stash@{0} ``` ### How to Restore ```bash git stash pop stash@{0} # or git stash apply stash@{0} ``` Since `stash@{0}` is the **most recent stash entry** (index 0), it is the first item in the stash stack and directly matches the branch and message provided.
anthropic/claude-sonnet-4.6:high__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:low PASS 100% 159 in → 171 out (0 reasoning)
## Stash Reference The stash entry containing the "Feature work" is: ``` stash@{0} ``` ### Why `stash@{0}`? | Field | Details | |-------|---------| | **Stash Reference** | `stash@{0}` | | **Branch** | `my-feature-branch` | | **Message** | `feature-on-my-feature-branch` | | **Change** | `Initial` → `Feature work` in `file.txt` | `stash@{0}` is the **most recent stash entry** (index `0`), and the diff confirms it contains the `Feature work` change, making it the correct stash reference.
anthropic/claude-sonnet-4.6:low__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:max PASS 100% 159 in → 385 out (101 reasoning)
## Stash Reference The work is contained in: ``` stash@{0} ``` --- ### How to Read the Stash Entry ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch │ │ │ │ │ └── Custom stash message │ └── Branch where stash was created └── Stash reference (most recent = 0) ``` ### Confirmation from Stash Details ```diff -Initial +Feature work ``` This diff confirms `stash@{0}` holds the **"Feature work"** change to `file.txt`. --- ### To Restore This Work ```bash # Apply and keep the stash git stash apply stash@{0} # Apply and drop the stash git stash pop stash@{0} ``` > **Note:** `stash@{0}` is always the **most recently created** stash entry. Index numbers increment with each new stash (`stash@{1}`, `stash@{2}`, etc.).
anthropic/claude-sonnet-4.6:max__json_schema PASS 100% 335 in → 119 out (80 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:medium PASS 100% 159 in → 220 out (0 reasoning)
## Stash Reference The work is contained in: ``` stash@{0} ``` ### Why `stash@{0}`? | Property | Details | |----------|---------| | **Stash Reference** | `stash@{0}` | | **Branch** | `my-feature-branch` | | **Message** | `feature-on-my-feature-branch` | | **Change** | `Initial` → `Feature work` in `file.txt` | `stash@{0}` is the **most recent stash entry** (index `0`), and the `git stash list` output confirms: ```bash stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` ### To restore this work: ```bash git stash pop stash@{0} # or git stash apply stash@{0} ```
anthropic/claude-sonnet-4.6:medium__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:none PASS 100% 159 in → 251 out (0 reasoning)
## Stash Reference The stash entry containing the "Feature work" is: ``` stash@{0} ``` ### Why This is Correct ```bash $ git stash list stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` | Property | Value | |----------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `my-feature-branch` | | **Message** | `feature-on-my-feature-branch` | | **Change** | `Initial` → `Feature work` in `file.txt` | ### How to Apply It ```bash # Apply and keep in stash list git stash apply stash@{0} # Apply and remove from stash list git stash pop stash@{0} ``` Since it is the **most recent stash entry** (`{0}`), it sits at the **top of the stash stack**, which confirms it was the last stash saved before inspecting the list.
anthropic/claude-sonnet-4.6:none__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:xhigh PASS 100% 159 in → 288 out (51 reasoning)
## Stash Reference The stash entry containing the **"Feature work"** is: ``` stash@{0} ``` ### Verification from `git stash list`: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` | Property | Value | |---|---| | **Stash Reference** | `stash@{0}` | | **Branch** | `my-feature-branch` | | **Message** | `feature-on-my-feature-branch` | ### Confirmed by the diff: ```diff -Initial +Feature work ``` This confirms `stash@{0}` holds the **"Feature work"** change made to `file.txt`. ### To restore this work: ```bash git stash pop stash@{0} # or git stash apply stash@{0} ```
anthropic/claude-sonnet-4.6:xhigh__json_schema PASS 100% 335 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:high PASS 100% 192 in → 110 out (0 reasoning)
The stash reference containing that work is **`stash@{0}`**. This is confirmed by the stash list entry: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` And verified by the diff content, which shows the change from `Initial` to `Feature work` — matching the described stashed changes.
anthropic/claude-sonnet-5:high__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-sonnet-5:low PASS 100% 192 in → 8 out (0 reasoning)
stash@{0}
anthropic/claude-sonnet-5:low__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:medium PASS 100% 192 in → 8 out (0 reasoning)
stash@{0}
anthropic/claude-sonnet-5:medium__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:none PASS 100% 192 in → 80 out (0 reasoning)
**stash@{0}** is the stash entry containing this work. It matches both the description ("On my-feature-branch: feature-on-my-feature-branch") and the diff showing the change to "Feature work", confirming it's the correct stash reference.
anthropic/claude-sonnet-5:none__json_schema PASS 100% 413 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-sonnet-5:xhigh PASS 100% 192 in → 87 out (0 reasoning)
**stash@{0}** This is the only stash entry in the list, and it matches the description: created on `my-feature-branch` with the message `feature-on-my-feature-branch`. The diff also confirms it contains the change to `file.txt` with content `Feature work`.
anthropic/claude-sonnet-5:xhigh__json_schema PASS 100% 413 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
arcee-ai/trinity-large-thinking:high PASS 100% 119 in → 263 out (221 reasoning)
The stash entry that contains the work is **stash@{0}**. This is confirmed by the stash list entry `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` and the diff showing the change from "Initial" to "Feature work".
arcee-ai/trinity-large-thinking:low PASS 100% 119 in → 345 out (361 reasoning)
`stash@{0}`
arcee-ai/trinity-large-thinking:medium PASS 100% 119 in → 307 out (269 reasoning)
The stash entry that contains the work is **stash@{0}**. This is confirmed by the stash list entry `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` and the diff showing the change from "Initial" to "Feature work".
arcee-ai/trinity-large-thinking:xhigh PASS 100% 119 in → 257 out (257 reasoning)
The stash entry that contains the work is **stash@{0}**.
arcee-ai/trinity-mini:high PASS 100% 119 in → 239 out (185 reasoning)
Based on the providedinformation: 1. The stash message is exactly: `feature-on-my-feature-branch`. 2. The Git stash list shows: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` Therefore, the stash entry containing the work from your 'my-feature-branch' stash with the message `feature-on-my-feature-branch` is: **stash@{0}**
arcee-ai/trinity-mini:high__json_schema PASS 100% 119 in → 214 out (228 reasoning)
stash@{0}:On my-feature-branch: feature-on-my-feature-branch
JSON Schema Structured Output
(raw) { "stash": "stash@{0}:On my-feature-branch: feature-on-my-feature-branch" }
arcee-ai/trinity-mini:low PASS 100% 119 in → 345 out (229 reasoning)
Based on the provided information, the stash entry containing your work is: **stash@{0}** ### Explanation: 1. **Stash Message**: The stash was created with the message `feature-on-my-feature-branch`, which matches the entry `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` in the stash list. 2. **Stash Reference**: The stash list shows `stash@{0}` as the first entry, and the details confirm the changes (`-Initial` → `+Feature work`) correspond to your stashed work. 3. **Order**: Since `stash@{0}` is the most recent stash, it is the correct reference for your work. **Stash Reference**: `stash@{0}`
arcee-ai/trinity-mini:low__json_schema PASS 100% 119 in → 222 out (246 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
arcee-ai/trinity-mini:medium PASS 100% 119 in → 307 out (207 reasoning)
Based on the provided information, the stash entry containing your work is: **stash@{0}** This is confirmed by the Git stash list entry: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` The stash details also match your work: ``` diff --git a/file.txt b/file.txt index a77fa51..2835a23 100644 --- a/file.txt +++ b/file.txt @@ -1 +1 @@ -Initial +Feature work ``` This is the only stash entry in the list with the exact message "feature-on-my-feature-branch" and the corresponding file changes.
arcee-ai/trinity-mini:medium__json_schema PASS 100% 119 in → 178 out (183 reasoning)
stash@{0}: On my-feature-branch: feature-on-my-feature-branch
JSON Schema Structured Output
(raw) { "stash": "stash@{0}: On my-feature-branch: feature-on-my-feature-branch" }
arcee-ai/trinity-mini:xhigh PASS 100% 119 in → 328 out (218 reasoning)
Based on theprovided information, the stash entry containing your work is: **stash@{0}** ### Explanation: 1. **Stash Message**: The stash was created with the message `feature-on-my-feature-branch`, which matches the entry `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`. 2. **Branch Context**: The stash was created on `my-feature-branch`, and the entry explicitly references this branch. 3. **Stash Details**: The diff shows the exact changes (`-Initial` → `+Feature work`) you described, confirming this is the correct stash. No other stashes are listed, so `stash@{0}` is the only candidate.
arcee-ai/trinity-mini:xhigh__json_schema PASS 100% 119 in → 220 out (244 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:high PASS 100% 212 in → 187 out (147 reasoning)
The work is in **`stash@{0}`**. It contains the change `-Initial` → `+Feature work` and is labeled: `On my-feature-branch: feature-on-my-feature-branch`
deepseek/deepseek-v4-flash-0731:high__json_schema PASS 100% 127 in → 186 out (173 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
deepseek/deepseek-v4-flash-0731:low PASS 100% 133 in → 160 out (149 reasoning)
The stash entry containing this work is `stash@{0}`.
deepseek/deepseek-v4-flash-0731:low__json_schema PASS 100% 127 in → 294 out (269 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
deepseek/deepseek-v4-flash-0731:max PASS 100% 219 in → 159 out (150 reasoning)
The work is in **`stash@{0}`**.
deepseek/deepseek-v4-flash-0731:max__json_schema PASS 100% 206 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:medium PASS 100% 127 in → 402 out (310 reasoning)
The work is contained in **`stash@{0}`**. The stash list shows `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`, which exactly matches your branch and stash message, and the diff details confirm the change from `Initial` to `Feature work`. To apply it, you would use: ```bash git stash apply stash@{0} ```
deepseek/deepseek-v4-flash-0731:medium__json_schema PASS 100% 127 in → 195 out (167 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:none PASS 100% 127 in → 113 out (0 reasoning)
Based on the information provided, the stash entry that contains the "Feature work" is **`stash@{0}`**. The stash reference is: **`stash@{0}`** This is confirmed by the `git stash list` output, which shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` And the stash details for `stash@{0}` show the diff containing the change from "Initial" to "Feature work", which is exactly the stashed work you're looking for.
deepseek/deepseek-v4-flash-0731:none__json_schema PASS 100% 127 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
deepseek/deepseek-v4-flash-0731:xhigh PASS 100% 127 in → 511 out (374 reasoning)
The stash entry that contains this work is **`stash@{0}`**. Specifically, the **`git stash list`** output shows only one entry, and its details match your description exactly: - **Stash reference:** `stash@{0}` (you can also refer to it simply as `stash` since it is the most recent stash). - **Branch:** `my-feature-branch` - **Stash message:** `feature-on-my-feature-branch` - **Content:** The diff changes `-Initial` to `+Feature work`, confirming your "Feature work" is stored here.
deepseek/deepseek-v4-flash-0731:xhigh__json_schema PASS 100% 127 in → 169 out (134 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:high PASS 100% 127 in → 96 out (79 reasoning)
The work is contained in the stash entry `stash@{0}`.
deepseek/deepseek-v4-flash:high__json_schema PASS 100% 129 in → 122 out (108 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:low PASS 100% 127 in → 128 out (114 reasoning)
The stash entry containing the work is `stash@{0}`.
deepseek/deepseek-v4-flash:low__json_schema PASS 100% 129 in → 138 out (122 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:medium PASS 100% 127 in → 118 out (84 reasoning)
Thestash entry containing the work is `stash@{0}`, as indicated by the stash list and the diff showing the change from "Initial" to "Feature work".
deepseek/deepseek-v4-flash:medium__json_schema PASS 100% 127 in → 151 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:none PASS 100% 127 in → 90 out (0 reasoning)
Based on the `git stash list` output you provided, the stash entry containing the 'Feature work' is: **`stash@{0}`** This is the correct stash reference because: - The stash message matches exactly: `feature-on-my-feature-branch` - The branch context matches: `On my-feature-branch` - The diff confirms the change from "Initial" to "Feature work" in `file.txt`
deepseek/deepseek-v4-flash:none__json_schema PASS 100% 129 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:xhigh PASS 100% 206 in → 161 out (145 reasoning)
The stash entry containing the work is `stash@{0}`.
deepseek/deepseek-v4-flash:xhigh__json_schema PASS 100% 229 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:high PASS 100% 127 in → 99 out (83 reasoning)
The stash entry containing this work is `stash@{0}`.
deepseek/deepseek-v4-pro:high__json_schema PASS 100% 324 in → 114 out (101 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:low PASS 100% 127 in → 125 out (109 reasoning)
The stash entry containing this work is `stash@{0}`.
deepseek/deepseek-v4-pro:low__json_schema PASS 100% 127 in → 132 out (123 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-pro:medium PASS 100% 127 in → 139 out (126 reasoning)
The stash entry is `stash@{0}`.
deepseek/deepseek-v4-pro:medium__json_schema PASS 100% 324 in → 111 out (98 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:none PASS 100% 127 in → 79 out (0 reasoning)
Based on the git stash list, the stash entry that contains the 'Feature work' is: **`stash@{0}`** The stash list shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` And the stash details confirm that this stash contains the change from "Initial" to "Feature work" in file.txt.
deepseek/deepseek-v4-pro:none__json_schema PASS 100% 324 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:xhigh PASS 100% 206 in → 238 out (231 reasoning)
stash@{0}
deepseek/deepseek-v4-pro:xhigh__json_schema PASS 100% 127 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3-flash-preview:high PASS 100% 143 in → 197 out (183 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemini-3-flash-preview:high__json_schema PASS 100% 144 in → 280 out (272 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3-flash-preview:low PASS 100% 143 in → 146 out (133 reasoning)
The stash reference is: **`stash@{0}`**
google/gemini-3-flash-preview:low__json_schema PASS 100% 206 in → 134 out (125 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3-flash-preview:medium PASS 100% 143 in → 191 out (177 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemini-3-flash-preview:medium__json_schema PASS 100% 206 in → 288 out (280 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3-flash-preview:xhigh PASS 100% 143 in → 202 out (189 reasoning)
The stash reference is: **`stash@{0}`**
google/gemini-3-flash-preview:xhigh__json_schema PASS 100% 206 in → 239 out (231 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.1-flash-lite-preview:high PASS 100% 143 in → 258 out (247 reasoning)
The stash reference is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:high__json_schema PASS 100% 206 in → 201 out (188 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.1-flash-lite-preview:low PASS 100% 144 in → 158 out (143 reasoning)
The stash entry that contains your work is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:low__json_schema PASS 100% 144 in → 136 out (123 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.1-flash-lite-preview:medium PASS 100% 143 in → 172 out (161 reasoning)
The stash reference is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:medium__json_schema PASS 100% 144 in → 158 out (149 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-flash-lite-preview:xhigh PASS 100% 143 in → 344 out (333 reasoning)
The stash reference is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:xhigh__json_schema PASS 100% 206 in → 227 out (218 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-pro-preview:high PASS 100% 143 in → 256 out (243 reasoning)
The stash entry containing this work is **stash@{0}**.
google/gemini-3.1-pro-preview:high__json_schema PASS 100% 206 in → 236 out (228 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.1-pro-preview:low PASS 100% 143 in → 241 out (223 reasoning)
The stashed work you are looking for is located in **`stash@{0}`**.
google/gemini-3.1-pro-preview:low__json_schema PASS 100% 206 in → 109 out (96 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.1-pro-preview:medium PASS 100% 143 in → 276 out (263 reasoning)
The work is contained in stash entry **stash@{0}**.
google/gemini-3.1-pro-preview:medium__json_schema PASS 100% 206 in → 99 out (91 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.1-pro-preview:xhigh PASS 100% 143 in → 218 out (205 reasoning)
The stash entry containing your work is **stash@{0}**.
google/gemini-3.1-pro-preview:xhigh__json_schema PASS 100% 206 in → 215 out (206 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash-lite:high PASS 100% 144 in → 213 out (208 reasoning)
`stash@{0}`
google/gemini-3.5-flash-lite:high__json_schema PASS 100% 144 in → 394 out (381 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash-lite:low PASS 100% 144 in → 24 out (0 reasoning)
Based on the provided Git stash list, the stash reference containing your work is: **`stash@{0}`**
google/gemini-3.5-flash-lite:low__json_schema PASS 100% 144 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash-lite:max PASS 100% 144 in → 226 out (222 reasoning)
stash@{0}
google/gemini-3.5-flash-lite:max__json_schema PASS 100% 144 in → 238 out (225 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash-lite:medium PASS 100% 143 in → 191 out (187 reasoning)
stash@{0}
google/gemini-3.5-flash-lite:medium__json_schema PASS 100% 144 in → 246 out (237 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash-lite:xhigh PASS 100% 143 in → 212 out (197 reasoning)
The stash reference that contains this work is **`stash@{0}`**.
google/gemini-3.5-flash-lite:xhigh__json_schema PASS 100% 206 in → 322 out (314 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash:high PASS 100% 143 in → 257 out (242 reasoning)
The stash entry that contains this work is **`stash@{0}`**.
google/gemini-3.5-flash:high__json_schema PASS 100% 206 in → 199 out (191 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash:low PASS 100% 143 in → 178 out (164 reasoning)
The stash entry containing this work is **`stash@{0}`**.
google/gemini-3.5-flash:low__json_schema PASS 100% 206 in → 102 out (93 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash:medium PASS 100% 143 in → 338 out (324 reasoning)
The stash entry containing your work is **`stash@{0}`**.
google/gemini-3.5-flash:medium__json_schema PASS 100% 206 in → 188 out (180 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash:xhigh PASS 100% 143 in → 329 out (312 reasoning)
The stash reference that contains this work is: **`stash@{0}`**
google/gemini-3.5-flash:xhigh__json_schema PASS 100% 206 in → 226 out (218 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:high PASS 100% 143 in → 249 out (235 reasoning)
The stash entry containing this work is **`stash@{0}`**.
google/gemini-3.6-flash:high__json_schema PASS 100% 206 in → 210 out (202 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:low PASS 100% 144 in → 141 out (127 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemini-3.6-flash:low__json_schema PASS 100% 206 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.6-flash:max PASS 100% 143 in → 197 out (183 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemini-3.6-flash:max__json_schema PASS 100% 144 in → 192 out (184 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:medium PASS 100% 144 in → 252 out (237 reasoning)
The stash entry that contains this work is **`stash@{0}`**.
google/gemini-3.6-flash:medium__json_schema PASS 100% 206 in → 174 out (166 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:xhigh PASS 100% 144 in → 209 out (195 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemini-3.6-flash:xhigh__json_schema PASS 100% 144 in → 138 out (130 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemma-4-26b-a4b-it:high PASS 100% 159 in → 178 out (166 reasoning)
The stash reference is **`stash@{0}`**.
google/gemma-4-26b-a4b-it:high__json_schema PASS 100% 159 in → 220 out (182 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:low PASS 100% 159 in → 225 out (194 reasoning)
The stash entry containing this work is **`stash@{0}`**.
google/gemma-4-26b-a4b-it:low__json_schema PASS 100% 159 in → 239 out (202 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:medium PASS 100% 159 in → 162 out (127 reasoning)
The stash reference containing this work is **`stash@{0}`**.
google/gemma-4-26b-a4b-it:medium__json_schema PASS 100% 159 in → 268 out (237 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash" : "stash@{0}" }
google/gemma-4-26b-a4b-it:none PASS 100% 156 in → 15 out (0 reasoning)
The work is contained in: **`stash@{0}`**
google/gemma-4-26b-a4b-it:none__json_schema PASS 100% 156 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:xhigh PASS 100% 159 in → 193 out (165 reasoning)
The stash entry containing this work is **`stash@{0}`**.
google/gemma-4-26b-a4b-it:xhigh__json_schema PASS 100% 159 in → 166 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:high PASS 100% 159 in → 190 out (161 reasoning)
The stash entry containing this work is **`stash@{0}`**.
google/gemma-4-31b-it:high__json_schema PASS 100% 159 in → 129 out (109 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:low PASS 100% 159 in → 202 out (1 reasoning)
The stash reference that contains this work is: **`stash@{0}`**
google/gemma-4-31b-it:low__json_schema PASS 100% 159 in → 234 out (1 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:medium PASS 100% 159 in → 192 out (156 reasoning)
The stash reference is **`stash@{0}`**.
google/gemma-4-31b-it:medium__json_schema PASS 100% 162 in → 189 out (179 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemma-4-31b-it:none PASS 100% 156 in → 15 out (0 reasoning)
The stash reference containing this work is: `stash@{0}`
google/gemma-4-31b-it:none__json_schema PASS 100% 156 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:xhigh PASS 100% 159 in → 185 out (1 reasoning)
The stash reference that contains this work is: **`stash@{0}`**
google/gemma-4-31b-it:xhigh__json_schema PASS 100% 158 in → 194 out (161 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
ibm-granite/granite-4.1-8b PASS 100% 148 in → 71 out
The stash entry that contains the work "Feature work" with the message "feature-on-my-feature-branch" is **stash@{0}**. This is confirmed by both the `git stash list` output and the detailed `stash@{0}` diff showing the change from "Initial" to "Feature work" in `file.txt`.
ibm-granite/granite-4.1-8b__json_schema PASS 100% 148 in → 12 out
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
inclusionai/ling-2.6-flash PASS 100% 151 in → 56 out
The stash entry that contains the work is: **stash@{0}** This matches the stash message "feature-on-my-feature-branch" and was created on branch "my-feature-branch", as shown in the `git stash list` output.
inclusionai/ling-2.6-flash__json_schema PASS 100% 151 in → 16 out
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
liquid/lfm-2-24b-a2b PASS 100% 142 in → 419 out
To find which stash entry contains your work, let's break down what you've shared: ### Your situation: - You were on branch `my-feature-branch`. - You ran `git stash` with the message `feature-on-my-feature-branch`. - The current branch is still `my-feature-branch`. - The file `file.txt` now shows `+Feature work` in its diff, indicating that the change was staged into the stash. ### Stash List Output: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` This tells us: - There is only one stash (`stash@{0}`). - It corresponds to the branch `my-feature-branch`. - The commit message associated with the stash is `feature-on-my-feature-branch`. ### Conclusion: The stash entry that contains your work is: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` And the **stash reference** (the commit hash) for this entry would be something like: ``` <commit-hash> ``` But since the actual commit hash isn't shown here, you can retrieve it by running: ```bash git stash show -p ``` Or to see the full stash details including the commit message and hash: ```bash git stash list -v ``` Or inspect the stash directly: ```bash git stash show <stash-reference> ``` Where `<stash-reference>` is the commit hash from the stash output above. ### Summary: - **Stash reference:** `feature-on-my-feature-branch` (from the stash message) - **Full stash key:** `stash@{0}` - **Commit hash:** You can get it via `git stash show` or similar commands. Let me know if you'd like help retrieving the exact commit hash!
minimax/minimax-m2.5:high PASS 100% 149 in → 171 out (174 reasoning)
The work is in the top‑most stash entry: **stash@{0}**
minimax/minimax-m2.5:high__json_schema PASS 100% 149 in → 159 out (167 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash" : "stash@{0}" }
minimax/minimax-m2.5:low PASS 100% 149 in → 287 out (232 reasoning)
The stashed work is in **stash@{0}**. This entry shows the message “On my‑feature‑branch: feature‑on‑my‑feature‑branch” and contains the change from “Initial” to “Feature work” in `file.txt`.
minimax/minimax-m2.5:low__json_schema PASS 100% 177 in → 196 out (184 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.5:medium PASS 100% 149 in → 389 out (342 reasoning)
The stash you’re looking for is the most recent one: **`stash@{0}`** It shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` and contains the diff with the “Feature work” change. You can reference it directly in commands (e.g., `git stash show stash@{0}` or `git stash apply stash@{0}`).
minimax/minimax-m2.5:medium__json_schema PASS 100% 149 in → 128 out (116 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.5:xhigh PASS 100% 177 in → 300 out (281 reasoning)
The stash entry that holds the “Feature work” is `stash@{0}`.
minimax/minimax-m2.5:xhigh__json_schema PASS 100% 149 in → 134 out (130 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.7:high PASS 100% 149 in → 198 out (223 reasoning)
The work is in **`stash@{0}`**.
minimax/minimax-m2.7:low PASS 100% 151 in → 188 out (172 reasoning)
The work is in the top stash entry: ``` stash@{0} ```
minimax/minimax-m2.7:low__json_schema PASS 100% 288 in → 190 out (180 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
minimax/minimax-m2.7:medium PASS 100% 151 in → 191 out (178 reasoning)
The stashed work is in **stash@{0}**.
minimax/minimax-m2.7:medium__json_schema PASS 100% 288 in → 297 out (287 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
minimax/minimax-m2.7:xhigh PASS 100% 149 in → 215 out (229 reasoning)
The stashed work is in the most recent stash entry: ``` stash@{0} ```
minimax/minimax-m2.7:xhigh__json_schema PASS 100% 288 in → 255 out (242 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:high PASS 100% 287 in → 202 out (116 reasoning)
The stash entry containing your work is: **`stash@{0}`** This is confirmed by the matching details in the stash list: - **Branch:** `my-feature-branch` ✓ - **Message:** `feature-on-my-feature-branch` ✓ - **Content:** The diff shows `Feature work` in `file.txt`, matching what you stashed. To apply this stash later, you can use: ```bash git stash apply stash@{0} # or git stash pop stash@{0} ```
minimax/minimax-m3:high__json_schema PASS 100% 274 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:low PASS 100% 287 in → 129 out (99 reasoning)
The stash entry containing this work is: **`stash@{0}`** This matchesboth criteria: - Branch: `my-feature-branch` (shown as "On my-feature-branch") - Message: `feature-on-my-feature-branch`
minimax/minimax-m3:low__json_schema PASS 100% 274 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:medium PASS 100% 287 in → 243 out (120 reasoning)
The stash reference containing your work is: **`stash@{0}`** This is confirmed by two matching indicators: 1. **Stash list entry**: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` — both the branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`) match. 2. **Stash contents**: The diff shows the change from `-Initial` to `+Feature work` in `file.txt`, which corresponds to your "Feature work". You can restore this work using: - `git stash pop` (apply and remove from stash) - `git stash apply stash@{0}` (apply but keep in stash)
minimax/minimax-m3:medium__json_schema PASS 100% 274 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:xhigh PASS 100% 287 in → 150 out (74 reasoning)
The stash entry containing this work is: **`stash@{0}`** This is confirmed by: - The stash list shows: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` — matching both the branch name and the message. - The stash diff shows the change from `-Initial` to `+Feature work` in `file.txt`, which corresponds to the 'Feature work' you stashed.
minimax/minimax-m3:xhigh__json_schema PASS 100% 274 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
mistralai/devstral-2512 PASS 100% 137 in → 129 out
The stash entry containing your work is `stash@{0}`. This is indicated by: 1. The `git stash list` output showing `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` 2. The stash details showing the exact changes you mentioned ("Feature work" replacing "Initial" in file.txt) You can reference this stash entry as `stash@{0}` in Git commands like: - `git stash show stash@{0}` - `git stash apply stash@{0}` - `git stash drop stash@{0}`
mistralai/devstral-2512__json_schema PASS 100% 137 in → 14 out
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
mistralai/mistral-medium-3-5:high PASS 100% 149 in → 197 out (134 reasoning)
The stash entry containing the work is identified by its position in the stash list and the matching message. Based on the provided `git stash list` output, the relevant entry is the first one, which corresponds to the stash reference: **stash@{0}**
mistralai/mistral-medium-3-5:high__json_schema PASS 100% 137 in → 131 out (112 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:low PASS 100% 149 in → 251 out (183 reasoning)
The stash entry that contains the work stashed on 'my-feature-branch' with the message 'feature-on-my-feature-branch' is the most recent one, as indicated by the provided Git stash list. Given that the only entry matches the branch and message, the stash reference is: stash@{0}
mistralai/mistral-medium-3-5:low__json_schema PASS 100% 137 in → 189 out (185 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:medium PASS 100% 149 in → 185 out (146 reasoning)
The stash entry containing the work stashed with the message 'feature-on-my-feature-branch' is: **stash@{0}**
mistralai/mistral-medium-3-5:medium__json_schema PASS 100% 137 in → 166 out (164 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:none PASS 100% 149 in → 114 out (0 reasoning)
The stash entry containing your work is `stash@{0}`. This is the reference you would use to apply or manipulate this stash. For example: - To apply it: `git stash apply stash@{0}` - To pop it: `git stash pop stash@{0}` - To drop it: `git stash drop stash@{0}` The stash message "feature-on-my-feature-branch" and the change ("Feature work") in the diff confirm this is the stash you're looking for.
mistralai/mistral-medium-3-5:none__json_schema PASS 100% 137 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:xhigh PASS 100% 149 in → 204 out (158 reasoning)
The stash entry that matches the provided message and work is the most recent one, as indicated by the Git stash list. Therefore, the reference to the stash entry is: **stash@{0}**
mistralai/mistral-medium-3-5:xhigh__json_schema PASS 100% 137 in → 199 out (194 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k2.6:high PASS 100% 120 in → 285 out (268 reasoning)
The stash entry containing that work is: **`stash@{0}`**
moonshotai/kimi-k2.6:high__json_schema PASS 100% 119 in → 179 out (198 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.6:low PASS 100% 120 in → 168 out (148 reasoning)
The stash reference is: **`stash@{0}`** This is the entry with the message "On my-feature-branch: feature-on-my-feature-branch", and the diff confirms it contains the change from "Initial" to "Feature work".
moonshotai/kimi-k2.6:low__json_schema PASS 100% 120 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k2.6:medium PASS 100% 120 in → 116 out (123 reasoning)
The stash entry containing that work is: **`stash@{0}`**
moonshotai/kimi-k2.6:xhigh PASS 100% 119 in → 293 out (246 reasoning)
The stash reference is: **`stash@{0}`** This is the entry from `my-feature-branch` with the message `feature-on-my-feature-branch`, and its diff confirms it contains the `'Feature work'` change.
moonshotai/kimi-k2.6:xhigh__json_schema PASS 100% 120 in → 232 out (256 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:high PASS 100% 120 in → 118 out (90 reasoning)
The stashed work is in: ```text stash@{0} ``` So the stash reference is **`stash@{0}`**.
moonshotai/kimi-k2.7-code:high__json_schema PASS 100% 120 in → 90 out (78 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:low PASS 100% 119 in → 119 out (75 reasoning)
The work is in **stash@{0}**. That matches both the branch (`my-feature-branch`) and the stash message (`feature-on-my-feature-branch`), and the diff shows the “Feature work” change.
moonshotai/kimi-k2.7-code:low__json_schema PASS 100% 120 in → 172 out (190 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:medium PASS 100% 120 in → 201 out (145 reasoning)
The stash reference is: **`stash@{0}`** This is the entry with the message: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` It contains the `file.txt` change from `Initial` to `Feature work`.
moonshotai/kimi-k2.7-code:medium__json_schema PASS 100% 120 in → 116 out (121 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:xhigh PASS 100% 120 in → 186 out (158 reasoning)
The stash entry you're looking for is: **`stash@{0}`** This is the one with the message `feature-on-my-feature-branch` on `my-feature-branch`, and its diff shows the change from `Initial` to `Feature work`.
moonshotai/kimi-k2.7-code:xhigh__json_schema PASS 100% 210 in → 96 out (85 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k3:high PASS 100% 197 in → 270 out (158 reasoning)
**`stash@{0}`** This entry matches all the criteria: - **Branch**: Created on `my-feature-branch` (shown as "On my-feature-branch") - **Message**: `feature-on-my-feature-branch` - **Content**: The diff confirms it contains the change from `Initial` to `Feature work` in `file.txt` You can restore it with: ```bash git stash apply stash@{0} # or git stash pop stash@{0} ```
moonshotai/kimi-k3:high__json_schema PASS 100% 197 in → 250 out (125 reasoning)
**`stash@{0}`** This entry matches both criteria: - The message `On my-feature-branch: feature-on-my-feature-branch` confirms it was stashed on 'my-feature-branch' with your custom message. - The diff confirms the content: `file.txt` was changed from `Initial` to `Feature work`. To restore it, you could run: ```bash git stash apply stash@{0} # or simply git stash pop ``` (since it's the most recent stash, `stash@{0}` is the default).
moonshotai/kimi-k3:low PASS 100% 197 in → 287 out (166 reasoning)
**stash@{0}** This entry matches all three criteria: - **Branch**: "On my-feature-branch" — matches the branch you were on - **Message**: "feature-on-my-feature-branch" — matches the stash message - **Content**: The diff shows the change from `Initial` to `Feature work` in `file.txt` To restore this work, you could run: ```bash git stash apply stash@{0} ``` or simply `git stash pop` since it's the most recent stash entry.
moonshotai/kimi-k3:low__json_schema PASS 100% 197 in → 280 out (151 reasoning)
**`stash@{0}`** This stash entry contains your work. It matches on all criteria: 1. **Message**: `feature-on-my-feature-branch` — exactly what you specified when stashing 2. **Branch**: `On my-feature-branch` — the branch you were on 3. **Content**: The diff confirms it contains the `Feature work` change to `file.txt` To restore it, you can use: ```bash git stash apply stash@{0} ``` or simply `git stash pop` since it's the most recent stash entry.
moonshotai/kimi-k3:max PASS 100% 197 in → 325 out (212 reasoning)
**stash@{0}** This entry matches all the criteria: - **Branch**: `On my-feature-branch` ✓ - **Message**: `feature-on-my-feature-branch` ✓ - **Content**: The diff shows `file.txt` changed from `Initial` to `Feature work` ✓ To restore this work, you could run: ```bash git stash pop stash@{0} ``` or simply `git stash pop` since it's the most recent entry.
moonshotai/kimi-k3:max__json_schema PASS 100% 197 in → 336 out (200 reasoning)
**stash@{0}** This is the stash entry containing your work. It matches all the criteria: 1. **Branch**: Created on `my-feature-branch` (shown as "On my-feature-branch:") 2. **Message**: Labeled `feature-on-my-feature-branch` 3. **Content**: The diff confirms it contains the change from `Initial` to `Feature work` in `file.txt` To restore this work, you could use: ```bash git stash apply stash@{0} ``` or simply `git stash pop` since it's the most recent stash entry (index 0).
moonshotai/kimi-k3:medium PASS 100% 197 in → 255 out (95 reasoning)
**Stash reference: `stash@{0}`** This is the stash entry you're looking for because: 1. **Branch matches**: The stash was created on `my-feature-branch` (shown as `On my-feature-branch:` in the listing). 2. **Message matches**: The stash message is `feature-on-my-feature-branch`, exactly as specified. 3. **Content matches**: The diff confirms the change adds `Feature work` to `file.txt` (replacing `Initial`). To restore this work, you can use: - `git stash apply stash@{0}` — applies the changes and keeps the stash entry - `git stash pop stash@{0}` — applies the changes and removes the stash entry
moonshotai/kimi-k3:medium__json_schema PASS 100% 300 in → 101 out (77 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k3:xhigh PASS 100% 197 in → 369 out (236 reasoning)
**`stash@{0}`** This entry matches all the criteria: - **Branch**: Created `On my-feature-branch` ✓ - **Message**: `feature-on-my-feature-branch` ✓ - **Content**: The diff shows `file.txt` changed from `Initial` to `Feature work` ✓ To restore this work, you could run: ```bash git stash apply stash@{0} # or simply git stash pop ``` Since it's the most recent stash (index 0), `git stash pop` without a reference would also retrieve it.
moonshotai/kimi-k3:xhigh__json_schema PASS 100% 300 in → 90 out (66 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
nvidia/nemotron-3-nano-30b-a3b:high PASS 100% 150 in → 233 out (153 reasoning)
Thestash entry that holds that work is referenced as: ``` stash@{0} ``` That entry was created while you were on `my-feature-branch` and is labeled with the message **`feature-on-my-feature-branch`**. You can see it listed in `git stash list` as the first (index 0) stash.
nvidia/nemotron-3-nano-30b-a3b:high__json_schema PASS 100% 150 in → 110 out (95 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:low PASS 100% 150 in → 185 out (105 reasoning)
The stash you created contains the work you stashed under the message **`feature-on-my-feature-branch`**. Its entry in the stash list is: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` So the stash reference you’re looking for is **`stash@{0}`**.
nvidia/nemotron-3-nano-30b-a3b:low__json_schema PASS 100% 150 in → 121 out (99 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:medium PASS 100% 150 in → 238 out (164 reasoning)
The stash that contains “Feature work” is referenced as **`stash@{0}`**. This is the entry shown in your `git stash list` output, labeled with the branch name and commit message “feature‑on‑my‑feature‑branch”.
nvidia/nemotron-3-nano-30b-a3b:medium__json_schema PASS 100% 150 in → 93 out (76 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash":"stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:none PASS 100% 150 in → 66 out (0 reasoning)
**Stash reference:** ``` stash@{0} ``` The entry labeled `stash@{0}` (i.e., “stash@{0}: On my-feature-branch: feature-on-my-feature-branch”) is the one that contains the “Feature work” changes you stashed.
nvidia/nemotron-3-nano-30b-a3b:none__json_schema PASS 100% 150 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:xhigh PASS 100% 150 in → 773 out (509 reasoning)
Based on the provided Git stash list, the stash entry containing the work described as **"feature-on-my-feature-branch"** is explicitly listed as: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` ### Answer: The stash reference is **`stash@{0}`**. ### Explanation: - The stash list shows **only one entry** (index `0`). - The message associated with this stash is **"feature-on-my-feature-branch"** (as described in the stash details). - The problem explicitly states you stashed work with the message **`feature-on-my-feature-branch`** on the branch `my-feature-branch`. - The stash entry `stash@{0}` is the **only stash** matching this description. Thus, the stash reference to reference this specific entry is **`stash@{0}`**. > 💡 **Note**: Git stash indices start at `0` for the most recent stash. Since this is the only stash in the list, it is `stash@{0}`. You can apply it later with: > `git stash apply stash@{0}` or `git stash pop stash@{0}`.
nvidia/nemotron-3-nano-30b-a3b:xhigh__json_schema PASS 100% 150 in → 200 out (162 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:high PASS 100% 150 in → 98 out (69 reasoning)
The work you stashed is in the first (and only) stash entry: **stash@{0}**
nvidia/nemotron-3-super-120b-a12b:high__json_schema PASS 100% 150 in → 62 out (46 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:low PASS 100% 150 in → 67 out (53 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:low__json_schema PASS 100% 150 in → 110 out (89 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:medium PASS 100% 150 in → 73 out (53 reasoning)
The work is stored in **`stash@{0}`**.
nvidia/nemotron-3-super-120b-a12b:medium__json_schema PASS 100% 150 in → 98 out (77 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:none PASS 100% 150 in → 127 out (0 reasoning)
stash@{0} contains the work stashed on 'my-feature-branch' with the message 'feature-on-my-feature-branch'. The stash reference is: **stash@{0}** This is confirmed by the output of `git stash list`, which shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` And the stash details show the diff of the change: changing `Initial` to `Feature work` in `file.txt`, matching the description. Thus, the correct stash entry is **stash@{0}**.
nvidia/nemotron-3-super-120b-a12b:none__json_schema PASS 100% 150 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:xhigh PASS 100% 150 in → 72 out (63 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:xhigh__json_schema PASS 100% 150 in → 112 out (91 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-5.4-mini:high PASS 100% 124 in → 86 out (43 reasoning)
The work is in **`stash@{0}`**. **Stash reference:** `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`
openai/gpt-5.4-mini:high__json_schema PASS 100% 168 in → 63 out (43 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:low PASS 100% 124 in → 41 out (9 reasoning)
The work is in **`stash@{0}`**. Stash reference: ```bash stash@{0} ```
openai/gpt-5.4-mini:low__json_schema PASS 100% 168 in → 32 out (12 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:medium PASS 100% 124 in → 30 out (11 reasoning)
The work is in **`stash@{0}`**.
openai/gpt-5.4-mini:medium__json_schema PASS 100% 168 in → 40 out (20 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:none PASS 100% 124 in → 28 out (0 reasoning)
The work is in **`stash@{0}`**. Reference: ```bash stash@{0} ```
openai/gpt-5.4-mini:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:xhigh PASS 100% 124 in → 94 out (46 reasoning)
The work is in **`stash@{0}`**. **Stash reference:** `stash@{0}` **Message:** `On my-feature-branch: feature-on-my-feature-branch`
openai/gpt-5.4-mini:xhigh__json_schema PASS 100% 168 in → 90 out (70 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:high PASS 100% 124 in → 17 out (0 reasoning)
The work is in **`stash@{0}`**.
openai/gpt-5.4-nano:high__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:low PASS 100% 124 in → 28 out (0 reasoning)
The stash entry is **`stash@{0}`** (message: *feature-on-my-feature-branch*).
openai/gpt-5.4-nano:low__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:medium PASS 100% 124 in → 29 out (0 reasoning)
The work is in **stash@{0}** (`On my-feature-branch: feature-on-my-feature-branch`).
openai/gpt-5.4-nano:medium__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:none PASS 100% 124 in → 32 out (0 reasoning)
The work is contained in: **stash@{0}** — `On my-feature-branch: feature-on-my-feature-branch`
openai/gpt-5.4-nano:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:xhigh PASS 100% 124 in → 18 out (0 reasoning)
The work is contained in **`stash@{0}`**.
openai/gpt-5.4-nano:xhigh__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:high PASS 100% 124 in → 34 out (17 reasoning)
The stash entry is: `stash@{0}`
openai/gpt-5.4:high__json_schema PASS 100% 168 in → 45 out (25 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:low PASS 100% 124 in → 15 out (0 reasoning)
The stash entry is: `stash@{0}`
openai/gpt-5.4:low__json_schema PASS 100% 168 in → 30 out (10 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:medium PASS 100% 124 in → 36 out (19 reasoning)
The work is in: `stash@{0}`
openai/gpt-5.4:medium__json_schema PASS 100% 168 in → 54 out (34 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:none PASS 100% 124 in → 15 out (0 reasoning)
The stash entry is `stash@{0}`.
openai/gpt-5.4:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:xhigh PASS 100% 124 in → 60 out (43 reasoning)
The work is in `stash@{0}`.
openai/gpt-5.4:xhigh__json_schema PASS 100% 168 in → 111 out (91 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:high PASS 100% 124 in → 37 out (26 reasoning)
stash@{0}
openai/gpt-5.5:high__json_schema PASS 100% 168 in → 52 out (32 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:low PASS 100% 124 in → 20 out (9 reasoning)
stash@{0}
openai/gpt-5.5:low__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:medium PASS 100% 124 in → 37 out (26 reasoning)
stash@{0}
openai/gpt-5.5:medium__json_schema PASS 100% 168 in → 40 out (20 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:none PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.5:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:xhigh PASS 100% 124 in → 72 out (61 reasoning)
stash@{0}
openai/gpt-5.5:xhigh__json_schema PASS 100% 168 in → 104 out (84 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:high PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:high__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:low PASS 100% 124 in → 17 out (0 reasoning)
The work is in **`stash@{0}`**.
openai/gpt-5.6-luna:low__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:max PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:max__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:medium PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:medium__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:none PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:xhigh PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:xhigh__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:high PASS 100% 124 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:high__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:low PASS 100% 124 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:low__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:max PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-sol:max__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:medium PASS 100% 124 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:medium__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:none PASS 100% 124 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:xhigh PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-sol:xhigh__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:high PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:high__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:low PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:low__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:max PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:max__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:medium PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:medium__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:none PASS 100% 124 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:none__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:xhigh PASS 100% 124 in → 15 out (0 reasoning)
The work is in: `stash@{0}`
openai/gpt-5.6-terra:xhigh__json_schema PASS 100% 168 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-120b:high PASS 100% 183 in → 188 out (171 reasoning)
The work is in **`stash@{0}`**.
openai/gpt-oss-120b:high__json_schema PASS 100% 183 in → 141 out (129 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-120b:low PASS 100% 185 in → 48 out (22 reasoning)
The work is in the most recent stash entry: **`stash@{0}`**.
openai/gpt-oss-120b:low__json_schema PASS 100% 185 in → 33 out (11 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-120b:medium PASS 100% 172 in → 119 out (95 reasoning)
The stash entry you’re looking for is the most recent one: **`stash@{0}`**
openai/gpt-oss-120b:medium__json_schema PASS 100% 183 in → 109 out (94 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-120b:xhigh PASS 100% 185 in → 249 out (192 reasoning)
The stash entry that holds the “Feature work” you saved is: **`stash@{0}`** You can refer to it (e.g., to apply or inspect) with `stash@{0}` (e.g., `git stash apply stash@{0}`).
openai/gpt-oss-120b:xhigh__json_schema PASS 100% 183 in → 130 out (118 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-20b:high PASS 100% 184 in → 379 out (343 reasoning)
The stash entry that contains the work is: ``` stash@{0} ```
openai/gpt-oss-20b:high__json_schema PASS 100% 187 in → 229 out (242 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-20b:low PASS 100% 185 in → 91 out (36 reasoning)
The stash entry that holds the “Feature work” you created on `my‑feature‑branch` is: ``` stash@{0} ``` This is the first entry in your stash list (`stash@{0}`) and it contains the changes you described.
openai/gpt-oss-20b:low__json_schema PASS 100% 187 in → 29 out (11 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-20b:medium PASS 100% 185 in → 172 out (143 reasoning)
The work is stored in the most recent stash entry: **`stash@{0}`**
openai/gpt-oss-20b:medium__json_schema PASS 100% 172 in → 146 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
openai/gpt-oss-20b:xhigh PASS 100% 187 in → 260 out (246 reasoning)
The work is in the first stash entry: ``` stash@{0} ```
openai/gpt-oss-20b:xhigh__json_schema PASS 100% 185 in → 180 out (161 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
poolside/laguna-m.1:high PASS 100% 137 in → 304 out (226 reasoning)
The stash entry containing your "Feature work" is: ``` stash@{0} ``` This is confirmed by the `git stash list` output showing the stash was created on `my-feature-branch` with the exact message `feature-on-my-feature-branch`, and the diff indicates the changes made ("Initial" → "Feature work") match the work you described.
poolside/laguna-m.1:high__json_schema PASS 100% 137 in → 225 out (208 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-m.1:low PASS 100% 137 in → 387 out (279 reasoning)
The stash entry containing your "Feature work" is: **`stash@{0}`** This matches the entry from `git stash list` exactly: - It was created on `my-feature-branch` (the branch you were working on) - The stash message is `feature-on-my-feature-branch` - The diff shows the change from "Initial" to "Feature work" in `file.txt` You can restore this work with: ```bash git stash apply stash@{0} ```
poolside/laguna-m.1:low__json_schema PASS 100% 137 in → 262 out (251 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-m.1:medium PASS 100% 137 in → 369 out (243 reasoning)
The stash entry containing the 'Feature work' with the message 'feature-on-my-feature-branch' is **stash@{0}**. This is determined by the output of `git stash list`, which shows: - `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` The diff in the details confirms the changes match your description: - Removed "Initial" and added "Feature work" in `file.txt` Use `git stash apply stash@{0}` to restore this work, or `git stash drop stash@{0}` if you want to remove it after applying.
poolside/laguna-m.1:medium__json_schema PASS 100% 137 in → 259 out (248 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-m.1:none PASS 100% 137 in → 117 out (0 reasoning)
The stash entry containing the 'Feature work' is **stash@{0}**, as confirmed by the `git stash list` output which explicitly shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` Additionally, the diff in the stash details demonstrates the changes (from "Initial" to "Feature work") originally made on `my-feature-branch`. Git’s stash list order is newest-first, so `stash@{0}` is the most recent stash and corresponds to the work described. **Answer:** `stash@{0}`
poolside/laguna-m.1:none__json_schema PASS 100% 137 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-m.1:xhigh PASS 100% 137 in → 385 out (258 reasoning)
The stash entry containing your "Feature work" is `stash@{0}`. ### Explanation: - From `git stash list`, the entry `stash@{0}` explicitly states: `On my-feature-branch: feature-on-my-feature-branch` This matches both the branch name (`my-feature-branch`) and the stash message (`feature-on-my-feature-branch`). - The diff shows modifications to `file.txt` from "Initial" to "Feature work," confirming this is the correct stash. ### To restore it: ```bash git stash apply stash@{0} ```
poolside/laguna-m.1:xhigh__json_schema PASS 100% 137 in → 252 out (241 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:high PASS 100% 137 in → 425 out (277 reasoning)
The stash entry containing the "Feature work" stashed on `my-feature-branch` with the message `feature-on-my-feature-branch` is: **`stash@{0}`** ### Explanation: - The `git stash list` explicitly shows: `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` This directly matches the branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`) you described. - The stash details confirm the changes (`Initial` → `Feature work` in `file.txt`) are part of this entry. - Since there is only one stash entry listed (`stash@{0}`), it unambiguously holds the work in question.
poolside/laguna-xs-2.1:high__json_schema PASS 100% 137 in → 242 out (231 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:low PASS 100% 137 in → 375 out (232 reasoning)
The stash entry that contains the "Feature work" stashed on 'my-feature-branch' is: **`stash@{0}`** ### Explanation: - The `git stash list` shows `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`, which directly matches: - **Branch**: `my-feature-branch` - **Stash message**: `feature-on-my-feature-branch` - The stash details confirm this entry includes the changes from `Initial` to `Feature work` in `file.txt`, aligning with the described "Feature work" stashed. No other stash entries are listed, so `stash@{0}` is the correct reference.
poolside/laguna-xs-2.1:low__json_schema PASS 100% 137 in → 231 out (220 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:medium PASS 100% 137 in → 360 out (265 reasoning)
The stash entry containing the "Feature work" is: **`stash@{0}`** This is confirmed by the `git stash list` output, which explicitly shows: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` The stash reference `stash@{0}` corresponds to the most recent stash entry, created on the `my-feature-branch` branch with the message `feature-on-my-feature-branch`.
poolside/laguna-xs-2.1:medium__json_schema PASS 100% 137 in → 168 out (157 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:none PASS 100% 137 in → 143 out (0 reasoning)
The stash entry that contains the 'Feature work' is referenced as: ``` stash@{0} ``` This stash entry is associated with the branch `my-feature-branch` and has the message `feature-on-my-feature-branch`, which matches the description of stashing 'Feature work' with that message. </think>The stash entry containing the 'Feature work' is: ``` stash@{0} ``` This is identified by: - The stash message `feature-on-my-feature-branch` matching your description - The branch context `On my-feature-branch` - The diff showing the feature work (changing "Initial" to "Feature work") Reference: `stash@{0}`
poolside/laguna-xs-2.1:none__json_schema PASS 100% 137 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-xs-2.1:xhigh PASS 100% 137 in → 266 out (183 reasoning)
The stash entry that contains the "Feature work" with the message "feature-on-my-feature-branch" is: **stash@{0}** This is the most recent stash entry (numbered `stash@{0}` in the list), and it matches both the branch name (`my-feature-branch`) and the stash message (`feature-on-my-feature-branch`). The diff confirms it includes the changes you stashed.
poolside/laguna-xs-2.1:xhigh__json_schema PASS 100% 137 in → 361 out (350 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:high PASS 100% 174 in → 258 out (166 reasoning)
Based on the information provided, the stash entry that contains your 'Feature work' is: **`stash@{0}`** This is confirmed by: - The stash list showing `stash@{0}` is on `my-feature-branch` with the message `feature-on-my-feature-branch` - The stash details showing the exact "Feature work" changes you mentioned (replacing "Initial" with "Feature work" in file.txt)
poolside/laguna-xs.2:high__json_schema PASS 100% 174 in → 168 out (153 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-xs.2:low PASS 100% 174 in → 172 out (111 reasoning)
Based on the git stash list you provided, the stash entry containing your 'Feature work' is: **stash@{0}** This is the most recent stash entry, which matches your description of being on 'my-feature-branch' with the message 'feature-on-my-feature-branch'.
poolside/laguna-xs.2:low__json_schema PASS 100% 174 in → 120 out (109 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:medium PASS 100% 174 in → 215 out (138 reasoning)
Based on the stash list you provided, the work you stashed on 'my-feature-branch' with the message 'feature-on-my-feature-branch' is contained in: **stash@{0}** This is the most recent stash entry (stash@{0}) and it shows it was created while on the 'my-feature-branch' branch with your specified stash message.
poolside/laguna-xs.2:medium__json_schema PASS 100% 174 in → 204 out (193 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:none PASS 100% 174 in → 90 out (0 reasoning)
Based on the Git stash list you provided, the stash entry containing your 'Feature work' is: **stash@{0}** This is the most recent stash entry (index 0) which was created while you were on 'my-feature-branch' with the message 'feature-on-my-feature-branch'. The diff confirms it contains your "Feature work" changes (replacing "Initial" with "Feature work" in file.txt).
poolside/laguna-xs.2:none__json_schema PASS 100% 174 in → 17 out (0 reasoning)
stash@{0} the stash reference is stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0} the stash reference is stash@{0}"}
poolside/laguna-xs.2:xhigh PASS 100% 174 in → 217 out (144 reasoning)
Based on the git stash list you provided, the work stashed on 'my-feature-branch' with the message 'feature-on-my-feature-branch' is contained in: **stash@{0}** This is confirmed by the stash list entry showing: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ```
poolside/laguna-xs.2:xhigh__json_schema PASS 100% 174 in → 172 out (161 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
qwen/qwen3.6-27b:high PASS 100% 139 in → 327 out (1 reasoning)
The stash reference is **`stash@{0}`**.
qwen/qwen3.6-27b:high__json_schema PASS 100% 139 in → 196 out (184 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:low PASS 100% 139 in → 403 out (383 reasoning)
The stash reference is: **`stash@{0}`**
qwen/qwen3.6-27b:low__json_schema PASS 100% 139 in → 644 out (623 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:medium PASS 100% 139 in → 928 out (1 reasoning)
Based on the list and details provided, the work is contained in: **`stash@{0}`** This is confirmed because: 1. **Branch Match:** The stash was created "On **my-feature-branch**". 2. **Message Match:** The message is "**feature-on-my-feature-branch**". 3. **Content Match:** The diff shows the change to "+Feature work".
qwen/qwen3.6-27b:medium__json_schema PASS 100% 139 in → 682 out (1 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:none PASS 100% 141 in → 19 out (0 reasoning)
The stash entry that contains this work is: **`stash@{0}`**
qwen/qwen3.6-27b:none__json_schema PASS 100% 141 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:xhigh PASS 100% 139 in → 919 out (854 reasoning)
The stash reference is `stash@{0}`.
qwen/qwen3.6-27b:xhigh__json_schema PASS 100% 139 in → 858 out (810 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:high PASS 100% 139 in → 395 out (375 reasoning)
The stash entry containing this work is **`stash@{0}`**.
qwen/qwen3.6-35b-a3b:high__json_schema PASS 100% 139 in → 734 out (689 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:low PASS 100% 139 in → 322 out (298 reasoning)
The stash entry containing this work is **`stash@{0}`**.
qwen/qwen3.6-35b-a3b:low__json_schema PASS 100% 139 in → 390 out (355 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:medium PASS 100% 139 in → 460 out (467 reasoning)
The stash reference containing this work is: **`stash@{0}`**
qwen/qwen3.6-35b-a3b:medium__json_schema PASS 100% 139 in → 748 out (698 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:none PASS 100% 141 in → 76 out (0 reasoning)
The stash entry that contains this work is: **`stash@{0}`** This is confirmed by both the `git stash list` output, which explicitly shows `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`, and the stash details, which show the diff containing the "Feature work" changes to `file.txt`.
qwen/qwen3.6-35b-a3b:none__json_schema PASS 100% 141 in → 10 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
qwen/qwen3.6-35b-a3b:xhigh PASS 100% 139 in → 324 out (303 reasoning)
The stash entry containing this work is: **`stash@{0}`**
qwen/qwen3.6-35b-a3b:xhigh__json_schema PASS 100% 139 in → 742 out (724 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-flash:high PASS 100% 139 in → 356 out (336 reasoning)
The stash entry containing this work is **`stash@{0}`**.
qwen/qwen3.6-flash:low PASS 100% 139 in → 447 out (396 reasoning)
The stash entry containing this work is **`stash@{0}`**. It directly matches your branch (`my-feature-branch`) and stash message (`feature-on-my-feature-branch`) as shown in the stash list.
qwen/qwen3.6-flash:medium PASS 100% 139 in → 600 out (579 reasoning)
The stash entry containing this work is: **`stash@{0}`**
qwen/qwen3.6-flash:none PASS 100% 141 in → 111 out (0 reasoning)
The stash entry that contains the work is **stash@{0}**. **Reasoning:** 1. The command `git stash list` shows the current stashes. 2. The output line `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` matches both the branch name (`my-feature-branch`) and the stash message (`feature-on-my-feature-branch`) specified in your query. 3. The accompanying diff confirms the content change from "Initial" to "Feature work".
qwen/qwen3.6-flash:xhigh PASS 100% 139 in → 823 out (807 reasoning)
The stash reference is `stash@{0}`.
qwen/qwen3.7-flash:high PASS 100% 139 in → 756 out (740 reasoning)
The stash reference is `stash@{0}`.
qwen/qwen3.7-flash:low PASS 100% 139 in → 351 out (333 reasoning)
The stash reference is: **`stash@{0}`**
qwen/qwen3.7-flash:max PASS 100% 139 in → 486 out (438 reasoning)
The stash entry containing your work is **`stash@{0}`**. This matches exactly with the branch name (`my-feature-branch`) and stash message (`feature-on-my-feature-branch`) you provided.
qwen/qwen3.7-flash:medium PASS 100% 139 in → 603 out (587 reasoning)
The stash reference is: `stash@{0}`
qwen/qwen3.7-flash:none PASS 100% 141 in → 85 out (0 reasoning)
The stash entry that contains the work is **stash@{0}**. This is confirmed by: 1. The `git stash list` output showing `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`. 2. The stash details showing the diff for `file.txt` changing from "Initial" to "Feature work", which matches the description of the stashed work.
qwen/qwen3.7-flash:xhigh PASS 100% 139 in → 528 out (509 reasoning)
The stash entry containing this work is `stash@{0}`.
qwen/qwen3.7-max:high PASS 100% 139 in → 152 out (120 reasoning)
Based on the provided Git stash list and details, the stash entry that contains your work is: **stash@{0}**
qwen/qwen3.7-max:low PASS 100% 139 in → 140 out (130 reasoning)
stash@{0}
qwen/qwen3.7-max:medium PASS 100% 139 in → 157 out (147 reasoning)
stash@{0}
qwen/qwen3.7-max:none PASS 100% 141 in → 85 out (0 reasoning)
The stash entry containing the "Feature work" is: **`stash@{0}`** This is confirmed by both the stash list message ("On my-feature-branch: feature-on-my-feature-branch") and the diff details showing the change from "Initial" to "Feature work" in `file.txt`. Since it's the only (and most recent) stash entry, it resides at index `0`.
qwen/qwen3.7-max:xhigh PASS 100% 139 in → 154 out (144 reasoning)
stash@{0}
qwen/qwen3.7-plus:high PASS 100% 139 in → 547 out (526 reasoning)
The stash reference that contains this work is: `stash@{0}`
qwen/qwen3.7-plus:low PASS 100% 139 in → 358 out (337 reasoning)
The stash entry that contains this work is: `stash@{0}`
qwen/qwen3.7-plus:medium PASS 100% 139 in → 386 out (313 reasoning)
The stash entry that contains this work is: **`stash@{0}`** This is confirmed by the stash list showing the correct branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`), as well as the stash details showing the exact diff where "Initial" was changed to "Feature work".
qwen/qwen3.7-plus:none PASS 100% 141 in → 53 out (0 reasoning)
Based on the git stash list provided, the stash entry containing the work from 'my-feature-branch' with the message 'feature-on-my-feature-branch' is the most recent entry. The stash reference is: **`stash@{0}`**
qwen/qwen3.7-plus:xhigh PASS 100% 139 in → 384 out (374 reasoning)
stash@{0}
tencent/hy3:high PASS 100% 137 in → 182 out (108 reasoning)
The stash entry that contains this work is **`stash@{0}`**. This is confirmed by both the stash list (showing the message "feature-on-my-feature-branch" on "my-feature-branch") and the stash details (showing the change from "Initial" to "Feature work" in file.txt).
tencent/hy3:high__json_schema PASS 100% 137 in → 291 out (251 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:low PASS 100% 137 in → 217 out (198 reasoning)
The stash entry containing that work is: **`stash@{0}`**
tencent/hy3:low__json_schema PASS 100% 137 in → 176 out (145 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:medium PASS 100% 137 in → 256 out (235 reasoning)
The work is contained in the stash entry: **`stash@{0}`**
tencent/hy3:medium__json_schema PASS 100% 137 in → 198 out (176 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:none PASS 100% 140 in → 67 out (0 reasoning)
The stash entry that contains this work is: **`stash@{0}`** This is the stash reference for the entry created on `my-feature-branch` with the message **`feature-on-my-feature-branch`**, and its diff shows the change from `Initial` to `Feature work`.
tencent/hy3:none__json_schema PASS 100% 140 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:xhigh PASS 100% 137 in → 273 out (265 reasoning)
`stash@{0}`
tencent/hy3:xhigh__json_schema PASS 100% 137 in → 166 out (151 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
thinkingmachines/inkling-small:high PASS 100% 133 in → 74 out (31 reasoning)
The work is in **stash@{0}**. Reference: `stash@{0}` (message: "On my-feature-branch: feature-on-my-feature-branch").
thinkingmachines/inkling-small:high__json_schema PASS 100% 133 in → 135 out (119 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:low PASS 100% 133 in → 58 out (13 reasoning)
The work is in **stash@{0}**. Stash reference: `stash@{0}` (message: `On my-feature-branch: feature-on-my-feature-branch`).
thinkingmachines/inkling-small:low__json_schema PASS 100% 133 in → 29 out (12 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:max PASS 100% 133 in → 109 out (72 reasoning)
The work is in **stash@{0}**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch`, branch: `my-feature-branch`).
thinkingmachines/inkling-small:max__json_schema PASS 100% 133 in → 106 out (90 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:medium PASS 100% 133 in → 192 out (127 reasoning)
The work is in **stash@{0}**. Reference: `stash@{0}` This matches the `git stash list` output (`On my-feature-branch: feature-on-my-feature-branch`) and the diff shows the `Feature work` change in `file.txt`.
thinkingmachines/inkling-small:medium__json_schema PASS 100% 133 in → 121 out (107 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
thinkingmachines/inkling-small:none PASS 100% 133 in → 15 out (0 reasoning)
The work is in **stash@{0}**.<|end_message|>
thinkingmachines/inkling-small:xhigh PASS 100% 133 in → 180 out (120 reasoning)
The work is in **stash@{0}**. Reference: `stash@{0}` It matches the message `feature-on-my-feature-branch` and the branch `my-feature-branch`, and the diff shows the change from `Initial` to `Feature work`.
thinkingmachines/inkling-small:xhigh__json_schema PASS 100% 133 in → 115 out (99 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling:high PASS 100% 133 in → 166 out (124 reasoning)
The stash entry is **`stash@{0}`** (referenced as `stash@{0}: On my-feature-branch: feature-on-my-feature-branch`).
thinkingmachines/inkling:low PASS 100% 133 in → 57 out (11 reasoning)
The work is in **stash@{0}**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch`, on branch `my-feature-branch`).
thinkingmachines/inkling:max PASS 100% 133 in → 160 out (81 reasoning)
The work is in **`stash@{0}`** (reference: `stash@{0}`). From the list: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` This corresponds to the stashed change with message `feature-on-my-feature-branch` made on `my-feature-branch`.
thinkingmachines/inkling:max__json_schema PASS 100% 133 in → 124 out (107 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling:medium PASS 100% 133 in → 89 out (43 reasoning)
The work is in **`stash@{0}`**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch` on `my-feature-branch`).
thinkingmachines/inkling:none PASS 100% 133 in → 9 out (0 reasoning)
`stash@{0}`<|end_message|>
thinkingmachines/inkling:none__json_schema PASS 100% 131 in → 24 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash" : "stash@{0}" }
thinkingmachines/inkling:xhigh PASS 100% 133 in → 170 out (126 reasoning)
The work is in **`stash@{0}`** (referenced as `stash@{0}`: `On my-feature-branch: feature-on-my-feature-branch`).
thinkingmachines/inkling:xhigh__json_schema PASS 100% 133 in → 113 out (97 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
x-ai/grok-4.3:high PASS 100% 295 in → 202 out (152 reasoning)
The stash entry is **`stash@{0}`**. This matches both the branch (`my-feature-branch`) and the message (`feature-on-my-feature-branch`) you described. The diff also confirms it contains the change from "Initial" to "Feature work".
x-ai/grok-4.3:high__json_schema PASS 100% 358 in → 214 out (206 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:low PASS 100% 301 in → 338 out (267 reasoning)
stash@{0} The provided `git stash list` output shows a single matching entry whose branch name and message exactly align with the described stash action (on `my-feature-branch`, message `feature-on-my-feature-branch`). The accompanying diff further confirms the content ("Feature work") stored in that entry; therefore the reference is `stash@{0}`.
x-ai/grok-4.3:low__json_schema PASS 100% 364 in → 160 out (152 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:max PASS 100% 295 in → 192 out (186 reasoning)
**stash@{0}**
x-ai/grok-4.3:max__json_schema PASS 100% 358 in → 191 out (183 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:medium PASS 100% 301 in → 373 out (281 reasoning)
The provided `git stash list` output directly shows a single stash entry whose branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`) match the scenario exactly. The accompanying diff for that same entry further confirms the stored content (`Feature work`). Because `stash@{0}` is always the most-recent stash and the only entry present, the work is stored at the reference `stash@{0}`. Final answer: stash@{0}
x-ai/grok-4.3:medium__json_schema PASS 100% 364 in → 244 out (236 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:none PASS 100% 293 in → 6 out (0 reasoning)
**stash@{0}**
x-ai/grok-4.3:none__json_schema PASS 100% 356 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
x-ai/grok-4.3:xhigh PASS 100% 295 in → 184 out (133 reasoning)
The stash entry is **stash@{0}**. This matches because: - It was created on `my-feature-branch` - The stash message is `feature-on-my-feature-branch` - The content shows the change from "Initial" to "Feature work"
x-ai/grok-4.3:xhigh__json_schema PASS 100% 358 in → 188 out (180 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:high PASS 100% 334 in → 292 out (221 reasoning)
**stash@{0}** This is the only entry in the provided `git stash list`, and its description matches the branch (`my-feature-branch`) and message (`feature-on-my-feature-branch`). The stash details confirm it contains the exact change (replacing “Initial” with “Feature work” in `file.txt`).
x-ai/grok-4.5:high__json_schema PASS 100% 408 in → 280 out (271 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:low PASS 100% 334 in → 109 out (79 reasoning)
**stash@{0}** This is the only (and newest) stash entry. It matches the branch and message you used when stashing.
x-ai/grok-4.5:low__json_schema PASS 100% 408 in → 87 out (78 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:max PASS 100% 334 in → 205 out (199 reasoning)
**stash@{0}**
x-ai/grok-4.5:max__json_schema PASS 100% 408 in → 223 out (214 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:medium PASS 100% 334 in → 278 out (220 reasoning)
**stash@{0}** The provided `git stash list` shows a single entry matching the description exactly (branch `my-feature-branch` and message `feature-on-my-feature-branch`), and the associated diff confirms it contains the change to `Feature work`.
x-ai/grok-4.5:medium__json_schema PASS 100% 408 in → 206 out (197 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:xhigh PASS 100% 334 in → 300 out (225 reasoning)
**stash@{0}** The stash list shows a single entry matching the given branch and message: * `stash@{0}: On my-feature-branch: feature-on-my-feature-branch` Its content also contains the expected change (`+Feature work` in `file.txt`), confirming that the stashed work is in `stash@{0}`.
x-ai/grok-4.5:xhigh__json_schema PASS 100% 408 in → 239 out (230 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
z-ai/glm-4.7-flash:high PASS 100% 124 in → 353 out (348 reasoning)
The stash reference is **stash@{0}**.
z-ai/glm-4.7-flash:low PASS 100% 124 in → 327 out (310 reasoning)
The stash reference is **stash@{0}**.
z-ai/glm-4.7-flash:low__json_schema PASS 100% 124 in → 395 out (373 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:medium PASS 100% 124 in → 371 out (357 reasoning)
The stash reference is **`stash@{0}`**.
z-ai/glm-4.7-flash:none PASS 100% 124 in → 14 out (0 reasoning)
The stash entry is **`stash@{0}`**.
z-ai/glm-4.7-flash:none__json_schema PASS 100% 124 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:xhigh PASS 100% 124 in → 332 out (331 reasoning)
The stash reference is **stash@{0}**.
z-ai/glm-4.7-flash:xhigh__json_schema PASS 100% 124 in → 356 out (346 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:high PASS 100% 131 in → 230 out (0 reasoning)
The stash entry containing your work is: **stash@{0}**
z-ai/glm-5.2:high__json_schema PASS 100% 124 in → 240 out (205 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:low PASS 100% 131 in → 225 out (204 reasoning)
The work is contained in the stash entry **`stash@{0}`**.
z-ai/glm-5.2:low__json_schema PASS 100% 131 in → 253 out (228 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:medium PASS 100% 131 in → 225 out (206 reasoning)
The stash entry containing this work is: **stash@{0}**
z-ai/glm-5.2:medium__json_schema PASS 100% 133 in → 234 out (221 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:none PASS 100% 125 in → 17 out (0 reasoning)
The stash entry containing this work is: **`stash@{0}`**
z-ai/glm-5.2:none__json_schema PASS 100% 125 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
z-ai/glm-5.2:xhigh PASS 100% 131 in → 311 out (284 reasoning)
Based on the provided git stash list and details, the stash entry containing your work is: **stash@{0}**
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)
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)
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)
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)
Invalid JSON. Output: To find which stash entry contains your work, let's break down what you've shared: ### Your situation: - You were on branch `my-feature-branch`. - You ran `git stash` with the message `feature-on-my-feature-branch`. - The current branch is still `my-feature-branch`. - The file `file.txt` was modified to include the line `Feature work`. ### Stash List Output: ``` stash@{0}: On my-feature-branch: feature-on-my-feature-branch ``` This tells us that the stash was created **on** the branch `my-feature-branch`, and the commit message was `feature-on-my-feature-branch`. ### What does this mean? The stash entry **does contain** the work you described (the line `Feature work`), because: - The stash was made from a commit on `my-feature-branch`. - The commit message matches the content change in `file.txt`. ### Stash Reference: The stash reference is: ``` stash@{0} ``` Or more specifically, the full reference including the branch and message: ``` my-feature-branch: feature-on-my-feature-branch ``` ### Summary: ✅ The stash entry that contains your work is: ``` stash@{0}: my-feature-branch: feature-on-my-feature-branch ``` Let me know if you need help inspecting or applying this stash!
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)
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)
moonshotai/kimi-k2.6:medium__json_schema FAIL 0% 119 in → 850 out (199 reasoning)
{0}
JSON Schema Structured Output
(raw) { "stash": "{0}" }
Failure: Expected stash reference 'stash@{0}'
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-e51baabf-1cb0-948a-b638-82199126174d","request_id":"e51baabf-1cb0-948a-b638-82199126174d"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-7137c64a-d657-9164-8e02-2684aacd715c","request_id":"7137c64a-d657-9164-8e02-2684aacd715c"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-aa2e552a-e562-9c4c-b3ba-fcedacb8668f","request_id":"aa2e552a-e562-9c4c-b3ba-fcedacb8668f"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-8548f5da-ab29-9920-ad66-7a83d30d0e38","request_id":"8548f5da-ab29-9920-ad66-7a83d30d0e38"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-f8e0fb4c-c44d-9541-a366-452454110ec9","request_id":"f8e0fb4c-c44d-9541-a366-452454110ec9"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-7e24d967-fbda-916f-9ab6-2bd90d22c281"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-de23f01e-7ea4-9e6c-8687-4d30352d231f"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-61df32e8-202a-9641-a3ce-ffbcfb8aa04d"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-ea0e4715-8fa2-95aa-9b4e-ac96b4606d21"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-3deb778d-4379-9145-8131-c6d8f7dec83a"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-7951d600-5b42-9f11-915d-8c183adfb6c0"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-2648f9ad-a9a7-9e9a-b68b-06f2ece9c0ef","request_id":"2648f9ad-a9a7-9e9a-b68b-06f2ece9c0ef"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-2eeec635-669a-96d1-904d-b3825b2b2ed0","request_id":"2eeec635-669a-96d1-904d-b3825b2b2ed0"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-fe660e62-ec7d-9d79-9dc0-b454aafc1178","request_id":"fe660e62-ec7d-9d79-9dc0-b454aafc1178"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-d8098251-d1c8-934c-8bd1-6bd537df8fee","request_id":"d8098251-d1c8-934c-8bd1-6bd537df8fee"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-aa43b11c-4f23-974a-9adb-18d7015f37b5","request_id":"aa43b11c-4f23-974a-9adb-18d7015f37b5"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-45f8c3ae-8804-9a9b-8bbe-b05b24401f17","request_id":"45f8c3ae-8804-9a9b-8bbe-b05b24401f17"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-1caa062d-4000-9a63-af5b-112f47ed4bc1","request_id":"1caa062d-4000-9a63-af5b-112f47ed4bc1"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-ae802464-ab48-9475-98cd-db6d4281bb7d","request_id":"ae802464-ab48-9475-98cd-db6d4281bb7d"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-a3fb83a8-a111-9e87-8800-951cae0acf0c","request_id":"a3fb83a8-a111-9e87-8800-951cae0acf0c"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-bc82517e-681d-9cb6-911e-7cc83978bdf1","request_id":"bc82517e-681d-9cb6-911e-7cc83978bdf1"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
Invalid JSON. Output: The work is in **`stash@{0}`**. That entry matches the branch (`my-feature-branch`), message (`feature-on-my-feature-branch`), and the diff content (`Feature work` in `file.txt`).{"stash": "stash@{0}"}
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)
Invalid JSON. Output: The work is in **stash@{0}**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch` on branch `my-feature-branch`).
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)
Invalid JSON. Output: The work is in **`stash@{0}`**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch`, on branch `my-feature-branch`).
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)
Invalid JSON. Output: The work is in **`stash@{0}`**. Reference: `stash@{0}` (message: `feature-on-my-feature-branch`, on branch `my-feature-branch`).
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)
Invalid JSON. Output: The stash reference is **stash@{0}**.
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)
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)
Invalid JSON. Output: The stash entry containing this work is **`stash@{0}`**.
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)