fix: resolve ACP hanging indefinitely in thinking state on Windows#13222
Merged
rekram1-node merged 10 commits intoanomalyco:devfrom Feb 13, 2026
Merged
fix: resolve ACP hanging indefinitely in thinking state on Windows#13222rekram1-node merged 10 commits intoanomalyco:devfrom
rekram1-node merged 10 commits intoanomalyco:devfrom
Conversation
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Potential Related PR Found:
Recommendation: Check if PR #7586 already addresses the same root cause or if there's overlap in the solution approach. The two PRs may be complementary fixes for different parts of the system. |
Bun's $ shell inherits the parent's stdin. In ACP mode, stdin is a pipe carrying protocol data. On Windows, git inheriting this pipe causes a deadlock — the child process never completes. Add a git() utility that uses Bun's $ shell by default but falls back to Bun.spawn with stdin: "ignore" when running as an ACP client. Update snapshot/index.ts to use this utility for all git commands. Fixes anomalyco#7632 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6c3c03b to
300c2b3
Compare
3ae9b7f to
d1ee4c8
Compare
The git() utility introduced exitCode checks that returned undefined on failure, causing fallback to fake VCS instead of preserving vcs: "git". Remove the exitCode gates so text output is processed the same way the old .nothrow().text() path did — empty stdout naturally produces truthy fallbacks that keep vcs: "git". Also fix tests to mock the git utility directly instead of bun.$, which wasn't actually intercepting calls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Collaborator
|
/review |
Contributor
|
lgtm |
Collaborator
|
/review |
Contributor
|
lgtm |
Add gitLines() that uses Bun's native .lines() streaming in non-ACP mode and falls back to collect-and-split in ACP mode. Use it in diffFull to restore the original streaming behavior for numstat output. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Collaborator
|
I've been dming w/ author so this should get merged today, left him some feedback |
Skip all snapshot operations when OPENCODE_CLIENT is "acp" since snapshots aren't needed in ACP mode and git stdin inheritance causes hangs on Windows. Reset snapshot/index.ts to use $`` shell directly, remove unused gitLines utility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Collaborator
|
/review |
Contributor
|
lgtm |
TechnicallyAnna
pushed a commit
to TechnicallyAnna/opencode
that referenced
this pull request
Feb 13, 2026
…nomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
3 tasks
philiplaureano
pushed a commit
to philiplaureano/opencode-aion
that referenced
this pull request
Feb 14, 2026
…nomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
relaxkeren
pushed a commit
to relaxkeren/opencode
that referenced
this pull request
Feb 15, 2026
…nomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
benjaminshafii
added a commit
to different-ai/opencode
that referenced
this pull request
Feb 16, 2026
* fix(app): suggestion active state broken * chore: cleanup * chore: cleanup * chore: cleanup * chore: cleanup * chore: cleanup * fix(app): normalize oauth error messages * feat(app): option to turn off sound effects * fix(app): terminal pty isolation * docs: update STACKIT provider documentation with typo fix (anomalyco#13357) Co-authored-by: amankalra172 <aman.kalra@st.ovgu.de> * chore: generate * do not open console on error (anomalyco#13374) * feat: windows selection behavior, manual ctrl+c (anomalyco#13315) * fix: baseline CPU detection (anomalyco#13371) * chore: update nix node_modules hashes * fix: look for recent model in fallback in cli (anomalyco#12582) * chore: generate * chore: cleanup flag code (anomalyco#13389) * fix: token substitution in OPENCODE_CONFIG_CONTENT (anomalyco#13384) * release: v1.1.64 * fix: resolve ACP hanging indefinitely in thinking state on Windows (anomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> * desktop: only show loading window if sqlite migration is necessary * fix(app): failed to create store * fix(app): worktree delete * chore: cleanup * fix(app): prompt input quirks * fix(app): notification should navigate to session * fix(app): emoji as avatar * cleanup desktop loading page * feat(app): toggle all provider models * fix(app): reconnect event stream on disconnect * ci: remove signpath policy * feat(hook): add tool.definition hook for plugins to modify tool description and parameters (anomalyco#4956) * fix: ensure @-ing a dir uses the read tool instead of dead list tool (anomalyco#13428) * Revert "fix: token substitution in OPENCODE_CONFIG_CONTENT" (anomalyco#13429) * release: v1.1.65 * feat: update some ai sdk packages and uuse adaptive reasoning for opus 4.6 on vertex/bedrock/anthropic (anomalyco#13439) * feat(cli): add --dir option to run command (anomalyco#12443) * chore: update nix node_modules hashes * fix(desktop): performance optimization for showing large diff & files (anomalyco#13460) * fix(web): sync docs locale cookie on alias redirects (anomalyco#13109) * fix(app): remount SDK/sync tree when server URL changes (anomalyco#13437) * docs: Fix zh-cn translation mistake in tools.mdx (anomalyco#13407) * chore: generate * fix(web): use prompt_async endpoint to avoid timeout over VPN/tunnel (anomalyco#12749) * fix(app): terminal resize * chore: cleanup * docs(ko): polish Korean phrasing in acp, agents, config, and custom-tools docs (anomalyco#13446) * docs: add pacman installation option for Arch Linux alongside AUR (anomalyco#13293) * fix(test): move timeout config to CLI flag (anomalyco#13494) Co-authored-by: 严浩 <h_mini2024@oo1.dev> * fix: standardize zh-CN docs character set and terminology (anomalyco#13500) * fix(ui): support cmd-click links in inline code (anomalyco#12552) * fix: prevent opencode run crash on malformed tool inputs (anomalyco#13051) Co-authored-by: 0xK3vin <kevin@git-pu.sh> * sqlite again (anomalyco#10597) Co-authored-by: Github Action <action@github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> * chore: generate * desktop: remote OPENCODE_SQLITE env (anomalyco#13545) * chore: update nix node_modules hashes * desktop: fix rust * release: v1.2.0 * zen: minimax m2.5 & glm5 * fix: tweak websearch tool description date info to avoid cache busts (anomalyco#13559) * tui: show all project sessions from any working directory Previously sessions were only listed if they were created in the current working directory or its subdirectories. Users can now view and switch to any session in the project regardless of which directory they're in. * release: v1.2.1 * ci: test-signing signpath policy * ci: move signpath policy * bump vertex ai packages (anomalyco#13625) * fix vercel gateway variants (anomalyco#13541) Co-authored-by: Benjamin Woodruff <github@benjam.info>" * chore: update nix node_modules hashes * core: filter sessions at database level to improve session list loading performance * core: add comprehensive test coverage for Session.list() filters Adds test cases for filtering sessions by directory, root sessions only, start time, search terms, and result limits to ensure the listing functionality works correctly for all filter combinations. * release: v1.2.2 * fix: ensure vercel variants pass amazon models under bedrock key (anomalyco#13631) * chore: bump nixpkgs to get bun 1.3.9 (anomalyco#13302) * fix: add WAL checkpoint on database open (anomalyco#13633) * fix: ensure anthropic models on OR also have variant support (anomalyco#13498) * chore: update nix node_modules hashes * release: v1.2.3 * fix(app): stack overflow in filetree (anomalyco#13667) Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> * feat(app): clear notifications action (anomalyco#13668) Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> * fix: derive all IDs from file paths during json migration Earlier migrations moved data to new directories without updating JSON fields. Now consistently derives all IDs from file paths: - Projects: id from filename - Sessions: id from filename, projectID from parent directory - Messages: id from filename, sessionID from parent directory - Parts: id from filename, messageID from parent directory This ensures migrated data matches the actual file layout regardless of stale values in JSON content. * test: add tests for path-derived IDs in json migration Tests verify that file paths are used for IDs even when JSON contains different values - ensuring robustness against stale JSON content. * core: add db command for database inspection and querying * release: v1.2.4 * fix: ensure sqlite migration logs to stderr instead of stdout (anomalyco#13691) * feat: Add GeistMono Nerd Font to available mono font options (anomalyco#13720) * fix(desktop): focus window after update/relaunch (anomalyco#13701) * docs: add Ukrainian README translation (anomalyco#13697) * fix(app): keybind [shift+tab] (anomalyco#13695) * fix(app): only navigate prompt history at input boundaries (anomalyco#13690) * fix(desktop): issue viewing new files opened from the file tree (anomalyco#13689) * feat(app): localize "free usage exceeded" error & "Add credits" clickable link (anomalyco#13652) * release: v1.2.5 * feat(opencode): add `cljfmt` formatter support for Clojure files (anomalyco#13426) * fix(website): correct zh-CN translation of proprietary terms in zen.mdx (anomalyco#13734) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> * chore: generate * feat(opencode): add conservative workspace hot reload * fix(opencode): reset caches and emit hot reload event * feat(experimental): add hot reload API trigger * chore(sdk): regenerate OpenAPI for hot reload * test(hotreload): gate darwin path alias on macOS * chore(flags): simplify hot reload gating * chore(flags): align hot reload env with experimental * feat(hotreload): emit change events and support manual mode * feat(hotreload): make reload userland-driven * chore(sdk): include hot reload changed event * feat(hotreload): reset plugins, tools, and mcp on apply * fix(cli): allow --agent with --attach * Revert "fix(cli): allow --agent with --attach" This reverts commit 7f1c77f. * fix(hotreload): apply within instance context --------- Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com> Co-authored-by: Aman Kalra <49478659+amankalra172@users.noreply.github.com> Co-authored-by: amankalra172 <aman.kalra@st.ovgu.de> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Sebastian <hasta84@gmail.com> Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: Smit Chaudhary <smitchaudhary10@gmail.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Ariane Emory <97994360+ariane-emory@users.noreply.github.com> Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: projectArtur <155688912+ASidorenkoCode@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Spoon <212802214+spoons-and-mirrors@users.noreply.github.com> Co-authored-by: Rahul Mishra <blankparticle@gmail.com> Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com> Co-authored-by: Jun <87404676+Seungjun0906@users.noreply.github.com> Co-authored-by: Chris Yang <18487241+ysm-dev@users.noreply.github.com> Co-authored-by: Annopick <veater@qq.com> Co-authored-by: eytans <eytans@users.noreply.github.com> Co-authored-by: G36maid <53391375+G36maid@users.noreply.github.com> Co-authored-by: 严浩 <37316281+yanhao98@users.noreply.github.com> Co-authored-by: 严浩 <h_mini2024@oo1.dev> Co-authored-by: Niu Shuai <guisu2010@gmail.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: Kevin <kevin@apthos.net> Co-authored-by: 0xK3vin <kevin@git-pu.sh> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Github Action <action@github.com> Co-authored-by: Brendan Allan <brendonovich@outlook.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: Dax Raad <d@ironbay.co> Co-authored-by: Alberto Valverde <alberto@toscat.net> Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> Co-authored-by: Brandon Julio Thenaro <brandon.julio.t@icloud.com> Co-authored-by: zerone0x <hi@trine.dev> Co-authored-by: Denys <dector@dector.space> Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com> Co-authored-by: Shane Bishop <71288697+shanebishop1@users.noreply.github.com> Co-authored-by: Alex Yaroshuk <34632190+alexyaroshuk@users.noreply.github.com> Co-authored-by: Salam Elbilig <finalfantasia@users.noreply.github.com> Co-authored-by: Pan Kaixin <pan_kaixin@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Benjamin Shafii <benjamin.shafii@gmail.com>
schneiderlo
pushed a commit
to schneiderlo/opencode
that referenced
this pull request
Feb 17, 2026
…nomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
randomm
added a commit
to randomm/opencode
that referenced
this pull request
Feb 17, 2026
…192) * release: v1.1.55 * fix(docs): locale translations * fix(app): don't scroll code search input * chore: generate * fix(app): don't close sidebar on session change (anomalyco#13013) * zen: log error * fix(desktop): open apps with executables on Windows (anomalyco#13022) * fix(docs): invalid markdown * fix(app): task tool rendering * release: v1.1.56 * chore: update website stats * wip: zen * fix(docs): locale translations * wip: zen * wip: zen * wip: zen * wip: zen * wip: zen * Update VOUCHED list anomalyco#12841 (comment) * fix(tui): improve amazon-bedrock check to include container credentials (anomalyco#13037) * fix(tui): default session sidebar to auto (anomalyco#13046) * tweak: /review prompt to look for behavior changes more explicitly (anomalyco#13049) * fix(core): ensure compaction is more reliable, add reserve token buffer to ensure that input window has enough room to compact (anomalyco#12924) Co-authored-by: James Lal <james@littlebearlabs.io> * chore: generate * docs: remove 'Migrating to 1.0' documentation section (anomalyco#13076) * wip: zen * fix: add additional context overflow cases, remove overcorrecting ones (anomalyco#13077) * feat(desktop): add WSL backend mode (anomalyco#12914) * fix(desktop): read wayland preference from store (anomalyco#13081) * fix(desktop): server spawn resilience (anomalyco#13028) Co-authored-by: Brendan Allan <git@brendonovich.dev> * fix(docs): avoid footer language selector truncation (anomalyco#13124) * docs(ko): improve translations for intro, cli, and commands (anomalyco#13094) * chore: generate * feat(desktop): enhance Windows app resolution and UI loading states (anomalyco#13084) * fix: encode non-ASCII directory paths in v1 SDK HTTP headers (anomalyco#13131) * desktop: use tracing for logging (anomalyco#13135) * fix(web): prevent language select label truncation (anomalyco#13100) * fix(app): copy path button styles * fix(app): terminal copy/paste * release: v1.1.57 * fix(tui): prevent home wordmark corruption in height-constrained terminals (anomalyco#13069) * feat(prompt): mode-specific input placeholders (anomalyco#12388) * fix(tui): keep /share available to copy existing link (anomalyco#12532) * fix(tui): dismiss dialogs with ctrl+c (anomalyco#12884) * fix(app): terminal resize * fix(console): translations * fix(app): terminal PTY buffer carryover * fix(app): notifications on child sessions * Revert "feat(desktop): add WSL backend mode (anomalyco#12914)" This reverts commit 213a872. * release: v1.1.58 * fix(app): sidebar remount * test(app): more e2e tests (anomalyco#13162) * Fix/reverception (anomalyco#13166) Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com> * fix(app): translations * release: v1.1.59 * chore: generate * fix(app):workspace reset (anomalyco#13170) Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> * chore: generate * fix(app): translations * chore: update docs sync workflow * add square logo variants to brand page * feat: adjust read tool so that it can handle dirs too (anomalyco#13090) * tweak: make read tool offset 1 indexed instead of 0 to avoid confusion that could be caused by line #s being 1 based (anomalyco#13198) * Update VOUCHED list anomalyco#13204 (comment) * tweak: compaction check (anomalyco#13214) * upgrade opentui to 0.1.79 (anomalyco#13036) * chore: update nix node_modules hashes * chore: upgrade bun to 1.3.9 (anomalyco#13223) * chore: update nix node_modules hashes * tweak: use promise all for mcp listTools calls (anomalyco#13229) * docs(ar): second-pass localization cleanup * fix(docs): locale translations for nav elements and headings * fix(app): guard randomUUID in insecure browser contexts (anomalyco#13237) Co-authored-by: Selim <31136147+selimerunkut@users.noreply.github.com> * feat(opencode): Venice Add automatic variant generation for Venice models (anomalyco#12106) * feat(tui): add toggle to hide session header (anomalyco#13244) * Update VOUCHED list anomalyco#13076 (comment) * support custom api url per model * chore: generate * feat: support claude agent SDK-style structured outputs in the OpenCode SDK (anomalyco#8161) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Dax Raad <d@ironbay.co> * chore: generate * fix(win32): use ffi to get around bun raw input/ctrl+c issues (anomalyco#13052) * release: v1.1.60 * zen: return cost * tweak: tool outputs to be more llm friendly (anomalyco#13269) * desktop: sqlite migration progress bar (anomalyco#13294) * Testing SignPath Integration (anomalyco#13308) * ci: move test-sigining policy * chore: style loading screen * wip(ui): diff virtualization (anomalyco#12693) * chore: update nix node_modules hashes * feat: update to not post comment on workflows when no duplicates found (anomalyco#13238) * wip: zen * core: allow model configurations without npm/api provider details Makes npm and api fields optional in the provider schema so model definitions can be more flexible when provider package details aren't needed. * release: v1.1.61 * chore: generate * wip: zen * core: expose tool arguments in shell hook for plugin visibility * chore: refactor packages/app files (anomalyco#13236) Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Frank <frank@anoma.ly> * fix(app): more defensive session context metrics * fix(app): more defensive code component * zen: minimax m2.5 * wip: zen * fix(docs): correct `format` attribute in `StructuredOutputs` (anomalyco#13340) * fix: downgrade bun to 1.3.5 (anomalyco#13347) * chore: update nix node_modules hashes * feat(tool): return image attachments from webfetch (anomalyco#13331) * ignore: document test fixtures for agents * chore(app): refactor for better solidjs hygiene (anomalyco#13344) * fix(app): preserve undo history for plain-text paste (anomalyco#13351) * fix(app): project icons unloading * release: v1.1.62 * improve codex model list * release: v1.1.63 * test: add more test cases for project.test.ts (anomalyco#13355) * fix(app): remote http server connections * fix(app): suggestion active state broken * chore: cleanup * chore: cleanup * chore: cleanup * chore: cleanup * chore: cleanup * fix(app): normalize oauth error messages * feat(app): option to turn off sound effects * fix(app): terminal pty isolation * docs: update STACKIT provider documentation with typo fix (anomalyco#13357) Co-authored-by: amankalra172 <aman.kalra@st.ovgu.de> * chore: generate * do not open console on error (anomalyco#13374) * feat: windows selection behavior, manual ctrl+c (anomalyco#13315) * fix: baseline CPU detection (anomalyco#13371) * chore: update nix node_modules hashes * fix: look for recent model in fallback in cli (anomalyco#12582) * chore: generate * chore: cleanup flag code (anomalyco#13389) * fix: token substitution in OPENCODE_CONFIG_CONTENT (anomalyco#13384) * release: v1.1.64 * fix: resolve ACP hanging indefinitely in thinking state on Windows (anomalyco#13222) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> * desktop: only show loading window if sqlite migration is necessary * fix(app): failed to create store * fix(app): worktree delete * chore: cleanup * fix(app): prompt input quirks * fix(app): notification should navigate to session * fix(app): emoji as avatar * cleanup desktop loading page * feat(app): toggle all provider models * fix(app): reconnect event stream on disconnect * ci: remove signpath policy * feat(hook): add tool.definition hook for plugins to modify tool description and parameters (anomalyco#4956) * fix: ensure @-ing a dir uses the read tool instead of dead list tool (anomalyco#13428) * Revert "fix: token substitution in OPENCODE_CONFIG_CONTENT" (anomalyco#13429) * release: v1.1.65 * feat: update some ai sdk packages and uuse adaptive reasoning for opus 4.6 on vertex/bedrock/anthropic (anomalyco#13439) * feat(cli): add --dir option to run command (anomalyco#12443) * chore: update nix node_modules hashes * fix(desktop): performance optimization for showing large diff & files (anomalyco#13460) * fix(web): sync docs locale cookie on alias redirects (anomalyco#13109) * fix(app): remount SDK/sync tree when server URL changes (anomalyco#13437) * docs: Fix zh-cn translation mistake in tools.mdx (anomalyco#13407) * chore: generate * fix(web): use prompt_async endpoint to avoid timeout over VPN/tunnel (anomalyco#12749) * fix(app): terminal resize * chore: cleanup * docs(ko): polish Korean phrasing in acp, agents, config, and custom-tools docs (anomalyco#13446) * docs: add pacman installation option for Arch Linux alongside AUR (anomalyco#13293) * fix(test): move timeout config to CLI flag (anomalyco#13494) Co-authored-by: 严浩 <h_mini2024@oo1.dev> * fix: standardize zh-CN docs character set and terminology (anomalyco#13500) * fix(ui): support cmd-click links in inline code (anomalyco#12552) * fix: prevent opencode run crash on malformed tool inputs (anomalyco#13051) Co-authored-by: 0xK3vin <kevin@git-pu.sh> * sqlite again (anomalyco#10597) Co-authored-by: Github Action <action@github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> * chore: generate * desktop: remote OPENCODE_SQLITE env (anomalyco#13545) * chore: update nix node_modules hashes * desktop: fix rust * release: v1.2.0 * zen: minimax m2.5 & glm5 * fix: tweak websearch tool description date info to avoid cache busts (anomalyco#13559) * tui: show all project sessions from any working directory Previously sessions were only listed if they were created in the current working directory or its subdirectories. Users can now view and switch to any session in the project regardless of which directory they're in. * release: v1.2.1 * ci: test-signing signpath policy * ci: move signpath policy * bump vertex ai packages (anomalyco#13625) * fix vercel gateway variants (anomalyco#13541) Co-authored-by: Benjamin Woodruff <github@benjam.info>" * chore: update nix node_modules hashes * core: filter sessions at database level to improve session list loading performance * core: add comprehensive test coverage for Session.list() filters Adds test cases for filtering sessions by directory, root sessions only, start time, search terms, and result limits to ensure the listing functionality works correctly for all filter combinations. * release: v1.2.2 * fix: ensure vercel variants pass amazon models under bedrock key (anomalyco#13631) * chore: bump nixpkgs to get bun 1.3.9 (anomalyco#13302) * fix: add WAL checkpoint on database open (anomalyco#13633) * fix: ensure anthropic models on OR also have variant support (anomalyco#13498) * chore: update nix node_modules hashes * release: v1.2.3 * fix(app): stack overflow in filetree (anomalyco#13667) Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> * feat(app): clear notifications action (anomalyco#13668) Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> * fix: derive all IDs from file paths during json migration Earlier migrations moved data to new directories without updating JSON fields. Now consistently derives all IDs from file paths: - Projects: id from filename - Sessions: id from filename, projectID from parent directory - Messages: id from filename, sessionID from parent directory - Parts: id from filename, messageID from parent directory This ensures migrated data matches the actual file layout regardless of stale values in JSON content. * test: add tests for path-derived IDs in json migration Tests verify that file paths are used for IDs even when JSON contains different values - ensuring robustness against stale JSON content. * core: add db command for database inspection and querying * release: v1.2.4 * fix: ensure sqlite migration logs to stderr instead of stdout (anomalyco#13691) * feat: Add GeistMono Nerd Font to available mono font options (anomalyco#13720) * fix(desktop): focus window after update/relaunch (anomalyco#13701) * docs: add Ukrainian README translation (anomalyco#13697) * fix(app): keybind [shift+tab] (anomalyco#13695) * fix(app): only navigate prompt history at input boundaries (anomalyco#13690) * fix(desktop): issue viewing new files opened from the file tree (anomalyco#13689) * feat(app): localize "free usage exceeded" error & "Add credits" clickable link (anomalyco#13652) * release: v1.2.5 * feat(opencode): add `cljfmt` formatter support for Clojure files (anomalyco#13426) * fix(website): correct zh-CN translation of proprietary terms in zen.mdx (anomalyco#13734) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> * chore: generate * desktop: use process-wrap instead of manual job object (anomalyco#13431) * feat(opencode): Add Venice support in temperature, topP, topK and smallOption (anomalyco#13553) * fix(desktop): normalize Linux Wayland/X11 backend and decoration policy (anomalyco#13143) Co-authored-by: Brendan Allan <brendonovich@outlook.com> * feat: add openai-compatible endpoint support for google-vertex provider (anomalyco#10303) Co-authored-by: BlueT - Matthew Lien - 練喆明 <BlueT@BlueT.org> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> * chore: generate * fix: google vertex var priority (anomalyco#13816) * fix(docs): correct critical translation errors in Russian zen page (anomalyco#13830) * fix(core): remove unnecessary per-message title LLM calls (anomalyco#13804) * chore: cleanup * fix (tui): Inaccurate tips (anomalyco#13845) * fix: bump GitLab provider and auth plugin for mid-session token refresh (anomalyco#13850) * chore: update nix node_modules hashes * feat(cli): add --continue and --fork flags to attach command (anomalyco#13879) * feat(cli): add db migrate command for JSON to SQLite migration (anomalyco#13874) * ignore: rm random comment on opencode.jsonc * fix(tui): make use of server dir path for file references in prompts (anomalyco#13781) * feat(opencode): add `dfmt` formatter support for D language files (anomalyco#13867) * release: v1.2.6 * feat(cli): add session delete command (anomalyco#13571) * fix(opencode): ACP sessions never get LLM-generated titles (anomalyco#13095) * feat(acp): add opt-in flag for question tool (anomalyco#13562) Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> * tweak: drop ids from attachments in tools, assign them in prompt.ts instead (anomalyco#13890) * fix(website): fix site in safari 18 (anomalyco#13894) * ci: fixed apt cache not working in publish.yml (anomalyco#13897) * ci: use `useblacksmith/stickydisk` on linux runners only (anomalyco#13909) * core: keep message part order stable when files resolve asynchronously (anomalyco#13915) * ci: fixed Rust cache for 'cargo install' in publish.yml (anomalyco#13907) * ci: fixed missing if condition (anomalyco#13934) * Hide server CLI on windows (anomalyco#13936) * zen: glm 5 free * wip: zen * ci: update triage workflow (anomalyco#13944) * fix(app): keep Escape handling local to prompt input on macOS desktop (anomalyco#13963) * docs(ko): improve Korean translation accuracy and clarity in Zen docs (anomalyco#13951) * docs: improve zh-cn and zh-tw documentation translations (anomalyco#13942) * fix(docs): correct reversed meaning in Korean plugins logging section (anomalyco#13945) * chore: generate * fix(opencode): resolve conflicts from upstream sync * fix(tool): remove spurious validateDirectory introduced during sync (#191) --------- Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: James Lal <james@littlebearlabs.io> Co-authored-by: Ariane Emory <97994360+ariane-emory@users.noreply.github.com> Co-authored-by: Brendan Allan <brendonovich@outlook.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: webwww123 <1876948535@qq.com> Co-authored-by: Jun <87404676+Seungjun0906@users.noreply.github.com> Co-authored-by: Jack <740172898@qq.com> Co-authored-by: Shintaro Jokagi <61367823+taroj1205@users.noreply.github.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: Dax Raad <d@ironbay.co> Co-authored-by: Sebastian <hasta84@gmail.com> Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: Selim <31136147+selimerunkut@users.noreply.github.com> Co-authored-by: dpuyosa <dpuyosa@users.noreply.github.com> Co-authored-by: Kyle Mistele <kyle@humanlayer.dev> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Ryan Vogel <ryan@inbound.new> Co-authored-by: Dylan Fiedler <dtfiedler@users.noreply.github.com> Co-authored-by: Rasheed <99349713+gitRasheed@users.noreply.github.com> Co-authored-by: Aman Kalra <49478659+amankalra172@users.noreply.github.com> Co-authored-by: amankalra172 <aman.kalra@st.ovgu.de> Co-authored-by: Smit Chaudhary <smitchaudhary10@gmail.com> Co-authored-by: projectArtur <155688912+ASidorenkoCode@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: Spoon <212802214+spoons-and-mirrors@users.noreply.github.com> Co-authored-by: Rahul Mishra <blankparticle@gmail.com> Co-authored-by: Chris Yang <18487241+ysm-dev@users.noreply.github.com> Co-authored-by: Annopick <veater@qq.com> Co-authored-by: eytans <eytans@users.noreply.github.com> Co-authored-by: G36maid <53391375+G36maid@users.noreply.github.com> Co-authored-by: 严浩 <37316281+yanhao98@users.noreply.github.com> Co-authored-by: 严浩 <h_mini2024@oo1.dev> Co-authored-by: Niu Shuai <guisu2010@gmail.com> Co-authored-by: Kevin <kevin@apthos.net> Co-authored-by: 0xK3vin <kevin@git-pu.sh> Co-authored-by: Github Action <action@github.com> Co-authored-by: Alberto Valverde <alberto@toscat.net> Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com> Co-authored-by: Brandon Julio Thenaro <brandon.julio.t@icloud.com> Co-authored-by: zerone0x <hi@trine.dev> Co-authored-by: Denys <dector@dector.space> Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com> Co-authored-by: Shane Bishop <71288697+shanebishop1@users.noreply.github.com> Co-authored-by: Alex Yaroshuk <34632190+alexyaroshuk@users.noreply.github.com> Co-authored-by: Salam Elbilig <finalfantasia@users.noreply.github.com> Co-authored-by: Pan Kaixin <pan_kaixin@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bnema <brice@briceamen.com> Co-authored-by: Jhin Lee <leehack@gmail.com> Co-authored-by: BlueT - Matthew Lien - 練喆明 <BlueT@BlueT.org> Co-authored-by: Chujiang <110hqc@gmail.com> Co-authored-by: Rafi Khardalian <rafi@actualyze.ai> Co-authored-by: Imanol Maiztegui <imanol.mzd@gmail.com> Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com> Co-authored-by: Robert Schadek <rburners@gmail.com> Co-authored-by: Zhiyuan Zheng <zhzy0077@hotmail.com> Co-authored-by: ImmuneFOMO <60671130+ImmuneFOMO@users.noreply.github.com> Co-authored-by: James Long <longster@gmail.com> Co-authored-by: Goni Zahavy <goni1993@gmail.com> Co-authored-by: Ganesh <179367536+itskritix@users.noreply.github.com> Co-authored-by: vynn <163614291+vynnlee@users.noreply.github.com> Co-authored-by: chenmi <jack_chenyuana@163.com> Co-authored-by: Minung Han <hmu332233@gmail.com> Co-authored-by: Janni Turunen <janni@Jannis-MacBook-Air.local>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Problem
When using OpenCode through ACP (e.g. JetBrains AI Assistant), the agent gets stuck on "Thinking..." forever on Windows.
Root cause
Bun's
$shell template tag makes child processes inherit the parent's stdin. In ACP mode, stdin is a pipe carrying protocol data (ndjson between the IDE and OpenCode). On Windows, when git inherits this pipe, the child process deadlocks and never finishes. This blocksSnapshot.track(), which blocks the stream processor, so no response ever shows up.This doesn't happen in terminal mode because stdin is a normal TTY there, not a protocol pipe.
Fix
Added a
git()utility (src/util/git.ts) that checksFlag.OPENCODE_CLIENT:$shell as before — no behavior changeBun.spawnwithstdin: "ignore"so git doesn't inherit the protocol pipeUpdated
snapshot/index.tsto use this utility for all git commands. No changes to the processor or ACP agent — snapshots stay fully blocking as intended.Changes
packages/opencode/src/util/git.ts(new): git command wrapper that detaches stdin in ACP modepackages/opencode/src/snapshot/index.ts(modified): uses the git utility instead of$shell directlyTested
On Windows 11 with JetBrains AI Assistant ACP. Before: stuck on "Thinking..." forever. After: responses show up immediately.
Fixes #7632
Fixes #7587
Fixes #3730
Fixes #12133
Fixes #7587
Fixes #13024