Kit Langton
958a3e5b2f
refactor(file-time): effectify FileTimeService with Semaphore locks
...
Convert FileTime from Instance.state to Effect ServiceMap.Service.
Replace hand-rolled Promise lock chain with SynchronizedRef<Map> +
Semaphore.withPermits for per-file mutual exclusion. Legacy facade
preserved — callers unchanged.
2026-03-15 15:11:23 -04:00
Kit Langton
e9535666a4
test(file-time): add tests for FileTime read/assert/withLock
...
7 tests covering: timestamp recording, session scoping, assert on
unread/unchanged/modified files, and withLock serialization.
All pass against the current Instance.state implementation.
2026-03-15 14:16:33 -04:00
Kit Langton
8c566cb764
refactor(vcs): effectify VcsService as scoped service
...
Convert Vcs from Instance.state namespace to an Effect ServiceMap.Service
on the Instances LayerMap. Uses Instance.bind for the Bus.subscribe
callback (same ALS pattern as FileWatcherService). Branch state is
managed in the layer closure with scope-based cleanup.
2026-03-15 14:05:57 -04:00
Kit Langton
388c173b56
fix(vcs): invert HEAD filter so branch changes are detected
...
The condition was `endsWith("HEAD")` (skip HEAD events) instead of
`!endsWith("HEAD")` (only process HEAD events). Since the git watcher
only watches HEAD, this meant BranchUpdated never fired.
2026-03-15 13:42:20 -04:00
Kit Langton
3984bd061e
test(vcs): add tests for branch detection and HEAD event publishing
...
Two tests pass (branch() reads current branch correctly).
Two tests fail: BranchUpdated never fires because the FileWatcher
event filter in vcs.ts has an inverted condition — it skips HEAD
changes instead of filtering for them.
2026-03-15 13:39:55 -04:00
Kit Langton
3701344cce
Merge branch 'effectify-watcher' into effectify-file-watcher-service
2026-03-15 13:38:48 -04:00
Kit Langton
1d6d525c0f
Merge branch 'dev' into effectify-watcher
2026-03-15 13:38:44 -04:00
Kit Langton
701d6c4374
style: format
2026-03-15 13:34:20 -04:00
Kit Langton
f5c81a1343
style: format watcher test
2026-03-15 13:31:51 -04:00
Kit Langton
247bd3d0db
fix(watcher): clean up late-arriving subscriptions on timeout
...
When w.subscribe() takes longer than SUBSCRIBE_TIMEOUT_MS and
eventually resolves, the subscription was left active and unmanaged.
Now the catchCause handler explicitly unsubscribes it, matching
the old withTimeout cleanup behavior.
2026-03-15 13:25:33 -04:00
Kit Langton
0f4df1a1b3
fix(test): remove flaky 100ms race in permission deny test
...
The deny path is synchronous once the Effect runs, but the
ManagedRuntime can take >100ms to start on slow CI runners.
Just await the result directly — bun's 30s test timeout is
the backstop if it ever hangs.
2026-03-15 12:45:10 -04:00
Kit Langton
59cf7e5848
fix: simplify watcher code and test types
...
- Use property shorthand `{ init }` in catchCause fallback
- Make BusUpdate.directory required (non-optional)
- Use Effect.runSync instead of Effect.runFork in synchronous callback
2026-03-15 12:37:44 -04:00
Kit Langton
330f315d20
test: stabilize watcher and pty event timing
...
Probe both root and git watcher readiness before asserting events so the watcher tests stop racing startup. Also make the PTY ordering test use a deterministic short-lived process and keep native PTY callbacks bound to the instance context.
2026-03-15 12:28:26 -04:00
Kit Langton
3e532b2ac8
debug: log experimental filewatcher flag value in CI
2026-03-15 11:52:11 -04:00
Kit Langton
cea3f2c924
docs: add Effect migration patterns to AGENTS.md
...
Document Instance-scoped services, Instance.bind for ALS context
in native callbacks, and the Flag → Effect.Config migration pattern.
2026-03-15 11:42:47 -04:00
Kit Langton
cb5372c4e8
refactor(watcher): read flags via Effect.Config instead of Flag namespace
...
Use Effect.Config.boolean with ConfigProvider (defaults to env) so
tests can override flags via ConfigProvider.layer without module
mocking. Removes mock.module that was poisoning Flag getters and
causing cross-test pollution in config/instruction tests.
2026-03-15 11:13:27 -04:00
Frank
9c00669927
zen: update claude prices
2026-03-15 10:54:40 -04:00
Kit Langton
4b92f9c55e
feat(instance): add Instance.bind for ALS context capture
...
Add Instance.bind(fn) which captures the current instance ALS context
and returns a wrapper that synchronously restores it when called. This
prevents silent failures when callbacks fire outside the instance async
context (native addons, event emitters, timers).
Use it in FileWatcherService to bind the @parcel/watcher callback,
replacing the async Instance.provide workaround.
2026-03-15 09:45:15 -04:00
Kit Langton
2cbd2a5a2d
fix(watcher): restore ALS context in native watcher callback
...
The @parcel/watcher callback fires from a native C++ uv_async handle
which does not preserve Node.js AsyncLocalStorage context. Wrap the
callback in Instance.provide to restore the instance ALS context so
Bus.publish can resolve instance-scoped state and directory.
2026-03-15 09:39:13 -04:00
David Hill
b9f6b40e3a
tweak(ui): remove open label ( #17512 )
2026-03-15 08:25:40 -05:00
Orlando Ascanio
ad06d8f496
docs(es): fix Spanish intro page translation, grammar, and terminology ( #17563 )
2026-03-15 08:22:32 -05:00
Kit Langton
c35dc2245a
refactor(watcher): effectify FileWatcher as scoped service
...
Convert FileWatcher from Instance.state namespace to an Effect
ServiceMap.Service with proper scope-based lifecycle management.
2026-03-14 23:39:31 -04:00
Kit Langton
ac4a807e6f
fix: remove obsolete ProviderAuth.api test
...
ProviderAuth was replaced by ProviderAuthService — this test
references the removed .api() method and breaks typecheck.
2026-03-14 23:34:45 -04:00
Kit Langton
219c7f728a
refactor(instance): simplify runtime layer wiring
2026-03-14 22:48:09 -04:00
Kit Langton
2d088ab108
refactor(instance): move scoped services to LayerMap
2026-03-14 22:35:44 -04:00
Kit Langton
2fc06c5a17
chore(permission): delete legacy permission module ( #17534 )
2026-03-14 20:56:52 -05:00
Kit Langton
52877d8765
fix(question): clean up pending entry on abort ( #17533 )
2026-03-15 00:49:49 +00:00
Sebastian
8f957b8f90
remove sighup exit ( #17254 )
2026-03-15 00:52:28 +01:00
opencode-agent[bot]
0befa1e57e
chore: generate
2026-03-14 18:29:06 +00:00
Kit Langton
f015154314
refactor(permission): effectify PermissionNext + fix InstanceState ALS bug ( #17511 )
2026-03-14 18:28:00 +00:00
Shoubhit Dash
689d9e14ea
fix(app): handle multiline web paste in prompt composer ( #17509 )
2026-03-14 22:51:45 +05:30
Kit Langton
66e8c57ed1
refactor(schema): inline branded ID schemas ( #17504 )
2026-03-14 16:14:46 +00:00
opencode-agent[bot]
b698f14e55
chore: generate
2026-03-14 15:59:01 +00:00
Kit Langton
cec1255b36
refactor(question): effectify QuestionService ( #17432 )
2026-03-14 11:58:00 -04:00
Aiden Cline
88226f3061
tweak: ensure that compaction message is tracked as agent initiated ( #17431 )
2026-03-14 10:46:24 -05:00
James Long
8c53b2b470
fix(core): increase default chunk timeout from 2 min to 5 min ( #17490 )
2026-03-14 14:27:06 +00:00
Marcus Schiesser
f2d3a4c70f
fix(ui): prevent long filenames from overlapping actions ( #17151 )
2026-03-13 16:17:15 -05:00
Michael Dwan
4b9b86b544
fix(opencode): lost sessions across worktrees and orphan branches ( #16389 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-13 15:51:55 -04:00
David Hill
f54abe58cf
tui: update compaction status message to use Session instead of History across all languages
...
The compaction message now correctly indicates the current session was compacted rather than the entire history, making it clearer to users which conversation data was optimized.
2026-03-13 16:33:01 +00:00
opencode
d954026dd8
release: v1.2.26
2026-03-13 16:32:53 +00:00
Adam
4ad8116ce3
fix(app): model selection persist by session ( #17348 )
2026-03-13 11:05:08 -05:00
David Hill
5c7088338c
fix(app): polish prompt composer controls ( #17388 )
2026-03-13 10:48:10 -05:00
Adam
389daa03df
fix(app): sidebar sync
2026-03-13 10:47:45 -05:00
David Hill
1cbe7b0854
tweak(ui): use new-session icon in sidebar buttons
2026-03-13 10:18:08 -05:00
David Hill
050d71bcf9
fix(app): avoid clipping new session during sidebar anim
2026-03-13 10:18:03 -05:00
David Hill
ffde837e83
fix(app): animate titlebar controls on sidebar open
2026-03-13 10:17:56 -05:00
David Hill
536abea2e2
fix(app): restore sidebar dash and sync session spinner colors ( #17384 )
2026-03-13 10:08:23 -05:00
Kit Langton
c7a52b6a2d
feat(schema): scaffold effect-to-zod bridge ( #17273 )
2026-03-13 10:59:57 -04:00
Adam
c4ccb50c37
fix(app): fork should copy prompt into new session ( #17375 )
2026-03-13 09:59:11 -05:00
Jack
5aaf1ddfb7
fix(ui): force wasm highlighter for markdown code blocks ( #17373 )
2026-03-13 09:57:14 -05:00
David Hill
f5f07310e0
fix(app): sidebar spacing + session list spinner transition ( #17355 )
2026-03-13 09:19:02 -05:00
Adam
c9e9dbeee1
fix(app): terminal cloning without retry ( #17354 )
2026-03-13 08:56:48 -05:00
Adam
b88b323049
fix(app): scroll falls behind prompt input
2026-03-13 08:39:42 -05:00
Adam
6653f868ae
fix(app): tooltip quirks
2026-03-13 08:38:32 -05:00
Adam
af29d91dca
fix(app): todo spacing
2026-03-13 07:43:50 -05:00
Adam
1a3735b619
fix(app): better optimistic prompt submit ( #17337 )
2026-03-13 07:38:03 -05:00
Shoubhit Dash
d4ae13f2a0
fix(opencode): serialize config bun installs ( #17342 )
2026-03-13 17:58:00 +05:30
Adam
f4804dac85
fix(app): oc-2 went too dark
2026-03-13 07:25:42 -05:00
Adam
843f188aaa
fix(app): support text attachments ( #17335 )
2026-03-13 06:58:24 -05:00
Adam
05cb3c87ca
chore(app): i18n sync ( #17283 )
2026-03-13 06:48:38 -05:00
Adam
270cb0b8b4
chore: cleanup ( #17284 )
2026-03-13 06:27:58 -05:00
Shoubhit Dash
46ba9c8170
perf(app): use cursor session history loading ( #17329 )
2026-03-13 16:43:41 +05:30
David Hill
80f91d3fd9
Remove prompt mode toggle ( #17216 )
2026-03-13 05:38:34 -05:00
opencode-agent[bot]
a564231caf
chore: generate
2026-03-13 10:19:52 +00:00
Shoubhit Dash
9457493696
perf(server): paginate session history ( #17134 )
2026-03-13 15:48:43 +05:30
Adam
ff748b82ca
fix(app): simplify themes ( #17274 )
2026-03-13 10:12:58 +00:00
Frank
9fafa57562
go: upi pay
2026-03-13 03:24:33 -04:00
Aiden Cline
f8475649da
chore: cleanup migrate from global code ( #17292 )
2026-03-12 23:54:11 -05:00
Michael Dwan
b94e110a4c
fix(opencode): sessions lost after git init in existing project ( #16814 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-12 23:18:59 -05:00
Luke Parker
f0bba10b12
fix(e2e): fail fast on config dependency installs ( #17280 )
2026-03-13 14:08:51 +10:00
Adam
d961981e25
fix(app): list item background colors
2026-03-12 22:23:51 -05:00
Adam
5576662200
feat(app): missing themes ( #17275 )
2026-03-12 22:21:02 -05:00
Tom Ryder
4a2a046d79
fix: filter empty content blocks for Bedrock provider ( #14586 )
2026-03-12 22:13:09 -05:00
opencode-agent[bot]
8f8c74cfb8
chore: generate
2026-03-13 02:33:45 +00:00
Kit Langton
092f654f63
fix(cli): hide console command from help output ( #17277 )
2026-03-12 22:22:16 -04:00
Luke Parker
96b1d8f639
fix(app): stabilize todo dock e2e with composer probe ( #17267 )
2026-03-13 12:21:50 +10:00
opencode-agent[bot]
dcb17c6a67
chore: generate
2026-03-13 02:10:27 +00:00
Kit Langton
dd68b85f58
refactor(provider): effectify ProviderAuthService ( #17227 )
2026-03-13 02:08:37 +00:00
Brendan Allan
84df96eaef
desktop: multi-window support in electron ( #17155 )
2026-03-13 09:18:27 +08:00
Kit Langton
d9dd33aeeb
feat(cli): add console account subcommands ( #17265 )
2026-03-13 00:56:40 +00:00
Kit Langton
0a281c7390
refactor(auth): effectify AuthService ( #17212 )
2026-03-12 20:43:24 -04:00
Aiden Cline
3016efba47
tweak: rm openrouter warning ( #17259 )
2026-03-12 19:42:31 -05:00
Luke Parker
3998df8112
fix(app): increase CI e2e workers ( #17263 )
2026-03-13 10:15:34 +10:00
Kit Langton
7066e2a25e
reorder provider list in providers login ( #17262 )
2026-03-13 00:09:30 +00:00
Adam
c173988aaa
feat(app): interruption state
2026-03-12 19:07:23 -05:00
Luke Parker
268855dc5a
fix(ci): keep test runs on dev ( #17260 )
2026-03-13 09:54:34 +10:00
opencode
bfb736e94a
release: v1.2.25
2026-03-12 23:34:11 +00:00
Frank
df8464f89c
zen: handle cache key
2026-03-12 19:10:58 -04:00
Adam
3ea387f364
fix(app): sidebar re-rendering too often
2026-03-12 16:27:15 -05:00
Adam
9d3c42c8c4
fix(app): task error state
2026-03-12 16:25:49 -05:00
Adam
f2cad046e6
fix(app): message loading
2026-03-12 16:25:48 -05:00
Aiden Cline
d722026a8d
fix: if server password exists, use basic auth for plugin client by default ( #17213 )
2026-03-12 15:41:46 -05:00
Adam
42a5af6c8f
feat(app): follow-up behavior ( #17233 )
2026-03-12 20:17:36 +00:00
Adam
f0542fae7a
fix(app): optimistic revert/restore
2026-03-12 15:04:27 -05:00
Adam
02c75821a8
feat(app): AMOLED theme
2026-03-12 14:11:22 -05:00
Adam
3ba9ab2c0a
fix(app): not loading message nav
2026-03-12 13:33:17 -05:00
David Hill
184732fc20
fix(app): titlebar cleanup ( #17206 )
2026-03-12 18:26:50 +00:00
Frank
b66222baf7
zen: fix nemotron issue
2026-03-12 14:17:36 -04:00
Adam
dce7eceb28
chore: cleanup ( #17197 )
2026-03-12 11:32:05 -05:00
Adam
0e077f7483
feat: session load perf ( #17186 )
2026-03-12 11:31:52 -05:00
Adam
776e7a9c15
feat(app): better themes ( #16889 )
2026-03-12 10:35:23 -05:00
opencode-agent[bot]
c455d41876
chore: update nix node_modules hashes
2026-03-12 15:07:54 +00:00
Aiden Cline
a776a3ee12
fix: non openai azure models that use completions endpoints ( #17128 )
2026-03-12 10:05:00 -05:00
Kit Langton
64fb9233bf
refactor(import): use .parse() at boundaries instead of manual .make() ( #17106 )
2026-03-12 10:52:20 -04:00
opencode-agent[bot]
3533f33ecb
chore: generate
2026-03-12 14:49:22 +00:00
Kit Langton
1cb7df7159
refactor(provider): flow branded ProviderID/ModelID through internal signatures ( #17182 )
2026-03-12 14:48:17 +00:00
Wang Siyuan
a4f8d66a9b
docs: clarify subagent session navigation keybinds ( #16455 )
2026-03-12 09:45:46 -05:00
Adam
12efbbfa4c
chore: cleanup ( #17184 )
2026-03-12 08:52:51 -05:00
max tomashevsky
13402529ce
fix(web): fix broken mobile sidebar (in workflows mode) sizing issue by adding flex-1 ( #17055 )
2026-03-12 08:46:41 -05:00
Adam
fc678ef36c
fix(app): terminal animation
2026-03-12 08:43:25 -05:00
Adam
03cd891ea9
chore: cleanup
2026-03-12 08:41:22 -05:00
opencode-agent[bot]
6314d741e7
chore: generate
2026-03-12 13:28:46 +00:00
Kit Langton
c45467964c
feat(id): brand ProviderID and ModelID ( #17110 )
2026-03-12 09:27:52 -04:00
Adam
2eeba53b07
fix(app): sidebar quirks
2026-03-12 07:51:31 -05:00
Adam
d4107d51f1
chore: cleanup ( #17115 )
2026-03-12 12:26:43 +00:00
opencode-agent[bot]
d8fbe0af01
chore: update nix node_modules hashes
2026-03-12 08:26:49 +00:00
Brendan Allan
b76ead3fe8
refactor(desktop): rework default server initialization and connection handling ( #16965 )
2026-03-12 08:10:52 +00:00
opencode-agent[bot]
51835ecf90
chore: generate
2026-03-12 07:36:35 +00:00
Luke Parker
328c6de80d
Fix terminal e2e flakiness with a real terminal driver ( #17144 )
2026-03-12 17:35:26 +10:00
OpeOginni
c9c0318e0e
fix(desktop): set default WebSocket username and prevent repeated calling of terminal spawn properly closing the terminal ( #17061 )
2026-03-12 14:48:44 +08:00
Luke Parker
d481f64bde
fix(electron): theme Windows titlebar overlay ( #16843 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-03-12 16:38:56 +10:00
Luke Parker
54e7baa6cf
fix(desktop-electron): fix resource loading under file:// protocol ( #17125 )
2026-03-12 12:19:44 +08:00
opencode-agent[bot]
1d7fcd40b4
chore: generate
2026-03-12 03:56:04 +00:00
Luke Parker
db7bafe917
fix(app): guard comment accessor in message timeline ( #17126 )
2026-03-12 13:55:16 +10:00
Dax Raad
b1ef501207
Merge remote-tracking branch 'origin/dev' into dev
2026-03-11 23:24:38 -04:00
Dax Raad
9fb12a906e
core: remove external sourcemap generation to reduce build artifacts
2026-03-11 23:24:26 -04:00
Luke Parker
fafbc29316
fix(ci): use dynamic bun cache path for cross-platform support ( #17120 )
2026-03-12 03:19:28 +00:00
opencode-agent[bot]
7b0def4b81
chore: generate
2026-03-12 02:04:26 +00:00
Luke Parker
1d9c83b576
fix(e2e): re-focus prompt after terminal opens in slash-terminal test ( #17113 )
2026-03-12 12:03:38 +10:00
opencode-agent[bot]
2c825c3223
chore: generate
2026-03-12 01:50:44 +00:00
Kit Langton
2a4dedc210
feat(id): brand PermissionID, PtyID, QuestionID, and ToolID ( #17042 )
2026-03-12 01:49:57 +00:00
opencode-agent[bot]
b0bca6342e
chore: generate
2026-03-12 00:26:05 +00:00
Luke Parker
547eb7676d
feat(windows): add arm64 release targets for cli and desktop ( #16696 )
2026-03-12 00:25:09 +00:00
opencode-agent[bot]
83f083ee0d
chore: generate
2026-03-11 23:41:43 +00:00
Kit Langton
090f636354
feat(id): brand PartID through Drizzle and Zod schemas ( #16966 )
2026-03-11 23:40:50 +00:00
opencode-agent[bot]
d26c6f80e1
chore: generate
2026-03-11 23:31:07 +00:00
Kit Langton
16a6d6feba
feat(id): brand WorkspaceID through Drizzle and Zod schemas ( #16964 )
2026-03-11 23:30:17 +00:00
John Mylchreest
f1c3a44190
fix: resolve symlinks in Instance cache to prevent duplicate contexts ( #16651 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-03-11 23:26:54 +00:00
opencode-agent[bot]
34fa5de9c5
chore: generate
2026-03-11 23:17:42 +00:00
Kit Langton
cb67465675
feat(id): brand SessionID through Drizzle and Zod schemas ( #16953 )
2026-03-11 23:16:56 +00:00
Frank
4e73473119
wip: zen
2026-03-11 19:00:05 -04:00
Frank
cc18fa599c
wip: zen
2026-03-11 18:50:49 -04:00
Frank
aa81c1c4cb
docs: go pricing
2026-03-11 18:09:41 -04:00
Frank
8569fc1f0e
docs: zen update models
2026-03-11 18:09:41 -04:00
Frank
78de287bcc
wip: zen
2026-03-11 18:09:41 -04:00
Frank
bbc7052c7a
go: dashboard design
2026-03-11 18:09:41 -04:00
Frank
502d6db6d0
go: first month discount
2026-03-11 18:09:41 -04:00
Frank
0b0ad5de99
zen: update discount copy on lander
2026-03-11 18:09:41 -04:00
Frank
9e6c4a01aa
zen: add alipay for adding balance
2026-03-11 18:09:41 -04:00
Frank
4a81df190c
zen: add alipay for go sub
2026-03-11 18:09:41 -04:00
Frank
75cae81f75
zen: add Go page
2026-03-11 18:09:41 -04:00
Frank
ed3bb3ea8f
zen: add usage section
2026-03-11 18:09:40 -04:00
Frank
fac23a1afc
zen: update usage graph on landing page
2026-03-11 18:09:40 -04:00
Frank
f89696509e
zen: update header
2026-03-11 18:09:40 -04:00
Dax Raad
604ab1bde1
core: restore plugin serverUrl getter so plugins can connect to local server
2026-03-11 17:41:51 -04:00
Adam
fbd9b7cf4f
feat(app): restore to message and fork session ( #17092 )
2026-03-11 21:34:48 +00:00
Adam
58f45ae22b
chore: skip test
2026-03-11 16:21:04 -05:00
Noam Bressler
440405dbdd
fix: re-enable snapshot in acp ( #14918 )
2026-03-11 16:18:40 -05:00
Adam
a1cda29012
chore: fix test
2026-03-11 16:11:02 -05:00
Aiden Cline
f96e2d4222
tweak: adjust skill presentation to be a little less token heavy ( #17098 )
2026-03-11 16:03:15 -05:00
Adam
387ab78bf6
chore: fix test
2026-03-11 16:02:11 -05:00
Kit Langton
dbc00aa8e0
feat(id): brand ProjectID through Drizzle and Zod schemas ( #16948 )
2026-03-11 16:44:26 -04:00
Adam
c37f7b9d99
fix(app): todos not clearing
2026-03-11 14:42:34 -05:00
Chris Yang
cf7ca9b2f7
fix(app): skip editor reconcile during IME composition ( #17041 )
2026-03-11 13:40:06 -05:00
Kit Langton
981c7b9e37
refactor(account): tighten effect-based account flows ( #17072 )
2026-03-11 18:18:58 +00:00
Johannes Loher
2aae0d3493
fix(core): read stdout and stderr in PackageRegistry.info before waiting for the process to exit ( #16998 )
2026-03-11 13:10:45 -05:00
Adam
bcc0d19867
chore(app): simplify review pane ( #17066 )
2026-03-11 12:24:51 -05:00
xinxin
9c585bb58b
docs(providers): clarify npm choice for chat vs responses APIs ( #16974 )
...
Co-authored-by: wangxinxin <xinxin.wang@pharmbrain.com >
2026-03-11 10:35:16 -05:00
Aiden Cline
0f6bc8ae71
tweak: adjust way skills are presented to agent to increase likelyhood of skill invocations. ( #17053 )
2026-03-11 10:24:55 -05:00
Shoubhit Dash
7291e28273
perf(app): trim session render work ( #16987 )
2026-03-11 18:19:17 +05:30
Filip
db57fe6193
fix(app): make error tool card respect settings ( #17005 )
2026-03-11 14:52:33 +05:30
Brendan Allan
802416639b
ci: setup node in tauri build
2026-03-11 16:09:17 +08:00
opencode-agent[bot]
7ec398d855
chore: generate
2026-03-11 03:34:02 +00:00
Luke Parker
4ab35d2c5c
fix(electron): hide Windows background consoles ( #16842 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-03-11 13:33:06 +10:00
SOUMITRA-SAHA
b4ae030fc2
fix: add GOOGLE_VERTEX_LOCATION env var support for Vertex AI ( #16922 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-10 22:32:39 -05:00
Jack
0843964eb3
feat(web): use Feishu for Chinese community links ( #16908 )
...
Co-authored-by: Frank <frank@anoma.ly >
2026-03-11 11:07:13 +08:00
Kit Langton
a1b06d63c9
fix(account): resilient orgs fetch ( #16944 )
2026-03-11 00:39:07 +00:00
Dax Raad
1b6820bab5
sync
2026-03-10 20:13:56 -04:00
Adam
89bf199c07
chore(app): fix tests
2026-03-10 19:03:44 -05:00
Aiden Cline
5acfdd1c5d
chore: kill old copilot 403 message that was used for old plugin migration ( #16904 )
2026-03-10 16:20:41 -05:00
Dax Raad
556703f8ab
ci: cancel duplicate workflow runs and add read permissions
...
- Add concurrency settings to cancel outdated runs when new commits are pushed
- Add contents: read permission for security hardening
- Remove redundant required job that checked test results
2026-03-10 17:17:11 -04:00
Frank
6b9f8fb9b3
zen: raise limit
2026-03-10 15:22:02 -04:00
David Hill
f77e5cf8fb
feat(ui): restyle Card and improve tool error cards ( #16888 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-10 13:52:32 -05:00
Frank
e6cdc21f2d
zen: raise limit
2026-03-10 14:40:18 -04:00
Dax Raad
1fe8d4d7ad
ci: exclude draft PRs from beta labeling process to prevent unfinished work from being included in releases
2026-03-10 14:08:55 -04:00
Dax Raad
e44320980d
ci: install setuptools to prevent Python distutils errors during dependency installation
2026-03-10 14:08:38 -04:00
Adam
f5d7fe3072
chore: cleanup
2026-03-10 13:00:14 -05:00
Adam
835a27cf51
fix(app): terminal jank
2026-03-10 13:00:14 -05:00
Adam
85afaaa13d
fix(app): terminal focus issues and jank
2026-03-10 13:00:14 -05:00
opencode-agent[bot]
490615169e
chore: update nix node_modules hashes
2026-03-10 17:14:55 +00:00
Dax
bb232247d0
Fix ESM imports for @opencode-ai/plugin ( #16916 )
2026-03-10 13:11:36 -04:00
opencode-agent[bot]
94c128f73b
chore: generate
2026-03-10 16:56:30 +00:00
Dax
613562f504
core: make account login upgrades safe while adding multi-account workspace auth ( #15487 )
...
Co-authored-by: Kit Langton <kit.langton@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 12:53:47 -04:00
Adam
9c4325bcf8
fix(core): don't permit access to system directories ( #16891 )
2026-03-10 11:32:05 -05:00
Aiden Cline
ad08fd57df
chore: rekram1-node is no longer on vacation ( #16905 )
2026-03-10 10:27:04 -05:00
opencode-agent[bot]
54ba59d3e1
chore: generate
2026-03-10 15:14:46 +00:00
James Long
a4330a225d
feat(core): allow passing workspaceID into session create endpoint ( #16798 )
2026-03-10 11:12:51 -04:00
James Long
69ddc91c35
fix(core): a chunk timeout when processing llm stream ( #16366 )
2026-03-10 11:12:14 -04:00
James Long
4c4aed5a87
fix(core): make worktrees read the project id from local workspace ( #16795 )
2026-03-10 11:11:28 -04:00
opencode-agent[bot]
5a40158abf
chore: generate
2026-03-10 15:07:35 +00:00
Jérôme Benoit
4dce485854
fix(opencode): add thinking variants support for SAP AI provider ( #14958 )
...
Co-authored-by: Test <test@test.com >
Co-authored-by: Stephen Collings <stevoland@gmail.com >
2026-03-10 10:05:45 -05:00
Adam
5ec5d1dace
chore(app): debug window
2026-03-10 07:05:54 -05:00
opencode-agent[bot]
d2c765e2b3
chore: generate
2026-03-10 11:01:22 +00:00
bhaktatejas922
d036c57d59
docs: update opencode-morph-plugin in all language ecosystem pages ( #16869 )
2026-03-10 06:00:13 -05:00
opencode-agent[bot]
e7493e2204
chore: update nix node_modules hashes
2026-03-10 10:16:15 +00:00
Sebastian
3500bf64b8
upgrade opentui to v0.1.87 ( #16772 )
2026-03-10 11:03:05 +01:00
opencode-agent[bot]
4f982ddb94
chore: generate
2026-03-10 02:02:18 +00:00
adam jones
ff3bb7424d
fix(mcp): fix OAuth auto-connect failing on first connection ( #15547 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-09 21:01:19 -05:00
Dax Raad
89d6f60d25
refactor(server): extract createApp function for server initialization
...
- Replace Server.App() with Server.Default() for internal server access
- Extract server app creation into Server.createApp(opts) for testability
- Move CORS whitelist from module-level variable to function parameter
- Update all tests to use Server.Default() instead of Server.App()
2026-03-09 17:13:52 -04:00
Adam
ee18c9976e
chore(app): dev stats
2026-03-09 15:57:24 -05:00
Adam
794532928f
fix(app): terminal state corruption
2026-03-09 15:28:35 -05:00
Adam
7b773c65ec
chore: cleanup
2026-03-09 15:28:35 -05:00
Adam
e53aa79dc6
chore: cleanup
2026-03-09 15:28:35 -05:00
opencode-agent[bot]
d9a97249c0
chore: generate
2026-03-09 20:15:31 +00:00
James Long
86cef16940
fix(core): put workspace routing behind OPENCODE_EXPERIMENTAL_WORKSPACES flag ( #16775 )
2026-03-09 16:14:19 -04:00
opencode-agent[bot]
ce38997c76
chore: update nix node_modules hashes
2026-03-09 19:51:58 +00:00
opencode-agent[bot]
7e10c728d4
chore: update nix node_modules hashes
2026-03-09 19:49:01 +00:00
bhaktatejas922
3627c67cf2
docs: update opencode-morph-fast-apply to opencode-morph-plugin in ecosystem ( #16634 )
2026-03-09 14:39:06 -05:00
opencode-agent[bot]
2518fd81f6
chore: generate
2026-03-09 19:31:33 +00:00
Dax Raad
39ef7fc90e
Merge remote-tracking branch 'origin/dev' into dev
2026-03-09 15:30:15 -04:00
Dax Raad
37ae0a4051
refactor: replace bun semver with npm semver package
2026-03-09 15:29:55 -04:00
Kyle Altendorf
b312928e9f
fix(tui): wait for model store before auto-submitting --prompt ( #7476 )
2026-03-09 14:22:38 -05:00
Dax
2f2856e20a
refactor(opencode): replace Bun shell in core flows ( #16286 )
2026-03-09 15:19:50 -04:00
Dax Raad
831eb6881b
refactor: change pathToFileURL imports from bun to url module
2026-03-09 14:52:25 -04:00
James Long
f20ee2fad2
fix(tui): handle error when creating a session ( #16767 )
2026-03-09 12:13:32 -04:00
Stephen Collings
8b9710e56c
fix: Multiple jdtls LSPs eating memory in java monorepos ( #12123 )
2026-03-09 16:09:43 +00:00
opencode
c6262f9d40
release: v1.2.24
2026-03-09 16:09:34 +00:00
Adam
b749fa90f2
fix(app): scroll jitter/loop
2026-03-09 10:44:02 -05:00
Dax Raad
8a51cbd253
core: prevent accidental edits to migration files by restricting agent access
2026-03-09 11:25:58 -04:00
David Hill
399b8f0701
fix(app): session title turn spinner ( #16764 )
2026-03-09 09:46:15 -05:00
Filip
3742e42fdf
fix(app): dismiss toast notifications when questions or permissions a… ( #16758 )
2026-03-09 09:36:57 -05:00
Karan Handa
0388ec6862
fix(storybook): add ci build workflow ( #16760 )
2026-03-09 09:33:19 -05:00
James Long
366b8a8034
feat(tui): add initial support for workspaces into the tui ( #16230 )
2026-03-09 10:28:04 -04:00
Armin Pašalić
ef9bc4ec9e
feat(gitlab): send context-1m-2025-08-07 beta header to enable 1M context window ( #16153 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-09 09:22:00 -05:00
Jack
5838b58913
add copilot gpt-5.4 xhigh support ( #16294 )
2026-03-09 22:07:12 +08:00
opencode
2712244ad3
release: v1.2.23
2026-03-09 13:50:43 +00:00
Adam
6388cbaf92
fix(app): remove oc-1 theme
2026-03-09 08:25:41 -05:00
David Hill
5cc61e1b53
tui: fix sidebar workspace container sizing by adding box-border class to prevent content overflow issues
2026-03-09 13:05:43 +00:00
Adam
0243be86a7
fix(app): don't animate review panel in/out
2026-03-09 07:49:11 -05:00
opencode-agent[bot]
9154cd64e7
chore: update nix node_modules hashes
2026-03-09 12:46:47 +00:00
Adam
c71d1bde5e
revert(app): "STUPID SEXY TIMELINE ( #16420 )" ( #16745 )
2026-03-09 07:36:39 -05:00
Luke Parker
f27ef595f6
fix(app): sanitize workspace store filenames on Windows ( #16703 )
2026-03-09 20:26:53 +10:00
Yihui Khuu
34328828ae
fix(app): fix issue with scroll jumping when pressing escape in comment text area ( #15374 )
2026-03-09 15:29:24 +05:30
Eric Clemmons
18fb19da3b
fix(opencode): pass missing auth headers in run --attach ( #16097 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-09 07:32:13 +00:00
opencode-agent[bot]
849e1ac543
docs(i18n): sync locale docs from english changes
2026-03-09 02:08:46 +00:00
Ariane Emory
656a8d8f55
docs: add session_child_first keybinding to documentation ( #16631 )
2026-03-08 21:03:52 -05:00
Adam
b976f339e8
feat(app): generate color palettes ( #16232 )
2026-03-08 19:28:58 -05:00
Dax Raad
7d7837e5b6
disable fallback to free nano for small model
2026-03-08 19:27:15 -04:00
opencode
1db292f4df
release: v1.2.22
2026-03-08 22:34:59 +00:00
Sebastian
49a3a9fe36
guard tui exit ( #16640 )
2026-03-08 23:14:41 +01:00
Luke Parker
e51ed460a6
fix(tui): canonicalize cwd after chdir ( #16641 )
2026-03-09 07:57:48 +10:00
David Hill
d15c2ce349
tui: fix sidebar background color when collapsed
...
When the sidebar was collapsed (not on mobile), the background color was showing as the stronger variant instead of matching the base background. This fixes the hover state detection so users see a consistent lighter background when the sidebar is in collapsed mode.
2026-03-08 13:34:56 +00:00
David Hill
5cc4bb4089
app: suppress hover when opening project menu or right-clicking to prevent flickering
2026-03-08 13:31:18 +00:00
Shoubhit Dash
6e9e027886
fix: trim retained desktop terminal buffers ( #16583 )
2026-03-08 07:50:04 -05:00
opencode-agent[bot]
f9a3d129a4
chore: update nix node_modules hashes
2026-03-08 12:25:35 +00:00
Adam
c53d1d3ad8
fix(app): less auto-expand/collapse
2026-03-08 07:11:15 -05:00
Adam
f386137fba
chore: refactoring ui hooks
2026-03-08 07:11:15 -05:00
Adam
c797b60069
fix(app): messages not loading reliably
2026-03-08 07:11:15 -05:00
Shoubhit Dash
a139e9297d
fix: prune and evict stale app session caches ( #16584 )
2026-03-08 07:10:00 -05:00
Shoubhit Dash
050f99ec54
test: make process cwd check cross-platform ( #16594 )
2026-03-08 06:56:45 -05:00
Roy Bruschini
23ed652901
docs(zen.mdx): correct Italian grammar and punctuation errors ( #16590 )
2026-03-08 16:40:06 +05:30
tobwen
13a68f3de3
fix(opencode): avoid TTY corruption from double cleanup ( #16565 )
...
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-08 13:55:33 +05:30
Nate Williams
fdad35aaa7
fix(tui): fix broken /mcp toggling ( #16431 )
...
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-08 13:31:09 +05:30
Dax
a2ce4eb650
test: remove unused Ripgrep.search coverage ( #16554 )
2026-03-07 21:40:57 -05:00
David Hill
8fa04986cf
Revert "tui: dock auto-accept after thinking and move Add file to bottom-left"
...
This reverts commit 69cb49f7cc .
2026-03-08 01:31:09 +00:00
David Hill
a5710ed3e1
Revert "tui: keep model + thinking selectors beside Add file"
...
This reverts commit 426dcfa3b0 .
2026-03-08 01:31:06 +00:00
David Hill
2efdc9df93
Revert "tui: add more editor bottom padding for prompt controls"
...
This reverts commit 981353793d .
2026-03-08 01:31:03 +00:00
David Hill
0c245886fe
Revert "tui: expose auto-accept as a permissions select"
...
This reverts commit 12d862dbd3 .
2026-03-08 01:31:00 +00:00
David Hill
f03288b411
Revert "tui: use text-base color for prompt selects"
...
This reverts commit 207ebf4b8c .
2026-03-08 01:30:55 +00:00
David Hill
09388c98f3
Revert "tui: remove prompt model/thinking/permissions selectors on dev so the composer stays simple"
...
This reverts commit ae25c1e7b7 .
2026-03-08 01:27:45 +00:00
David Hill
ae25c1e7b7
tui: remove prompt model/thinking/permissions selectors on dev so the composer stays simple
2026-03-08 01:21:45 +00:00
David Hill
0813c14cc6
tui: restore new-session logo on dev so users recognize OpenCode immediately
2026-03-08 01:18:42 +00:00
David Hill
b5151c421f
tui: revert new-session logo on dev so this UI change only ships with auto-accept-permissions
2026-03-08 01:10:52 +00:00
David Hill
e66fd079db
tui: add opencode logo to new session screen so users can immediately identify the app when starting a fresh session
2026-03-08 00:59:03 +00:00
David Hill
207ebf4b8c
tui: use text-base color for prompt selects
...
Select triggers in the composer now use the normal text color so model/thinking/permissions controls read consistently with the rest of the input UI.
2026-03-08 00:53:57 +00:00
David Hill
12d862dbd3
tui: expose auto-accept as a permissions select
...
Lets people explicitly choose between normal permission prompts and auto-accept while composing, without relying on an ambiguous icon state.
2026-03-08 00:53:57 +00:00
David Hill
981353793d
tui: add more editor bottom padding for prompt controls
...
Gives typed text more breathing room above the Add file/model/thinking row so the controls don’t visually crowd what you’re writing.
2026-03-08 00:53:57 +00:00
David Hill
426dcfa3b0
tui: keep model + thinking selectors beside Add file
...
People change models and thinking settings while composing, so keeping those controls next to the Add file button avoids hunting in the footer and reduces context switching mid-message.
2026-03-08 00:53:57 +00:00
David Hill
69cb49f7cc
tui: dock auto-accept after thinking and move Add file to bottom-left
...
Auto-accept now lives in the footer dock beside the thinking control so it stays easy to find without crowding the text box.
The Add file button moves to the bottom-left of the editor and the input gets a bit more bottom padding so the control row doesn’t overlap what you’re typing.
2026-03-08 00:53:57 +00:00
Dax Raad
e30678a088
test: normalize ripgrep path assertion on windows
2026-03-07 19:47:57 -05:00
opencode-agent[bot]
771b29a857
chore: generate
2026-03-08 00:31:35 +00:00
Dax Raad
e6d1aae33a
test: lock in process, ripgrep, and installation helpers
2026-03-07 19:30:32 -05:00
David Hill
9dc8ac4734
tui: revert prompt control docking
...
Restore the previous prompt control layout after the dock/position changes made the composer feel less familiar.
This brings auto-accept back to its prior spot and returns Add file to the previous placement.
2026-03-08 00:17:28 +00:00
David Hill
fdd037ba20
tui: dock auto-accept after thinking and move Add file to bottom-left
...
Auto-accept now lives in the footer dock beside the thinking control so it stays easy to find without crowding the text box.
The Add file button moves to the bottom-left of the editor and the input gets a bit more bottom padding so the control row doesn’t overlap what you’re typing.
2026-03-08 00:08:37 +00:00
Dax Raad
523f792b48
core: update database path test to verify correct channel-based filename
...
The test now validates that the database file is named according to the current installation channel (latest/beta get 'opencode.db', others get sanitized names). This ensures users' data is stored in the correct location based on their update channel.
2026-03-07 18:53:29 -05:00
Dax Raad
2230c3c401
core: allow beta channel to share database with stable channel
2026-03-07 18:53:29 -05:00
David Hill
1b494e5087
tui: balance titlebar columns so center content doesn't get squeezed by long side content
2026-03-07 23:50:23 +00:00
David Hill
9c43893a0f
tui: align numeric displays consistently across tool outputs and diff counters using tabular numerals
2026-03-07 23:49:10 +00:00
David Hill
6dfe19b445
tui: center empty states vertically in session view and improve review panel messaging for projects without version control
2026-03-07 23:45:16 +00:00
Dax Raad
a965a06259
core: add OPENCODE_SKIP_MIGRATIONS flag to bypass database migrations
...
Allows users to skip automatic database migrations by setting the
OPENCODE_SKIP_MIGRATIONS environment variable. Useful for testing
scenarios or when manually managing database state.
2026-03-07 16:17:00 -05:00
Frank
0654f28c72
zen: fix graph legend
2026-03-07 14:28:36 -05:00
Adam
a32b76dee0
fix(app): review panel transition
2026-03-07 13:27:44 -06:00
opencode
a52d640c8c
release: v1.2.21
2026-03-07 18:00:39 +00:00
Karan Handa
218869cf45
fix(storybook): restore build by mocking useLocation ( #16472 )
2026-03-07 09:55:43 -06:00
Eric Guo
e99d7a4292
fix(app): text-shimmer undefined length ( #16475 )
2026-03-07 09:53:32 -06:00
SANGWOO PARK
f0beb38f91
fix(app): guard session-header current() against undefined when options is empty ( #16478 )
2026-03-07 09:51:21 -06:00
Filip
66fcab7b08
fix(app): preserve file tree tab on reopen + fix e2e test regressions ( #16482 )
2026-03-07 09:47:45 -06:00
David Hill
641e1781a2
tui: remove close button from project hover popover ( #16403 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-07 07:00:58 -06:00
Adam
490b95efe7
fix(app): new session uses agent model/variant
2026-03-07 07:00:38 -06:00
Adam
ba1edea0ab
fix(app): model sticks to session
2026-03-07 06:57:00 -06:00
Adam
73c9b685a7
fix(app): all panels transition
2026-03-07 06:48:37 -06:00
Adam
99d8aab0ac
fix(app): can't scroll files
2026-03-07 06:47:11 -06:00
Adam
7dd6369952
fix(app): task agent title
2026-03-07 06:03:30 -06:00
Adam
06f60af1e9
chore: update web stats
2026-03-07 05:47:47 -06:00
Adam
66d0beba6f
fix(app): fix max-width on timeline
2026-03-07 05:45:30 -06:00
David Hill
6b99dd50b6
tui: align session empty states ( #16412 )
2026-03-07 05:39:43 -06:00
opencode-agent[bot]
c53c9d4e4e
chore: generate
2026-03-07 11:26:12 +00:00
Kit Langton
bbd0f3a252
STUPID SEXY TIMELINE ( #16420 )
2026-03-07 05:25:22 -06:00
Luke Parker
b7e208b4f1
test(app): share workspace slug wait helper across e2e specs ( #16446 )
2026-03-07 07:48:30 +00:00
Quan Ran
be9b4d1bcd
fix(opencode): preserve original line endings in 'edit' tool ( #9443 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-03-07 07:42:54 +00:00
Nate Williams
5b5b791d75
fix(tui): fix broken /export toggling ( #16443 )
2026-03-07 12:52:17 +05:30
Luke Parker
0b7a5b1e7b
test(app): abort sessions and wait for idle before e2e cleanup ( #16439 )
2026-03-07 16:33:12 +10:00
Karan Handa
28bb16ca2a
fix(config): point GitHub PR search tool at current repository ( #16441 )
2026-03-07 05:53:28 +00:00
Luke Parker
8a95be492d
fix(windows): git path resolution for modified files across Git Bash, MSYS2, and Cygwin ( #16422 )
2026-03-07 15:42:14 +10:00
opencode-agent[bot]
c42c5a0cc6
chore: generate
2026-03-07 04:54:05 +00:00
kikuchan
b2c2478d9d
fix(pty): pty session handle leak ( #15599 )
2026-03-07 14:53:11 +10:00
Luke Parker
1a9af8acb6
feat(desktop): show skill issue when snapshotting is off ( #16432 )
2026-03-07 04:52:04 +00:00
Luke Parker
4c7fe60493
fix(opencode): sanitize preview database filenames ( #16430 )
2026-03-07 04:34:29 +00:00
opencode-agent[bot]
c108f304c6
chore: update nix node_modules hashes
2026-03-07 02:35:17 +00:00
David Hill
2b8acfa0e2
app: fix portal positioning for sidebar menus and tooltips by removing conditional mount logic
2026-03-07 00:30:51 +00:00
Jay V
b83282b940
docs: update legal policies for 2026 terms refresh
2026-03-06 18:31:02 -05:00
Filip
c4fd677785
tests(app): e2e tests part 67 ( #16406 )
2026-03-06 17:08:59 -06:00
opencode-agent[bot]
770cb66628
chore: generate
2026-03-06 22:34:25 +00:00
David Hill
b0bc3d87f5
feat(app): sidebar reveal animation, hover peek overlay, and weaker dividers ( #16374 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-06 16:33:34 -06:00
James Long
a2634337b8
fix(core): log stack trace when schema validation fails ( #16401 )
2026-03-06 17:04:22 -05:00
Dax Raad
7417c869fc
fix issue with migration
2026-03-06 16:44:49 -05:00
David Hill
091cf25de8
fix(app): better review/filetree empty states ( #16221 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-06 15:39:31 -06:00
Adam
7a071eff5c
chore: fix test
2026-03-06 15:27:49 -06:00
opencode-agent[bot]
7da24ebf5d
chore: generate
2026-03-06 19:40:36 +00:00
Shoubhit Dash
d6e0f47361
feat: add project git init api ( #16383 )
2026-03-06 13:39:50 -06:00
Alexandre Reyes Martins
95385eb652
fix(app): enable Safari autocorrect in normal mode, disable in shell mode ( #15563 )
2026-03-06 22:36:27 +05:30
Adam
a71b11caca
fix(app): stale keyed show errors
2026-03-06 11:03:37 -06:00
Hoshiumi Arata
e9568999c3
fix(ui): prevent unwanted key events during composition in LineCommentEditor ( #16361 )
2026-03-06 11:01:13 -06:00
Dax Raad
5e699c9426
chore(storage): update drizzle and channel db handling
2026-03-06 10:58:19 -05:00
Adam
e0ca52ed1f
fix(app): part type gate
2026-03-06 09:56:02 -06:00
Shoubhit Dash
1d9dcd2a27
share: speed up share loads ( #16165 )
2026-03-06 06:49:15 -06:00
Adam
eeeb21ff86
Revert "fix(app): stale read error"
...
This reverts commit 152df2428d .
2026-03-06 05:52:48 -06:00
Adam
2094e8b255
Revert "fix(app): stale keyed show errors"
...
This reverts commit 7665b8e30d .
2026-03-06 05:52:47 -06:00
opencode-agent[bot]
e1cf761d29
chore: generate
2026-03-06 11:48:31 +00:00
Kirill Tregubov
f64bb91257
fix(app): add english to locale matchers ( #16280 )
2026-03-06 05:47:39 -06:00
D
eb9eb5e334
feat: Add Vietnamese README and update all language navigation links … ( #16322 )
2026-03-06 05:46:53 -06:00
opencode-agent[bot]
d4d1292a0e
chore: generate
2026-03-06 10:50:00 +00:00
Luis Felipe Cordeiro Sena
b7605add58
fix(app): enable auto-accept keybind regardless of permission config ( #16259 )
2026-03-06 04:49:12 -06:00
opencode
6c7d968c44
release: v1.2.20
2026-03-06 07:29:34 +00:00
Dax
326c70184d
fix: restore Bun stdin reads for prompt input ( #16300 )
2026-03-06 02:08:10 -05:00
Luke Parker
aec6ca71fa
fix(git): stop leaking fsmonitor daemons e.g. 60GB+ of commited memory after running tests ( #16249 )
2026-03-06 15:42:08 +10:00
opencode-agent[bot]
c04da45be5
chore: update nix node_modules hashes
2026-03-06 05:31:01 +00:00
Dax
74effa8eec
refactor(opencode): replace Bun.which with npm which ( #15012 )
2026-03-06 05:18:29 +00:00
opencode
cb411248bf
release: v1.2.19
2026-03-06 04:29:10 +00:00
Sadık
46d7d2fdc0
feat: add "gpt-5.4" to codex allowed models list ( #16274 )
2026-03-05 23:03:01 -05:00
Dax Raad
d68afcaa55
refactor: replace Bun.stderr and Bun.color with Node.js equivalents
2026-03-05 22:20:16 -05:00
Dax Raad
bf35a865ba
refactor: replace Bun.connect with net.createConnection
2026-03-05 22:17:08 -05:00
Dax Raad
6733a5a822
fix: use sha1 for hash instead of unsupported xxhash3-xxh64
2026-03-05 22:12:10 -05:00
Dax Raad
7e28098365
refactor: use node:stream/consumers for stdin reading
2026-03-05 22:08:50 -05:00
Dax Raad
ae5c9ed3dd
refactor: replace Bun.stdin.text with Node.js stream reading
2026-03-05 22:04:20 -05:00
Dax Raad
a9bf1c0505
refactor: replace Bun.hash with Hash.fast using xxhash3-xxh64
2026-03-05 22:03:24 -05:00
Dax Raad
dad248832d
refactor: replace Bun.write with Filesystem.write in config files
2026-03-05 21:59:20 -05:00
Dax Raad
6e89d3e597
refactor: replace Bun.write/file with Filesystem utilities in snapshot
2026-03-05 21:56:41 -05:00
Dax
3ebba02d04
refactor: replace Bun.sleep with node timers ( #15013 )
2026-03-05 21:54:06 -05:00
Filip
cf425d114e
fix(app): stale show ( #16236 )
2026-03-05 18:23:48 -06:00
David Hill
39691e5174
tui: remove keyboard shortcut tooltips from new session and new workspace buttons in the sidebar
2026-03-05 23:44:00 +00:00
Frank
adaee66364
zen: gpt 5.4 pro
2026-03-05 18:39:17 -05:00
Frank
a6978167ae
ci: fix
2026-03-05 15:46:17 -05:00
Frank
80c36c788c
zen: gpt5.3 codex spark
2026-03-05 15:40:51 -05:00
Jun
76cdc668e8
fix(console): follow-up for #13108 docs/en routing and locale cookie sync ( #13608 )
2026-03-05 14:31:38 -06:00
Adam
2ba1ecabc9
fix(app): load tab on open file
2026-03-05 13:40:25 -06:00
opencode-agent[bot]
e3b6d84b57
docs(i18n): sync locale docs from english changes
2026-03-05 19:01:10 +00:00
Frank
0638e49b02
zen: gpt5.4
2026-03-05 19:01:10 +00:00
opencode
2c58964a6b
release: v1.2.18
2026-03-05 19:01:03 +00:00
opencode-agent[bot]
9507b0eace
chore: update nix node_modules hashes
2026-03-05 15:09:14 +00:00
Dax
4da199697b
feat(tui): add onClick handler to InlineTool and Task components ( #16187 )
2026-03-05 15:02:30 +00:00
Adam
9cccaa693a
chore(app): ghostty-web fork
2026-03-05 08:58:11 -06:00
Dax Raad
bb37e908ad
ci: remove unused publishConfig that was breaking npm publishing
2026-03-05 09:45:30 -05:00
Dax Raad
d802e28381
update sdk package.json
2026-03-05 09:45:30 -05:00
Adam
7665b8e30d
fix(app): stale keyed show errors
2026-03-05 08:42:50 -06:00
Adam
a3d4ea0de1
fix(app): locale error
2026-03-05 08:10:36 -06:00
Adam
152df2428d
fix(app): stale read error
2026-03-05 08:09:29 -06:00
Adam
1a420a1a71
fix(app): websearch and codesearch tool rendering
2026-03-05 08:00:42 -06:00
Adam
4c185c70f2
fix(app): provider settings consistency
2026-03-05 08:00:42 -06:00
Adam
6f9e5335dc
fix(app): file icon stability
2026-03-05 08:00:42 -06:00
Adam
6c9ae5ce9f
fix(app): file path truncation in session turn
2026-03-05 08:00:42 -06:00
Adam
8cbe7b4a01
fix(app): file icon stability
2026-03-05 08:00:41 -06:00
ismeth
07348d14a2
fix(app): preserve question dock state across session switches ( #16173 )
2026-03-05 19:05:16 +05:30
Adam
5f40bd42f8
fix(app): icon jiggle
2026-03-05 07:00:21 -06:00
Adam
0e5edef51e
chore(console): go page i18n
2026-03-05 06:59:04 -06:00
Adam
3448118be8
fix(app): mod+f always opens search
2026-03-05 06:57:50 -06:00
Adam
2bb3dc585b
fix(app): no delay on tooltip close
2026-03-05 06:44:11 -06:00
OpeOginni
27baa2d65c
refactor(desktop): improve error handling and translation in server error formatting ( #16171 )
2026-03-05 06:28:17 -06:00
opencode-agent[bot]
62909e917a
chore: generate
2026-03-05 12:27:12 +00:00
OpeOginni
a60e715fc6
fix(app): improve agent selection logic passing in configured models and variants correctly ( #16072 )
2026-03-05 06:26:20 -06:00
Shoubhit Dash
161734fb95
desktop: remove unnecessary macOS entitlements ( #16161 )
2026-03-05 05:43:21 -06:00
Brendan Allan
4e26b0aec7
desktop: new-session deeplink ( #15322 )
2026-03-05 09:15:14 +00:00
Brendan Allan
6531cfc521
desktop-electon: handle latest version update check properly
2026-03-05 17:00:13 +08:00
opencode-agent[bot]
6ddd13c6ac
chore: update nix node_modules hashes
2026-03-05 06:53:43 +00:00
Brendan Allan
7948de1612
app: prefer using useLocation instead of window.location ( #15989 )
2026-03-05 14:41:12 +08:00
Daniel Polito
f363904feb
feat(opencode): Adding options to auth login to skip questions ( #14470 )
...
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-05 06:16:53 +00:00
Frank
85ff05670a
zen: update go page
2026-03-04 22:23:22 -05:00
Anton Volkov
324230806e
chore: update turborepo ( #16061 )
2026-03-05 09:49:11 +10:00
Luke Parker
7f7e622426
dont let dax touch the ui ( #16060 )
2026-03-04 23:31:48 +00:00
Frank
27447bab26
wip: zen
2026-03-04 18:29:38 -05:00
James Long
45ac20b8aa
fix(core): handle SIGHUP and kill process ( #16057 )
2026-03-04 23:12:05 +00:00
Frank
218330aec1
Merge branch 'go-page' into dev
2026-03-04 18:00:11 -05:00
David Hill
67fa7903c3
tui: prevent Go pricing graph from overflowing on medium screens by constraining width and moving axis labels outside SVG for sharper rendering
2026-03-04 22:31:23 +00:00
David Hill
cd3a09c6a7
tui: clearer graph labels and responsive layout for usage visualization
...
Improve readability of the usage graph y-axis label by spelling out
'Requests per 5 hour' instead of the abbreviated 'Requests/5h'. Fix
layout on smaller screens by removing negative margin that was
causing the graph to overflow its container.
2026-03-04 22:19:28 +00:00
David Hill
f8685a4d53
tui: clarify free tier includes Big Pickle and promotional requests on Go pricing page
2026-03-04 22:16:30 +00:00
David Hill
6cbb1ef1c2
wip: Make bar colors in limit graph customizable via CSS variables for consistent theming across the go route visualization
2026-03-04 22:10:17 +00:00
David Hill
0b825ca383
docs: redesign Go pricing graph with horizontal bars and inline request labels
...
Improve visual clarity of request limits on the Go pricing page by replacing
dot-based chart with animated horizontal bars that directly show model names
and exact request counts. Add proper OpenGraph and Twitter Card meta tags for
better social sharing discovery.
2026-03-04 22:07:49 +00:00
opencode-agent[bot]
22a4c5a77e
docs(i18n): sync locale docs from english changes
2026-03-04 18:39:59 +00:00
Scott Tolinski
29dbfc25e5
docs: Add opencode-sentry-monitor to ecosystem documentation ( #16037 )
2026-03-04 13:34:17 -05:00
David Hill
40fc406424
ci: make tsgo available for pre-push typechecks
2026-03-04 16:48:29 +00:00
David Hill
6f23271741
chore(ui): remove quotes
2026-03-04 16:45:34 +00:00
David Hill
b7198c28c8
tweak(ui): darker text
2026-03-04 16:43:43 +00:00
David Hill
de6a6af5ab
tweak(ui): remove section
2026-03-04 16:42:30 +00:00
David Hill
0f1f55a24c
tui: show Go request limits per 5-hour session
2026-03-04 16:35:03 +00:00
David Hill
744c38cc7c
tui: clarify which models are available in Go subscription
...
Adds list of included AI models (GLM-5, Kimi K2.5, and MiniMax M2.5) to the Go page so users know exactly what model access their subscription provides
2026-03-04 16:19:06 +00:00
Frank
e9de2505f6
Merge branch 'dev' into go-page
2026-03-04 11:13:14 -05:00
David Hill
22fcde926f
tui: reduce excessive spacing in go route layout to improve visual balance
2026-03-04 16:09:51 +00:00
David Hill
b42a63b882
docs: make Go hero CTA translatable with pricing emphasis
2026-03-04 16:02:37 +00:00
David Hill
ca5a7378de
docs: localize Go graph and testimonial copy
2026-03-04 15:58:58 +00:00
David Hill
c6187ee40f
docs: de-link Go testimonials and swap Zen→Go
2026-03-04 15:49:45 +00:00
David Hill
d94c516402
docs: update Go privacy copy for global hosting
2026-03-04 15:47:53 +00:00
David Hill
61795d794e
docs: clarify Go models in FAQ answer
2026-03-04 15:24:51 +00:00
David Hill
7c215c0d02
docs: replace Go landing page video with interactive limits graph
...
Users can now see a clear visual comparison of request limits between Free tier and Go tier across all available models, making it easier to understand the value of a Go subscription at a glance.
2026-03-04 15:21:07 +00:00
opencode
715b844c2a
release: v1.2.17
2026-03-04 14:58:04 +00:00
Brendan Allan
1b0d65f80e
ci: remove electron beta requirement
2026-03-04 22:38:23 +08:00
Brendan Allan
faf501200e
ci: only publish electron on beta
2026-03-04 22:21:56 +08:00
Dax Raad
e3267413c2
remove build from typecheck
2026-03-04 09:20:24 -05:00
Sebastian
18cad10647
show scrollbar by default ( #15282 )
2026-03-04 15:10:27 +01:00
Adam
a69742ccb2
fix(app): remove blur from todos
2026-03-04 07:43:28 -06:00
Adam
64b21135f9
fix(app): delay dock animation on session load
2026-03-04 07:39:34 -06:00
Adam
e482405cdc
fix(app): remove diff lines from sessions in sidebar
2026-03-04 07:36:10 -06:00
David Hill
ad56338108
chore(console): update copy
2026-03-04 13:24:08 +00:00
Adam
2ccf21de99
fix(app): loading session should be scrolled to the bottom
2026-03-04 07:18:09 -06:00
David Hill
dd4ad5f2c5
chore(console): edit copy
2026-03-04 13:08:21 +00:00
David Hill
eb71856733
docs: send Go landing page links to Go docs
2026-03-04 13:05:19 +00:00
Adam
d7569a5625
fix(app): terminal tab close
2026-03-04 07:04:03 -06:00
David Hill
0a2aa8688d
chore(console): switch /go page to go.* i18n keys
2026-03-04 12:57:49 +00:00
David Hill
e44cdaf887
chore(console): use Go ornate logo on /go
2026-03-04 12:15:40 +00:00
David Hill
5709561917
chore(console): refine /go hero and pricing copy
2026-03-04 12:01:15 +00:00
David Hill
9909f94048
chore(console): hide Go nav item on /go
2026-03-04 11:46:30 +00:00
David Hill
e8f67ddbcc
chore(console): update /go hero body
2026-03-04 11:34:44 +00:00
opencode-agent[bot]
0541d756a6
docs(i18n): sync locale docs from english changes
2026-03-04 11:27:41 +00:00
David Hill
a2d3d62db3
chore(console): move login to end on zen/go
2026-03-04 11:26:50 +00:00
shivam kr chaudhary
850fd9419e
fix(docs): update dead opencode-daytona ecosystem link ( #15979 )
...
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-04 11:18:28 +00:00
Brendan Allan
db3eddc51f
ui: rely on task part href instead of onClick handler ( #15978 )
2026-03-04 16:41:20 +08:00
opencode-agent[bot]
5dcf3301e0
chore: update nix node_modules hashes
2026-03-04 07:35:19 +00:00
Brendan Allan
5cf235fa6c
desktop: add electron version ( #15663 )
2026-03-04 15:12:34 +08:00
Frank
e4f0825c56
zen: fix aws bedrock header
2026-03-03 23:45:43 -05:00
Dax
3ebebe0a96
fix(process): prevent orphaned opencode subprocesses on shutdown ( #15924 )
2026-03-03 22:14:28 -05:00
opencode-agent[bot]
2a0be8316b
chore: generate
2026-03-04 02:36:18 +00:00
James Long
7f37acdaaa
feat(core): rework workspace integration and adaptor interface ( #15895 )
2026-03-03 21:35:38 -05:00
Dax
e79d41c70e
docs(bash): clarify output capture guidance ( #15928 )
2026-03-03 21:10:26 -05:00
Andrea Alberti
109ea1709b
fix: run --attach agent validation ( #11812 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-03-03 22:30:16 +00:00
Copilot
9a42927268
revert: undo turbo typecheck dependency change from #14828 ( #15902 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: Hona <10430890+Hona@users.noreply.github.com >
2026-03-04 07:35:24 +10:00
opencode
e66d829d18
release: v1.2.16
2026-03-03 21:08:35 +00:00
Dax Raad
c4ffd93caa
tui: replace curved arrow with straight arrow for better terminal compatibility
2026-03-03 15:25:11 -05:00
Dax Raad
c78e7e1a28
tui: show pending toolcall count instead of generic 'Running...' message
2026-03-03 15:08:11 -05:00
Dax
e3a787a7a3
tui: use arrow indicator for active tool execution ( #15887 )
2026-03-03 14:46:07 -05:00
David Hill
12f4315d9d
chore(console): trim /go model logos
2026-03-03 19:04:48 +00:00
David Hill
d80334b2bc
chore(console): update /go hero copy
2026-03-03 19:01:24 +00:00
David Hill
c2f5abe759
chore(console): move Enterprise after Go
2026-03-03 18:51:53 +00:00
Matt Silverlock
74ebb4147f
fix(auth): normalize trailing slashes in auth login URLs ( #15874 )
2026-03-03 13:35:49 -05:00
Frank
1663c11f40
wip: zen
2026-03-03 13:30:34 -05:00
David Hill
b1c166edf4
chore(console): add Go to nav
2026-03-03 18:30:04 +00:00
David Hill
3c8ce4ab90
feat(console): add /go landing page
2026-03-03 18:29:42 +00:00
Adam
502dbb65fc
fix(app): defer diff rendering
2026-03-03 11:14:03 -06:00
Adam
9d427c1ef8
fix(app): defer diff rendering
2026-03-03 11:00:06 -06:00
Adam
70c6fcfbbf
chore: cleanup
2026-03-03 10:25:49 -06:00
opencode-agent[bot]
6f90c3d73a
chore: update nix node_modules hashes
2026-03-03 15:52:03 +00:00
Sebastian
3310c25dd1
Upgrade opentui to v0.1.86 and activate markdown renderable by default ( #14974 )
2026-03-03 15:42:27 +00:00
opencode-agent[bot]
b751bd0373
docs(i18n): sync locale docs from english changes
2026-03-03 15:03:53 +00:00
Frank
c2091acd8c
wip: zen
2026-03-03 09:44:34 -05:00
Adam
fd4d3094bf
fix(app): timeline jank
2026-03-03 08:28:56 -06:00
Adam
10c325810b
fix(app): tighten up header elements
2026-03-03 07:19:24 -06:00
Adam
fa45422bf9
chore: cleanup
2026-03-03 07:10:52 -06:00
Adam
da82d4035a
chore: tr glossary
2026-03-03 07:10:52 -06:00
opencode-agent[bot]
70b6a05235
chore: generate
2026-03-03 12:28:35 +00:00
İbrahim Hakkı Ergin
cbf0570489
fix: update Turkish translations ( #15835 )
2026-03-03 06:27:54 -06:00
Jack
356b5d4601
fix(app): stabilize project close navigation ( #15817 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-03 06:25:55 -06:00
Adam
7305fc044d
chore: cleanup
2026-03-03 06:20:48 -06:00
Adam
1e2da60162
chore: fix test
2026-03-03 05:53:03 -06:00
Adam
e4af1bb422
fix(app): timeline jank
2026-03-03 05:35:15 -06:00
Adam
5e8742f431
fix(app): timeline jank
2026-03-03 05:35:15 -06:00
Jérôme Benoit
18850c4f91
fix(opencode): disable session navigation commands when no parent session ( #15762 )
...
Co-authored-by: Test User <test@test.com >
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-03-03 16:00:25 +05:30
Caleb Norton
48412f75ac
chore: nix flake update for bun 1.3.10 ( #15648 )
...
Co-authored-by: Jérôme Benoit <jerome.benoit@piment-noir.org >
2026-03-03 12:16:43 +05:00
Frank
6deb27e852
zen: docs
2026-03-03 01:27:55 -05:00
Frank
b985ea344b
wip: zen
2026-03-03 01:00:50 -05:00
Frank
1233ebcce1
wip: zen
2026-03-03 00:52:12 -05:00
opencode-agent[bot]
881ca86432
chore: generate
2026-03-03 05:26:22 +00:00
Frank
6aa4928e9e
wip: zen
2026-03-03 00:25:03 -05:00
opencode-agent[bot]
9f150b0776
chore: generate
2026-03-03 04:41:52 +00:00
Shoubhit Dash
7e3e85ba59
fix(opencode): avoid gemini combiner schema sibling injection ( #15318 )
2026-03-03 10:11:05 +05:30
opencode-agent[bot]
e41b53504f
chore: generate
2026-03-03 03:53:50 +00:00
Ryan Skidmore
96d6fb78da
fix(provider): forward metadata options to cloudflare-ai-gateway provider ( #15619 )
2026-03-02 22:53:03 -05:00
Ryan Skidmore
fd6f7133c5
fix(opencode): clone part data in Bus event to preserve token values ( #15780 )
2026-03-02 22:52:43 -05:00
opencode-agent[bot]
98c75be7e1
chore: update nix node_modules hashes
2026-03-02 22:38:45 +00:00
opencode-agent[bot]
b5dc6e670a
chore: generate
2026-03-02 22:25:39 +00:00
Kit Langton
9d7852b5c3
Animation Smorgasbord ( #15637 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-03-02 16:24:32 -06:00
Adam
78069369e2
fix(app): default auto-respond to false
2026-03-02 13:10:37 -06:00
Adam
1cd77b1072
chore: fix docs sync permissions
2026-03-02 11:42:20 -06:00
Adam
8176bafc55
chore(app): solidjs refactoring ( #13399 )
2026-03-02 10:50:50 -06:00
David Hill
0a3a3216db
ui: move session review bottom padding
...
Remove bottom padding from the scroll wrapper and apply it to the accordion content instead.
2026-03-02 16:19:35 +00:00
David Hill
633a3ba03a
ui: avoid session review header clipping
...
Move the session review header outside the scroll viewport and drop strict containment so shadows can render without being cropped.
2026-03-02 16:05:16 +00:00
David Hill
d60696ded8
ui: tighten scroll thumb and review padding
...
Keep the scroll thumb visually slim (4px) while preserving a 12px drag target, and remove extra right padding in session review content.
2026-03-02 15:37:41 +00:00
David Hill
4c2aa4ab90
ui: widen scroll thumb hit area
...
Make the thumb overlay 12px wide while keeping the visible bar 6px centered for easier hover/drag.
2026-03-02 15:26:55 +00:00
David Hill
51e6000194
core: keep review header buttons visible when scroll thumb shows
2026-03-02 14:59:12 +00:00
Filip
bf2cc3aa2f
feat(app): show which messages are queued ( #15587 )
2026-03-02 13:27:34 +05:30
opencode-agent[bot]
4b9e19f72f
chore: generate
2026-03-02 07:41:53 +00:00
bentrd
be20f865ac
fix: recover from 413 Request Entity Too Large via auto-compaction ( #14707 )
...
Co-authored-by: Noam Bressler <noamzbr@gmail.com >
2026-03-02 13:10:55 +05:30
Noam Bressler
7bfbb1fcf8
fix: project ID conflict, and update on same session id ( #15596 )
2026-03-02 13:09:53 +05:30
Brendan Allan
b1bfecb71d
desktop: fix latest.json finalizer
2026-03-02 14:36:35 +08:00
Shoubhit Dash
cf78855165
Revert "fix(i18n): polish turkish translations" ( #15656 )
2026-03-02 06:03:50 +00:00
Brendan Allan
a692e6fdd4
desktop: use correct download link in finalize-latest-json
2026-03-02 11:21:17 +08:00
opencode-agent[bot]
d1938a472d
chore: generate
2026-03-01 19:17:56 +00:00
Kit Langton
c0483affa6
perf(session): faster session switching via windowed rendering and staged timeline ( #15474 )
2026-03-01 13:17:04 -06:00
Frank
ae0f69e1fa
doc: add zen deprecated models
2026-03-01 13:21:34 -05:00
Dax
90270c615d
feat(tui): improve task tool display with subagent keybind hints and spinner animations ( #15607 )
2026-03-01 17:46:10 +00:00
Rian van der Merwe
6b7e6bde4d
fix(opencode): show human-readable message for HTML error responses ( #15407 )
2026-03-01 09:24:57 -06:00
Filip
b15fb21191
feat(app): add compact ui ( #15578 )
2026-03-01 08:41:47 -06:00
Filip
c8866e60ba
fix(app): make provider icon resolved id reactive ( #15583 )
2026-03-01 08:40:04 -06:00
Uğur Murat Altıntas
f5eade1d2b
fix(i18n): polish turkish translations ( #15491 )
2026-03-01 06:48:26 -06:00
Filip
438610aa64
fix(app): show proper usage limit errors ( #15496 )
2026-03-01 06:48:11 -06:00
ryanwyler
c4c0b23bff
fix: kill orphaned MCP child processes and expose OPENCODE_PID on shu… ( #15516 )
2026-03-01 18:08:17 +05:30
opencode-agent[bot]
38704acacd
chore: generate
2026-03-01 04:44:37 +00:00
inkdust2021
4d968ebd64
docs(ecosystem): add opencode-vibeguard ( #15464 )
2026-03-01 10:13:52 +05:30
opencode-agent[bot]
b88e8e0e0b
chore: generate
2026-03-01 03:10:46 +00:00
James Long
3ee1653f40
feat(core): add workspace_id to session table ( #15410 )
2026-02-28 22:09:53 -05:00
opencode-agent[bot]
fcd733e3d6
chore: generate
2026-03-01 01:45:44 +00:00
James Long
cec16dfe95
feat(core): add WorkspaceContext ( #15409 )
2026-02-28 20:44:54 -05:00
Dax Raad
114eb42444
docs: fix broken config imports in translated documentation
...
Fixed incorrect relative import paths in Bosnian, French, Italian,
Korean, Norwegian, Portuguese, Turkish, and Chinese docs that were
referencing config.mjs from the wrong directory level. This resolves
build errors when viewing translated documentation pages.
2026-02-28 18:54:18 -05:00
Adam
e1e18c7abd
chore(docs): i18n sync ( #15417 )
2026-02-28 15:27:11 -06:00
mridul
971bd30516
fix(app): fallback to synthetic icon for unknown provider IDs ( #15295 )
2026-02-28 15:13:23 -06:00
Alex Yaroshuk
2a2082233d
fix(app): display skill name in skill tool call ( #15413 )
2026-02-27 19:18:14 -06:00
Adam
267d2c82de
chore: cleanup
2026-02-27 19:12:19 -06:00
Jay
0b8c1f1f7d
docs: Update OpenCode Go subscription and usage details ( #15415 )
2026-02-27 16:04:53 -08:00
Frank
2eb1d4cb9a
doc: go
2026-02-27 18:03:39 -05:00
Frank
d2a8f44c22
doc: opencode go
2026-02-27 17:38:30 -05:00
opencode-agent[bot]
1f1f36aac1
chore: update nix node_modules hashes
2026-02-27 21:59:23 +00:00
Adam
7f851da15e
chore(console): i18n sync ( #15360 )
2026-02-27 15:50:50 -06:00
Adam
a3bdb974b3
chore(app): deps
2026-02-27 15:49:38 -06:00
opencode-agent[bot]
46d678fce9
chore: generate
2026-02-27 21:17:37 +00:00
Alex Yaroshuk
1f2348c1ef
fix(app): make bash output selectable ( #15378 )
2026-02-27 15:16:33 -06:00
shivam kr chaudhary
f347194e31
docs: add missing Bosanski link to Arabic README ( #15399 )
2026-02-27 15:15:48 -06:00
opencode-agent[bot]
7ff2710ce3
chore: generate
2026-02-27 20:37:28 +00:00
James Long
c12ce2ffff
feat(core): basic implementation of remote workspace support ( #15120 )
2026-02-27 15:36:39 -05:00
Adam
a94f564ff0
fix(app): scroll issues
2026-02-27 09:47:56 -06:00
Adam
6ef3af73df
chore(app): i18n sync ( #15362 )
2026-02-27 09:45:00 -06:00
Adam
e5ae6c51b0
chore: update translator model
2026-02-27 09:27:12 -06:00
Adam
9d76ef6c66
chore: update docs locale sync workflow
2026-02-27 09:18:17 -06:00
Kit Langton
e49e781cb8
feat(app): add Warp to the open menu ( #15368 )
2026-02-27 09:44:01 -05:00
Kit Langton
78cea89e0e
chore(script): source team members from TEAM_MEMBERS ( #15369 )
2026-02-27 09:43:51 -05:00
James Long
3dc10a1c16
Change keybindings to navigate between child sessions ( #14814 )
2026-02-27 09:41:23 -05:00
Adam
157920b2fb
chore: update test
2026-02-27 06:54:15 -06:00
Brendan Allan
967313234a
desktop: add latest.json finalizer script ( #15335 )
2026-02-27 20:18:21 +08:00
Adam
dfa0281117
fix(app): auto-accept permissions
2026-02-27 06:17:40 -06:00
Adam
4a94096994
fix(app): update provider sprite
2026-02-27 06:01:00 -06:00
opencode-agent[bot]
3407ded9d0
chore: generate
2026-02-27 11:41:55 +00:00
vaur94
a325c9af8f
feat(app): add Turkish (tr) locale for app and ui packages ( #15278 )
...
Co-authored-by: Ugur <ugur@example.com >
2026-02-27 05:41:06 -06:00
Pirro Zani
dc8c011510
docs(readme): add Greek translation and update language navigation ( #15281 )
2026-02-27 05:39:56 -06:00
Filip
1f108bc401
feat(app): recent projects section in command pallette ( #15270 )
2026-02-27 05:33:22 -06:00
Frank
6b3118883c
wip: zen
2026-02-27 02:56:43 -05:00
Brendan Allan
0da8af8a28
desktop: move open_path to rust ( #15323 )
2026-02-27 06:17:24 +00:00
Frank
2a4ed49551
wip: zen
2026-02-27 00:30:14 -05:00
Brendan Allan
7528419172
app: allow providing username and password when connecting to remote server ( #14872 )
2026-02-27 13:26:15 +08:00
Frank
8c739b4a7d
zen: fix go plan usage limit
2026-02-26 23:20:05 -05:00
Adam
f2100dcfd8
fix(app): scroll jacking
2026-02-26 20:41:35 -06:00
Adam
b0b88f6792
fix(app): permission indicator
2026-02-26 20:40:39 -06:00
Adam
e9a7c71141
fix(app): permission notifications
2026-02-26 20:36:10 -06:00
David Hill
4205fbd2aa
tweak(app): show keybind on context tab close
2026-02-27 00:29:02 +00:00
Adam
fc52e4b2d3
feat(app): better diff/code comments ( #14621 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
Co-authored-by: David Hill <iamdavidhill@gmail.com >
2026-02-26 18:23:04 -06:00
Kit Langton
9a6bfeb782
refactor(app): dedupe filetree scroll state
2026-02-26 19:20:56 -05:00
David Hill
fa119423ec
tweak(app): align review changes select height
2026-02-27 00:18:14 +00:00
David Hill
bf442a50c0
fix(ui): mute inactive file tab icons
2026-02-27 00:18:14 +00:00
David Hill
09e1b98bc6
tweak(ui): max-width on session when the review is closed but the file tree is open
2026-02-27 00:18:14 +00:00
Adam
37d42595cf
fix: test
2026-02-26 18:11:05 -06:00
Adam
adabad19f1
Revert "fix(ui): prevent filename and diff count overlap in session changes ( #14773 )"
...
This reverts commit a0b3bbffd5 .
2026-02-26 18:11:05 -06:00
David Hill
7a74be3b47
tweak(ui): add border to filetree on scroll
2026-02-26 23:18:35 +00:00
David Hill
c95febb1d5
tui: fix session tab alignment in compact view to prevent vertical overflow
2026-02-26 22:54:49 +00:00
opencode-agent[bot]
9736fce8fc
chore: update nix node_modules hashes
2026-02-26 22:18:33 +00:00
Adam
05d77b7d47
chore: storybook ( #15285 )
...
Co-authored-by: David Hill <iamdavidhill@gmail.com >
2026-02-26 16:05:04 -06:00
Adam
8c484a05b8
fix(app): terminal issues
2026-02-26 15:52:35 -06:00
Shoubhit Dash
a0b3bbffd5
fix(ui): prevent filename and diff count overlap in session changes ( #14773 )
2026-02-26 15:42:24 -06:00
Shoubhit Dash
270d084cb1
fix(ui): avoid truncating workspace paths in assistant text ( #14584 )
2026-02-26 15:41:58 -06:00
Adam
9312867565
feat(app): new tabs styling ( #15284 )
...
Co-authored-by: David Hill <iamdavidhill@gmail.com >
2026-02-26 15:39:45 -06:00
Adam
7e6a007c35
feat(app): auto-accept all permissions mode
2026-02-26 15:23:26 -06:00
OpeOginni
5745ee87ba
refactor(desktop): enhance project tile interaction with suppress hover functionality ( #15214 )
2026-02-26 11:00:11 -06:00
Niu Shuai
08f056d412
docs: Sync zh_CN docs with English Version ( #15228 )
2026-02-26 10:59:45 -06:00
Frank
96ca0de3bc
wip: zen
2026-02-26 11:17:19 -05:00
adamelmore
b4d0090e00
chore: fix flaky test
2026-02-26 08:53:40 -06:00
Adam
05ac0a73e1
fix(app): simplify review layout ( #14953 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
2026-02-26 08:51:58 -06:00
David Hill
7453e78b35
feat: opencode go provider list ( #15203 )
2026-02-26 14:37:33 +00:00
Shoubhit Dash
bb8a1718a6
fix(desktop): restore shell path env for desktop sidecar ( #15211 )
2026-02-26 18:35:21 +05:30
Filip
6b021658ad
fix(app): open in powershell ( #15112 )
2026-02-26 16:39:55 +08:00
opencode
799b2623cb
release: v1.2.15
2026-02-26 08:22:25 +00:00
Luke Parker
fce811b52f
fix: most segfaults on windows with Bun v1.3.10 stable ( #15181 )
2026-02-26 17:55:01 +10:00
Stefan
aae75b3cfb
fix(app): middle-click tab close in scrollable tab bar ( #15081 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-02-26 12:29:08 +05:30
kil-penguin
392a6d993f
fix(desktop): remove interactive shell flag from sidecar spawn to prevent hang on macOS ( #15136 )
...
Co-authored-by: kil-penguin <hyeonjun@gameduo.net >
2026-02-26 14:02:40 +08:00
Frank
c4ea11fef3
wip: zen
2026-02-25 23:06:16 -05:00
Adam
b8337cddc4
fix(app): permissions and questions from child sessions ( #15105 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
2026-02-26 01:05:08 +00:00
OpeOginni
444178e079
fix(docs): update schema URL in share configuration examples across multiple languages ( #15114 )
2026-02-25 18:16:39 -05:00
opencode-agent[bot]
4551282a4b
chore: generate
2026-02-25 22:55:09 +00:00
Sebastian
9d29d692c6
split tui/server config ( #13968 )
2026-02-25 23:53:09 +01:00
Frank
1172fa418e
wip: zen go
2026-02-25 12:39:50 -05:00
adamelmore
b368181ac9
chore: move glossary
2026-02-25 10:29:05 -06:00
David Hill
7afa48b4ef
tweak(ui): keep reasoning inline code subdued in dark mode
2026-02-25 15:18:05 +00:00
Filip
45191ad144
fix(app): keyboard navigation previous/next message ( #15047 )
2026-02-25 08:57:13 -06:00
Oleksii Pavliuk
2869922696
fix(app): correct Copilot provider description in i18n files ( #15071 )
2026-02-25 14:56:03 +00:00
Ryan Vogel
e48c1ccf07
chore(workflows): label vouched users and restrict vouch managers ( #15075 )
2026-02-25 14:56:03 +00:00
opencode-agent[bot]
5e5823ed85
chore: generate
2026-02-25 14:56:03 +00:00
opencode
de2bc25677
release: v1.2.14
2026-02-25 14:55:56 +00:00
Shantur Rathore
79b5ce58e9
feat(core): add message delete endpoint ( #14417 )
2026-02-25 09:25:26 -05:00
Ayush Thakur
088a81c116
fix: consume stdout concurrently with process exit in auth login ( #15058 )
2026-02-25 08:22:52 -05:00
opencode
d848c9b6a3
release: v1.2.13
2026-02-25 07:27:19 +00:00
Dax Raad
561f9f5f05
opencode go copy
2026-02-25 01:54:28 -05:00
Dax Raad
3c6c74457d
sync
2026-02-25 01:48:10 -05:00
Filip
fc6e7934bd
feat(desktop): enhance Windows app resolution and UI loading states ( #13320 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-25 14:39:58 +08:00
Frank
d7500b25b8
zen: go
2026-02-25 01:25:08 -05:00
Frank
5d5f2cfee6
wip: zen go
2026-02-25 00:48:14 -05:00
Frank
1172ebe697
wip: zen go
2026-02-25 00:47:04 -05:00
Frank
d00d98d56a
wip: zen go
2026-02-25 00:42:33 -05:00
Frank
6fc5506293
zen: go
2026-02-25 00:31:48 -05:00
Brendan Allan
76b60f3779
desktop: make readme more accurate
2026-02-25 12:28:48 +08:00
Dax Raad
6af7ddf03b
ci: switch beta script to gpt-5.3-codex for improved code generation quality
2026-02-24 23:26:03 -05:00
Dax Raad
0b3fb5d460
ci: specify opencode/kimi-k2.5 model in beta script to ensure consistent PR processing
2026-02-24 23:22:56 -05:00
Dax Raad
a487f11a30
ci: auto-resolve merge conflicts in beta sync using opencode
...
When merging PRs into the beta branch, the sync script now attempts to automatically resolve merge conflicts using opencode before failing. This reduces manual intervention needed for beta releases when multiple PRs have overlapping changes.
2026-02-24 23:17:31 -05:00
Dax
637059a515
feat: show LSP errors for apply_patch tool ( #14715 )
2026-02-25 04:15:11 +00:00
Dax Raad
fa559b0385
core: temporarily disable plan enter tool to prevent unintended mode switches during task execution
2026-02-24 23:05:26 -05:00
Dax
814c1d398c
refactor: migrate Bun.spawn to Process utility with timeout and cleanup ( #14448 )
2026-02-24 23:04:15 -05:00
Luke Parker
da40ab7b3d
fix(opencode): disable config bun cache in CI ( #14985 )
2026-02-25 11:38:23 +10:00
Luke Parker
e718263778
fix(project): await git id cache write ( #14977 )
2026-02-25 00:46:12 +00:00
Luke Parker
3af12c53c4
fix(opencode): import custom tools via file URL ( #14971 )
2026-02-25 10:24:47 +10:00
opencode
29ddd55088
release: v1.2.11
2026-02-24 23:29:02 +00:00
James Long
2c00eb60bd
feat(core): add workspace-serve command (experimental) ( #14960 )
2026-02-24 17:34:34 -05:00
Frank
2a87860c06
zen: gpt 5.3 codex
2026-02-24 14:49:07 -05:00
adamelmore
68cf011fd3
fix(app): ignore stale part deltas
2026-02-24 11:48:29 -06:00
Frank
f8cfb697bd
zen: restrict alpha models to admin workspaces
2026-02-24 09:56:11 -05:00
Filip
c6d8e7624d
fix(app): on cancel comment unhighlight lines ( #14103 )
2026-02-24 22:55:17 +08:00
opencode-agent[bot]
0d0d0578eb
chore: generate
2026-02-24 14:49:52 +00:00
OpeOginni
cc02476ea5
refactor: replace error handling with serverErrorMessage utility and checks for if error is ConfigInvalidError ( #14685 )
2026-02-24 14:48:59 +00:00
Frank
5190589632
zen: remove alpha models from models endpoint
2026-02-24 09:43:18 -05:00
adamelmore
c92913e962
chore: cleanup
2026-02-24 08:21:05 -06:00
Luke Parker
082f0cc127
fix(app): preserve native path separators in file path helpers ( #14912 )
2026-02-25 00:03:15 +10:00
Noam Bressler
2cee947671
fix: ACP both live and load share synthetic pending status preceeding… ( #14916 )
2026-02-24 23:54:10 +10:00
adamelmore
e27d3d5d40
fix(app): remove filetree tooltips
2026-02-24 07:32:12 -06:00
Luke Parker
32417774c4
fix(test): replace structuredClone with spread for process.env ( #14908 )
2026-02-24 23:16:24 +10:00
Luke Parker
36197f5ff8
fix(win32): add 50ms tolerance for NTFS mtime fuzziness in FileTime assert ( #14907 )
2026-02-24 23:10:10 +10:00
Luke Parker
3d379c20c4
fix(test): replace Unix-only assumptions with cross-platform alternatives ( #14906 )
2026-02-24 23:03:18 +10:00
Luke Parker
06f25c78f6
fix(test): use path.sep in discovery test for cross-platform path matching ( #14905 )
2026-02-24 22:51:56 +10:00
Luke Parker
1a0639e5b8
fix(win32): normalize backslash paths in config rel() and file ignore ( #14903 )
2026-02-24 22:42:48 +10:00
Luke Parker
1af3e9e557
fix(win32): fix plugin resolution with createRequire fallback ( #14898 )
2026-02-24 22:20:57 +10:00
Luke Parker
a292eddeb5
fix(test): harden preload cleanup against Windows EBUSY ( #14895 )
2026-02-24 21:59:14 +10:00
Luke Parker
79254c1020
fix(test): normalize git excludesFile path for Windows ( #14893 )
2026-02-24 21:40:38 +10:00
opencode-agent[bot]
ef7f222d80
chore: generate
2026-02-24 11:15:39 +00:00
Noam Bressler
888b123387
feat: ACP - stream bash output and synthetic pending events ( #14079 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-24 21:14:47 +10:00
Luke Parker
13cabae29f
fix(win32): add git flags for snapshot operations and fix tests for cross-platform ( #14890 )
2026-02-24 21:14:16 +10:00
Luke Parker
659068942e
fix(win32): handle CRLF line endings in markdown frontmatter parsing ( #14886 )
2026-02-24 20:33:22 +10:00
Luke Parker
3201a7d34b
fix(win32): add bun prefix to console app build scripts ( #14884 )
2026-02-24 20:25:15 +10:00
Luke Parker
de796d9a00
fix(test): use path.join for cross-platform glob test assertions ( #14837 )
2026-02-24 20:07:56 +10:00
Luke Parker
a592bd9684
fix: update createOpenReviewFile test to match new call order ( #14881 )
2026-02-24 19:56:41 +10:00
opencode-agent[bot]
744059a00f
chore: generate
2026-02-24 09:47:20 +00:00
Frank
fb6d201ee0
wip: zen lite
2026-02-24 04:45:41 -05:00
Frank
cda2af2589
wip: zen lite
2026-02-24 04:45:41 -05:00
Brendan Allan
eda71373b0
app: wait for loadFile before opening file tab
2026-02-24 16:47:55 +08:00
Luke Parker
cf5cfb48cd
upgrade to bun 1.3.10 canary and force baseline builds always ( #14843 )
2026-02-24 16:06:45 +10:00
Luke Parker
ae190038f8
ci: use bun baseline build to avoid segfaults ( #14839 )
2026-02-24 10:15:19 +10:00
Luke Parker
0269f39a17
ci: add Windows to unit test matrix ( #14836 )
2026-02-24 09:33:33 +10:00
Luke Parker
0a91196919
fix(win32): e2e sometimes fails because windows is weird and sometimes ipv6 ( #14833 )
2026-02-24 09:27:00 +10:00
Frank
284251ad66
zen: display BYOK cost
2026-02-23 18:18:47 -05:00
Luke Parker
34495a70d5
fix(win32): scripts/turbo commands would not run ( #14829 )
2026-02-24 09:15:25 +10:00
Luke Parker
ad5f0816a3
fix(cicd): flakey typecheck ( #14828 )
2026-02-24 09:13:31 +10:00
Ryan Vogel
24c63914bf
fix: update workflows for better automation ( #14809 )
2026-02-23 16:51:29 -05:00
adamelmore
8f2d8dd47a
fix(app): duplicate markdown
2026-02-23 09:54:26 -06:00
adamelmore
3b5b21a91e
fix(app): duplicate markdown
2026-02-23 08:23:56 -06:00
Shawn
8e96447960
fix(app): correct inverted chevron direction in todo list ( #14628 )
...
Co-authored-by: shenghui kevin <shenghuikevin@shenghuideMac-mini.local >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-23 13:41:33 +05:30
adamelmore
9f4fc5b72a
Revert "fix(app): terminal issues"
...
This reverts commit e70d2b27de .
2026-02-22 21:27:25 -06:00
opencode-agent[bot]
d3ecc5a0d9
chore: generate
2026-02-23 03:21:03 +00:00
Frank
a5a70fa05b
wip: zen lite
2026-02-22 22:20:00 -05:00
Frank
5596775c35
zen: display session in usage
2026-02-22 22:19:44 -05:00
Frank
5712cff5c4
zen: track session in usage
2026-02-22 22:19:44 -05:00
Luke Parker
ee754c46f9
fix(win32): normalize paths at permission boundaries ( #14738 )
2026-02-23 12:05:21 +10:00
Erik Demaine
0042a07052
fix: Windows path support and canonicalization ( #13671 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-02-23 10:10:27 +10:00
opencode-agent[bot]
ab75ef8140
chore: update nix node_modules hashes
2026-02-23 00:00:47 +00:00
Sebastian
a4ed020a94
upgrade opentui to v0.1.81 ( #14605 )
2026-02-23 00:51:50 +01:00
opencode-agent[bot]
faa63227ac
chore: generate
2026-02-22 23:49:51 +00:00
Erik Demaine
a74fedd23b
fix(desktop): change detection on Windows, especially Cygwin ( #13659 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-02-23 09:49:05 +10:00
github-actions[bot]
eb64ce08b8
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/13659#issuecomment-3941825887
2026-02-22 22:28:32 +00:00
Adam
aaf8317c82
feat(app): feed customization options
2026-02-22 11:36:00 -06:00
Adam
e70d2b27de
fix(app): terminal issues
2026-02-22 06:17:59 -06:00
Pirro Zani
b16f7b426c
docs(tui): correct typo in TUI documentation ( #14604 )
2026-02-22 13:59:50 +05:30
github-actions[bot]
13616e3459
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/14616#issuecomment-3939773562
2026-02-22 00:23:58 +00:00
Jun
a41c81dcd2
docs(ko): improve wording in gitlab, ide, index, keybinds, and lsp docs ( #14517 )
2026-02-21 07:01:53 -06:00
Adam
dbf2c45869
chore: updated locale glossaries and docs sync workflow
2026-02-21 04:58:27 -06:00
Adam
c45ab712d2
chore: locale specific glossaries
2026-02-21 04:58:26 -06:00
Brendan Allan
206d81e02c
desktop: beta icon
2026-02-21 11:11:08 +08:00
Adam
6d58d899f7
fix: e2e test outdated
2026-02-20 19:44:06 -06:00
Adam
b75a27d43e
chore: cleanup
2026-02-20 19:37:35 -06:00
Frank
e77b2cfd61
wip: zen lite
2026-02-20 19:38:29 -05:00
opencode-agent[bot]
d0ce2950e4
chore: generate
2026-02-21 00:18:43 +00:00
Tuhin Mahmud
5a1aca9189
docs: add Bangla README translation ( #14331 )
2026-02-20 18:17:47 -06:00
Adam
f07e877204
fix(app): remove double-border in share button
2026-02-20 16:20:13 -06:00
Adam
58ad4359da
chore: cleanup
2026-02-20 16:05:41 -06:00
Adam
ce2763720e
fix(app): better sound effect disabling ux
2026-02-20 16:05:41 -06:00
Aiden Cline
950df3de19
ci: temporarily disable assigning of issues to rekram1-node ( #14486 )
2026-02-20 13:56:29 -06:00
Aiden Cline
1d9f05e4f5
cache platform binary in postinstall for faster startup ( #14467 )
2026-02-20 12:19:17 -06:00
Adam
46361cf35c
fix(app): session review re-rendering too aggressively
2026-02-20 11:11:48 -06:00
Adam
c09d3dd5a7
chore: cleanup
2026-02-20 10:54:17 -06:00
Adam
fe89bedfcc
wip(app): custom scroll view
2026-02-20 10:54:17 -06:00
Frank
1e48d7fe82
zen: gpt safety_identifier
2026-02-20 11:28:19 -05:00
Adam
2a904ec56f
feat(app): show/hide reasoning summaries
2026-02-20 10:05:09 -06:00
Adam
0ce61c817b
fix(app): stay pinned with auto-scroll on todos/questions/perms
2026-02-20 10:00:56 -06:00
Aiden Cline
1ffed2fa6c
Revert "cache platform binary in postinstall for faster startup" ( #14457 )
2026-02-20 09:28:49 -06:00
Aiden Cline
c79f1a72d8
cache platform binary in postinstall for faster startup ( #14396 )
2026-02-20 09:26:13 -06:00
Adam
9c5bbba6ea
fix(app): patch tool renders like edit tool
2026-02-20 09:13:17 -06:00
Brendan Allan
ce17f9dd94
desktop: publish betas to separate repo ( #14376 )
2026-02-20 22:33:21 +08:00
Brendan Allan
92ab4217c2
desktop: bring back -i in sidecar arguments
...
shell configs like .zshrc don't get loaded without it
2026-02-20 22:03:23 +08:00
opencode-agent[bot]
7867ba441f
chore: generate
2026-02-20 13:46:03 +00:00
Ryan Vogel
7419ebc872
feat: add list sessions for all sessions (experimental) ( #14038 )
2026-02-20 08:45:12 -05:00
Adam
7e681b0bc0
fix(app): large text pasted into prompt-input causes main thread lock
2026-02-20 07:38:22 -06:00
Adam
4e9ef3ecc1
fix(app): terminal issues ( #14435 )
2026-02-20 07:34:36 -06:00
Adam
7e0e35af3f
chore: update agent
2026-02-20 07:29:02 -06:00
Matt Silverlock
2410593023
fix(github): support variant in github action and opencode github run ( #14431 )
2026-02-20 13:20:54 +00:00
Shoubhit Dash
1de12604cf
fix(ui): preserve url slashes for root workspace ( #14294 )
2026-02-20 07:02:48 -06:00
Shoubhit Dash
ac0b37a7b7
fix(snapshot): respect info exclude in snapshot staging ( #13495 )
2026-02-20 07:02:25 -06:00
Shoubhit Dash
7e1051af07
fix(ui): show full turn duration in assistant meta ( #14378 )
2026-02-20 07:01:13 -06:00
Matt Silverlock
93615bef28
fix(cli): missing plugin deps cause TUI to black screen ( #14432 )
2026-02-20 07:39:15 -05:00
Adam
a04e4e81fb
chore: cleanup
2026-02-20 06:30:19 -06:00
opencode
296250f1b7
release: v1.2.10
2026-02-20 11:18:40 +00:00
Brendan Allan
443214871e
sdk: build to dist/ instead of dist/src ( #14383 )
2026-02-20 14:10:38 +08:00
Brendan Allan
1c2416b6de
desktop: don't spawn sidecar if default is localhost server
2026-02-20 12:18:39 +08:00
Rafi Khardalian
d86c10816d
docs: clarify tool name collision precedence ( #14313 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-19 22:00:06 -06:00
Aiden Cline
04a634a80d
test: merge test files into a single file ( #14366 )
2026-02-19 20:32:01 -06:00
opencode
1eb6caa3c6
release: v1.2.9
2026-02-20 01:45:20 +00:00
Aiden Cline
1a329ba47d
fix: issue from structuredClone addition by using unwrap ( #14359 )
2026-02-19 19:28:06 -06:00
David Hill
8d781b08ce
tweak(ui): adjust session feed spacing
2026-02-20 01:22:12 +00:00
David Hill
8b99ac6513
tweak(ui): tone down reasoning emphasis
2026-02-20 01:17:48 +00:00
David Hill
63a469d0ce
tweak(ui): refine session feed spacing
2026-02-20 01:17:48 +00:00
David Hill
ae98be83b3
fix(desktop): restore settings header mask
2026-02-19 18:37:56 -06:00
David Hill
a3181d5fbd
tweak(ui): nudge edited files chevron
2026-02-19 18:37:56 -06:00
David Hill
998c8bf3a5
tweak(ui): stabilize collapsible chevron hover
2026-02-19 18:37:56 -06:00
NatChung
d2d7a37bca
fix: add missing id/sessionID/messageID to MCP tool attachments ( #14345 )
2026-02-19 18:37:56 -06:00
Michael Hart
8ad60b1ec2
Use structuredClone instead of remeda's clone ( #14351 )
...
Co-authored-by: Dax Raad <d@ironbay.co >
Co-authored-by: Dax <mail@thdxr.com >
2026-02-19 18:37:56 -06:00
Dax
01d518708a
remove unnecessary deep clones from session loop and LLM stream ( #14354 )
2026-02-19 18:37:55 -06:00
Dax Raad
ae50f24c06
fix(web): correct config import path in Korean enterprise docs
2026-02-19 18:37:55 -06:00
Jay V
d32dd4d7fd
docs: update providers layout and Windows sidebar label
2026-02-19 18:37:55 -06:00
Dax Raad
cb5a0de42f
core: remove User-Agent header assertion from LLM test to fix failing test
2026-02-19 18:37:55 -06:00
opencode
f2090b26c1
release: v1.2.8
2026-02-19 22:38:42 +00:00
Adam
fca0166488
fix(app): black screen on launch with sidecar server
2026-02-19 16:23:33 -06:00
opencode-agent[bot]
686dd330a0
chore: generate
2026-02-19 22:19:09 +00:00
tctev
193013a44d
feat(opencode): support adaptive thinking for claude sonnet 4.6 ( #14283 )
...
Co-authored-by: tctev <224793535+tctev@users.noreply.github.com >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-19 16:17:57 -06:00
Yanosh Kunsh
824ab4cecc
feat(tui): add custom tool and mcp call responses visible and collapsable ( #10649 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-19 15:36:40 -06:00
Adam
7a42ecdddb
chore: cleanup
2026-02-19 21:27:39 +00:00
Adam
dd011e879c
fix(app): clear todos on abort
2026-02-19 21:27:39 +00:00
opencode
04cf2b8268
release: v1.2.7
2026-02-19 21:27:31 +00:00
Matt Silverlock
1a1437e78b
fix(github): action branch detection and 422 handling ( #14322 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-19 15:11:59 -06:00
Adam
c76a81434d
chore: cleanup
2026-02-19 15:09:24 -06:00
Adam
49cc872c44
chore: refactor composer/dock components ( #14328 )
2026-02-19 15:02:45 -06:00
Adam
f8dad0ae17
fix(app): terminal issues ( #14329 )
2026-02-19 14:54:09 -06:00
Adam
40a939f5f0
chore: cleanup
2026-02-19 14:34:49 -06:00
Adam
7729c6d895
chore: cleanup
2026-02-19 14:31:22 -06:00
Adam
7fb2081dce
chore: cleanup
2026-02-19 14:25:12 -06:00
Shintaro Jokagi
3d9f6c0fe0
feat(i18n): update Japanese translations to WSL integration ( #13160 )
2026-02-19 14:18:52 -06:00
Shantur Rathore
190d2957eb
fix(core): normalize file.status paths relative to instance dir ( #14207 )
2026-02-19 14:17:36 -06:00
Jun
b64d0768ba
docs(ko): improve wording in ecosystem, enterprise, formatters, and github docs ( #14220 )
2026-02-19 14:17:15 -06:00
opencode-agent[bot]
1867f1acaa
chore: generate
2026-02-19 20:12:16 +00:00
Aiden Cline
00c079868a
test: fix discovery test to boot up server instead of relying on 3rd party ( #14327 )
2026-02-19 14:11:23 -06:00
opencode-agent[bot]
8b99648790
chore: update nix node_modules hashes
2026-02-19 18:56:40 +00:00
Dax
cb8b74d3f1
refactor: migrate from Bun.Glob to npm glob package ( #14317 )
2026-02-19 13:40:09 -05:00
Aiden Cline
7e35d0c610
core: bump ai sdk packages for google, google vertex, anthropic, bedrock, and provider utils ( #14318 )
2026-02-19 12:35:51 -06:00
Aiden Cline
5364ab74a2
tweak: add support for medium reasoning w/ gemini 3.1 ( #14316 )
2026-02-19 12:00:56 -06:00
opencode-agent[bot]
91f8dd5f57
chore: update nix node_modules hashes
2026-02-19 18:00:22 +00:00
opencode-agent[bot]
850402f093
chore: update nix node_modules hashes
2026-02-19 17:52:03 +00:00
Dax Raad
af72010e9f
Revert "refactor: migrate from Bun.Glob to npm glob package"
...
This reverts commit 3c21735b35 .
2026-02-19 12:48:43 -05:00
Brendan Allan
50883cc1e9
app: make localhost urls work in isLocal
2026-02-20 01:38:39 +08:00
Adam
f2858a42ba
chore: cleanup
2026-02-19 11:36:37 -06:00
Dax Raad
3c21735b35
refactor: migrate from Bun.Glob to npm glob package
...
Replace Bun.Glob usage with a new Glob utility wrapper around the npm 'glob' package.
This moves us off Bun-specific APIs toward standard Node.js compatible solutions.
Changes:
- Add new src/util/glob.ts utility module with scan(), scanSync(), and match()
- Default include option is 'file' (only returns files, not directories)
- Add symlink option (default: false) to control symlink following
- Migrate all 12 files using Bun.Glob to use the new Glob utility
- Add comprehensive tests for the glob utility
Breaking changes:
- Removed support for include: 'dir' option (use include: 'all' and filter manually)
- symlink now defaults to false (was true in most Bun.Glob usages)
Files migrated:
- src/util/log.ts
- src/util/filesystem.ts
- src/tool/truncation.ts
- src/session/instruction.ts
- src/storage/json-migration.ts
- src/storage/storage.ts
- src/project/project.ts
- src/cli/cmd/tui/context/theme.tsx
- src/config/config.ts
- src/tool/registry.ts
- src/skill/skill.ts
- src/file/ignore.ts
2026-02-19 12:34:18 -05:00
Adam
56dda4c98c
chore: cleanup
2026-02-19 11:12:56 -06:00
Adam
6b8902e8b9
fix(app): navigate to last session on project nav
2026-02-19 11:12:56 -06:00
Frank
08a2d002b8
zen: gemini 3.1 pro
2026-02-19 11:43:14 -05:00
Dax
02a9495063
Remove use of Bun.file ( #14215 )
2026-02-19 11:32:32 -05:00
Adam
0fcba68d4c
chore: cleanup
2026-02-19 09:00:43 -06:00
Adam
338393c016
fix(app): accordion styles
2026-02-19 09:00:43 -06:00
Adam
8ebdbe0ea2
fix(core): text files missclassified as binary
2026-02-19 07:32:58 -06:00
Adam
38f7071da9
chore: cleanup
2026-02-19 07:32:58 -06:00
Brendan Allan
d2d5f3c04b
app: fix typecheck
2026-02-19 21:27:44 +08:00
Brendan Allan
885d71636f
desktop: fetch defaultServer at top level
2026-02-19 21:14:59 +08:00
Adam
d07f09925f
fix(app): terminal rework ( #14217 )
2026-02-19 06:35:14 -06:00
opencode-agent[bot]
c7b35342dd
chore: update nix node_modules hashes
2026-02-19 06:40:44 +00:00
Aiden Cline
308e500832
tweak: bake in the aws and google auth pkgs ( #14241 )
2026-02-19 00:31:33 -06:00
opencode-agent[bot]
4b878f6aeb
chore: generate
2026-02-19 05:19:18 +00:00
Ariane Emory
1893473148
fix: token substitution in OPENCODE_CONFIG_CONTENT (alternate take) ( #14047 )
2026-02-18 23:18:24 -06:00
Dax Raad
3a416f6f33
sdk: fix nested exports transformation in publish script
...
The publish script now recursively transforms export paths to handle nested export objects. This ensures all SDK entry points are correctly mapped to their compiled dist/ locations and type definitions when publishing to npm.
2026-02-18 20:43:50 -05:00
Dax Raad
11a37834c2
tui: ensure onExit callback fires after terminal output is written
2026-02-18 20:43:50 -05:00
Brendan Allan
d620455531
app: deduplicate allServers list
2026-02-19 09:34:23 +08:00
Dax Raad
568eccb4c6
Revert: all refactor commits migrating from Bun.file() to Filesystem module
2026-02-18 19:41:14 -05:00
Dax
3a07dd8d96
refactor: migrate src/project/project.ts from Bun.file() to Filesystem/stat modules ( #14126 )
2026-02-18 19:37:10 -05:00
David Hill
802ccd3788
tweak(ui): rotate collapsible chevron icon
2026-02-19 00:35:12 +00:00
David Hill
6042785c57
tweak(ui): rtl-truncate edited file paths
2026-02-19 00:32:12 +00:00
David Hill
5d8664c13e
tweak(app): adjust session turn horizontal padding
2026-02-19 00:32:12 +00:00
David Hill
3d0f24067c
tweak(app): tighten prompt dock padding
2026-02-19 00:32:12 +00:00
David Hill
44049540b0
tweak(ui): add open-file tooltip icon
2026-02-19 00:32:12 +00:00
David Hill
40f00ccc1c
tweak(ui): use chevron icons for review diff rows
2026-02-19 00:32:12 +00:00
David Hill
a301051263
tweak(ui): tighten review diff file info gap
2026-02-19 00:32:12 +00:00
David Hill
fd61be4078
tweak(ui): show added diff counts in review
2026-02-19 00:32:12 +00:00
David Hill
4a8bdc3c75
tweak(ui): group edited files list styling
2026-02-19 00:32:12 +00:00
David Hill
9c7629ce61
Update oc-2.json
2026-02-19 00:32:12 +00:00
David Hill
ba53c56a21
tweak(ui): combine diffs in review into one group
2026-02-19 00:32:12 +00:00
Dax
14c0989411
refactor: migrate src/tool/read.ts from Bun.file() to Filesystem module ( #14118 )
2026-02-18 19:29:11 -05:00
Dax
36bc07a5af
refactor: migrate src/tool/write.ts from Bun.file() to Filesystem module ( #14119 )
2026-02-18 19:27:11 -05:00
Dax
270b807cdf
refactor: migrate src/tool/edit.ts from Bun.file() to Filesystem module ( #14120 )
2026-02-18 19:26:45 -05:00
Dax
bd52ce5640
refactor: migrate remaining tool files from Bun.file() to Filesystem/stat modules ( #14121 )
2026-02-18 19:24:21 -05:00
Dax
a624871ccd
refactor: migrate src/storage/storage.ts from Bun.file()/Bun.write() to Filesystem module ( #14122 )
2026-02-18 19:21:21 -05:00
Dax
819d09e64e
refactor: migrate src/storage/json-migration.ts from Bun.file() to Filesystem module ( #14123 )
2026-02-18 19:20:40 -05:00
Dax
9e6cb89101
refactor: migrate src/mcp/auth.ts from Bun.file()/Bun.write() to Filesystem module ( #14125 )
2026-02-18 19:20:16 -05:00
Dax
a8347c3762
refactor: migrate src/storage/db.ts from Bun.file() to statSync ( #14124 )
2026-02-18 19:20:03 -05:00
Dax
57b63ea83d
refactor: migrate src/session/prompt.ts from Bun.file() to Filesystem/stat modules ( #14128 )
2026-02-19 00:18:05 +00:00
Ryan Vogel
c162074888
chore: skip PR standards checks for PRs created before Feb 18 2026 6PM EST ( #14208 )
2026-02-18 18:16:43 -05:00
Aiden Cline
088eac9d4e
fix: opencode run crashing, and show errored tool calls in output ( #14206 )
2026-02-18 17:13:01 -06:00
Dax
5fe237a3fd
refactor: migrate src/skill/discovery.ts from Bun.file()/Bun.write() to Filesystem module ( #14133 )
2026-02-18 23:10:24 +00:00
Dax
ae398539c5
refactor: migrate src/session/instruction.ts from Bun.file() to Filesystem module ( #14130 )
2026-02-18 18:09:45 -05:00
Dax
359360ad86
refactor: migrate src/provider/provider.ts from Bun.file() to Filesystem module ( #14132 )
2026-02-18 18:08:48 -05:00
Dax
5d12eb9528
refactor: migrate src/shell/shell.ts from Bun.file() to statSync ( #14134 )
2026-02-18 22:55:50 +00:00
Dax
6fb4f2a7a5
refactor: migrate src/cli/cmd/tui/thread.ts from Bun.file() to Filesystem module ( #14135 )
2026-02-18 17:28:41 -05:00
Dax
48dfa45a9a
refactor: migrate src/util/log.ts from Bun.file() to Node.js fs module ( #14136 )
2026-02-18 17:28:08 -05:00
Dax
97520c827e
refactor: migrate src/provider/models.ts from Bun.file()/Bun.write() to Filesystem module ( #14131 )
2026-02-18 17:26:13 -05:00
Dax
b75a89776d
refactor: migrate src/lsp/client.ts from Bun.file() to Filesystem module ( #14137 )
2026-02-18 17:22:06 -05:00
opencode-agent[bot]
b909679367
chore: generate
2026-02-18 22:21:17 +00:00
Ryan Vogel
639d1dd8fe
chore: add compliance checks for issues and PRs with recheck on edit ( #14170 )
2026-02-18 17:20:23 -05:00
Luke Parker
7033b4d0a8
fix(win32): Sidecar spawning a window ( #14197 )
2026-02-19 08:18:15 +10:00
Eduardo Bellido Bellido
87c16374aa
fix(lsp): use HashiCorp releases API for installing terraform-ls ( #14200 )
2026-02-18 16:11:57 -06:00
Dax
d366a1430f
refactor: migrate src/lsp/server.ts from Bun.file()/Bun.write() to Filesystem module ( #14138 )
2026-02-18 21:41:07 +00:00
David Hill
cfea5c73de
tweak(app): delay prompt mode toggle tooltip
2026-02-18 21:33:14 +00:00
David Hill
2589eb207f
tweak(app): shorten prompt mode toggle tooltips
2026-02-18 21:33:14 +00:00
David Hill
ec7c72da3f
tweak(ui): restyle reasoning blocks
2026-02-18 21:33:14 +00:00
Dax
a4b36a72ad
refactor: migrate src/file/time.ts from Bun.file() to stat ( #14141 )
2026-02-18 21:22:08 +00:00
Dax
e37a9081a6
refactor: migrate src/cli/cmd/session.ts from Bun.file() to statSync ( #14144 )
2026-02-18 16:20:58 -05:00
Dax
a2469d933e
refactor: migrate src/acp/agent.ts from Bun.file() to Filesystem module ( #14139 )
2026-02-18 16:14:20 -05:00
Dax
3cde93bf2d
refactor: migrate src/auth/index.ts from Bun.file()/Bun.write() to Filesystem module ( #14140 )
2026-02-18 16:13:50 -05:00
Dax
898bcdec87
refactor: migrate src/cli/cmd/agent.ts from Bun.file()/Bun.write() to Filesystem module ( #14142 )
2026-02-18 21:08:01 +00:00
Dax
d5971e2da5
refactor: migrate src/cli/cmd/import.ts from Bun.file() to Filesystem module ( #14143 )
2026-02-18 21:07:32 +00:00
David Hill
c71f4d4847
Update oc-2.json
2026-02-18 20:32:54 +00:00
opencode-agent[bot]
dec7827548
chore: generate
2026-02-18 20:19:27 +00:00
David Hill
7faa8cb110
tweak(ui): reduce review panel padding
2026-02-18 20:18:17 +00:00
David Hill
d8a4a125c0
Update oc-2.json
2026-02-18 20:18:17 +00:00
David Hill
50923f06f1
tweak(ui): remove pressed scale for secondary buttons
2026-02-18 20:18:17 +00:00
David Hill
ba919fb619
tweak(ui): shrink review expand/collapse width
2026-02-18 20:18:17 +00:00
David Hill
47b4de3531
tweak(ui): tighten review header action spacing
2026-02-18 20:18:17 +00:00
David Hill
bb6d1d502f
tweak(ui): adjust review diff style hover radius
2026-02-18 20:18:17 +00:00
David Hill
31e964e7cf
Update oc-2.json
2026-02-18 20:18:17 +00:00
David Hill
06b2304a5f
tweak(ui): override for the radio group in the review
2026-02-18 20:18:17 +00:00
David Hill
1b67339e4d
Update radio-group.css
2026-02-18 20:18:17 +00:00
David Hill
1571246ba8
tweak(ui): use default cursor for segmented control
2026-02-18 20:18:17 +00:00
David Hill
d730d8be01
tweak(ui): shrink review diff style toggle
2026-02-18 20:18:17 +00:00
David Hill
e42cc85112
Update oc-2.json
2026-02-18 20:18:17 +00:00
David Hill
c7a79f1877
Update icon-button.css
2026-02-18 20:18:17 +00:00
David Hill
431f5347af
tweak(ui): search button style
2026-02-18 20:18:17 +00:00
David Hill
1ed4a98233
tweak(ui): remove pressed transition for secondary buttons
2026-02-18 20:18:17 +00:00
David Hill
db4ff89579
Update oc-2.json
2026-02-18 20:18:17 +00:00
David Hill
2f56761060
tweak(ui): expanded color state on titlebar buttons
2026-02-18 20:18:17 +00:00
David Hill
09286ccae0
tweak(ui): oc-2 theme updates
2026-02-18 20:18:17 +00:00
David Hill
4e959849f6
tweak(ui): hover and active styles for filetree tabs
2026-02-18 20:18:17 +00:00
David Hill
3690cafeb8
tweak(ui): hover and active styles for title bar buttons
2026-02-18 20:18:17 +00:00
David Hill
bcca253dec
tweak(ui): hover and active styles for title bar buttons
2026-02-18 20:18:17 +00:00
David Hill
6d69ad5574
tweak(ui): update oc-2 secondary button colors
2026-02-18 20:18:17 +00:00
David Hill
1f9be63e96
tweak(ui): use weak border and base icon color for secondary
2026-02-18 20:18:17 +00:00
David Hill
0873908030
tweak(ui): theme color updates
2026-02-18 20:18:17 +00:00
David Hill
4db2d94854
tweak(ui): shrink filetree tab height
2026-02-18 20:18:17 +00:00
David Hill
e5d52e4eb5
tweak(ui): align pill tabs pressed background
2026-02-18 20:18:16 +00:00
David Hill
f20c0bffd3
tweak(ui): unify titlebar expanded button background
2026-02-18 20:18:16 +00:00
David Hill
9110e6a2a7
tweak(ui): share button border
2026-02-18 20:18:16 +00:00
David Hill
0888c02379
tweak(ui): file tree background color
2026-02-18 20:18:16 +00:00
David Hill
24ce49d9d7
fix(ui): add previous smoke colors
2026-02-18 20:18:16 +00:00
David Hill
5d69f00282
button style tweaks
2026-02-18 20:18:16 +00:00
David Hill
12016c8eb4
oc-2 theme init
2026-02-18 20:18:16 +00:00
David Hill
d6331cf792
Update colors.css
2026-02-18 20:18:16 +00:00
opencode-agent[bot]
2d7c9c9692
chore: generate
2026-02-18 20:15:14 +00:00
Helge Tesdal
1aa18c6cd6
feat(plugin): pass sessionID and callID to shell.env hook input ( #13662 )
2026-02-18 14:14:18 -06:00
Adam
de25703e9d
fix(app): terminal cross-talk ( #14184 )
2026-02-18 13:56:05 -06:00
Adam
1133d87be0
chore: cleanup
2026-02-18 13:38:51 -06:00
Adam
42aa28d512
chore: cleanup ( #14181 )
2026-02-18 13:23:20 -06:00
opencode-agent[bot]
c6bd320003
chore: update nix node_modules hashes
2026-02-18 19:08:12 +00:00
Frank
24a9841322
zen: update sst version
2026-02-18 13:54:23 -05:00
Dax
8bf06cbcc1
refactor: migrate src/global/index.ts from Bun.file() to Filesystem module ( #14146 )
2026-02-18 13:25:18 -05:00
OpeOginni
be2e6f1926
fix(opencode): update pasteImage to only increment count when the previous attachment is an image too ( #14173 )
2026-02-18 12:09:09 -06:00
Adam
72c12d59af
chore: cleanup
2026-02-18 11:55:08 -06:00
Adam
8408e4702e
chore: cleanup
2026-02-18 11:48:25 -06:00
Adam
ef14f64f9e
chore: cleanup
2026-02-18 11:48:25 -06:00
Adam
3f60a6c2a4
chore: cleanup
2026-02-18 11:48:25 -06:00
Matt Silverlock
d447b7694a
fix(github): emit PROMPT_TOO_LARGE error on context overflow ( #14166 )
2026-02-18 11:45:27 -06:00
Dax
5638b782c5
refactor: migrate editor.ts from Bun.file()/Bun.write() to Filesystem module ( #14149 )
2026-02-18 17:44:33 +00:00
Dax
eb3f337695
refactor: migrate clipboard.ts from Bun.file() to Filesystem module ( #14148 )
2026-02-18 12:38:44 -05:00
Dax
c88ff3c08b
refactor: migrate src/bun/index.ts from Bun.file()/Bun.write() to Filesystem module ( #14147 )
2026-02-18 12:38:30 -05:00
Dax
e0e8b94384
refactor: migrate uninstall.ts from Bun.file()/Bun.write() to Filesystem module ( #14150 )
2026-02-18 12:35:55 -05:00
Dax
8f4a72c57a
refactor: migrate config/markdown.ts from Bun.file() to Filesystem module ( #14151 )
2026-02-18 12:35:32 -05:00
Dax
ef155f3766
refactor: migrate file/index.ts from Bun.file() to Filesystem module ( #14152 )
2026-02-18 12:33:20 -05:00
Dax
82a323ef70
refactor: migrate cli/cmd/github.ts from Bun.write() to Filesystem module ( #14154 )
2026-02-18 12:33:05 -05:00
Dax
a500eaa2d4
refactor: migrate format/formatter.ts from Bun.file() to Filesystem module ( #14153 )
2026-02-18 12:31:35 -05:00
Dax Raad
b714bb21d2
ci: switch to standard GitHub cache action for Bun dependencies
2026-02-18 12:24:17 -05:00
Dax
472d01fbaf
refactor: migrate cli/cmd/run.ts from Bun.file() to Filesystem/stat modules ( #14155 )
2026-02-18 17:22:46 +00:00
Dax Raad
a5c15a23e4
core: allow readJson to be called without explicit type parameter
...
Added default type parameter 'any' to readJson<T> so users can call it without specifying a type when they don't need strict typing. This reduces boilerplate for quick JSON reads where type safety isn't required.
2026-02-18 12:21:25 -05:00
Dax
3d189b42a3
refactor: migrate file/ripgrep.ts from Bun.file()/Bun.write() to Filesystem module ( #14159 )
2026-02-18 12:10:42 -05:00
opencode-agent[bot]
91a3ee642d
chore: update nix node_modules hashes
2026-02-18 17:08:31 +00:00
Dax
37b24f4870
refactor: migrate index.ts from Bun.file() to Filesystem module ( #14160 )
2026-02-18 12:03:24 -05:00
Alexander Abramov
38572b8175
feat: add Julia language server support ( #14129 )
...
Co-authored-by: Alexander Abramov <abramov231@gmail.com >
2026-02-18 11:02:29 -06:00
Aiden Cline
fc1addb8f4
ignore: tweak contributing md ( #14168 )
2026-02-18 11:01:59 -06:00
Vladimir Glafirov
83b7d8e04c
feat: GitLab Duo - bump gitlab-ai-provider to 3.6.0 (adds Sonnet 4.6) ( #14115 )
2026-02-18 10:58:38 -06:00
Mike Harris
d27dbfe062
fix(cli): session list --max-count not honored, shows too few sessions ( #14162 )
2026-02-18 10:56:37 -06:00
Brendan Allan
f8904e3972
desktop: handle sidecar key in projectsKey
2026-02-19 00:05:50 +08:00
Brendan Allan
4a5823562c
desktop: fix isLocal
2026-02-19 00:03:08 +08:00
opencode-agent[bot]
3aaf29b693
chore: update nix node_modules hashes
2026-02-18 15:41:20 +00:00
Dax
6b29896a35
feat: Add centralized filesystem module for Bun.file migration ( #14117 )
2026-02-18 15:30:52 +00:00
Brendan Allan
1bb8574179
app: refactor server management backend ( #13813 )
2026-02-18 23:03:24 +08:00
Adam
2611c35acc
fix(app): lower threshold for diff hiding
2026-02-18 08:40:05 -06:00
Adam
00c238777a
chore: cleanup ( #14113 )
2026-02-18 08:26:15 -06:00
Dax Raad
e4b548fa76
docs: add policy about AI-generated security reports
...
We receive a large number of AI-generated security reports and don't have the resources to review them all. This policy clarifies that such submissions will result in an automatic ban to protect our maintainers' time.
2026-02-18 09:15:18 -05:00
Adam
e132dd2c70
chore: cleanup
2026-02-18 07:22:36 -06:00
David Hill
fbe9669c57
fix: use group-hover for file tree icon color swap at all nesting levels
2026-02-18 13:20:02 +00:00
Adam
c34ad7223a
chore: cleanup
2026-02-18 07:12:54 -06:00
David Hill
cc86a64bb5
tui: simplify mode toggle icon styling
...
Use consistent strong color for active mode icons instead of different
colors for shell vs normal mode, making the active state more visually
clear to users.
2026-02-18 12:35:28 +00:00
Adam
3394402aef
chore: cleanup
2026-02-18 06:32:35 -06:00
Brendan Allan
6cd3a59022
desktop: cleanup
2026-02-18 16:24:28 +08:00
Brendan Allan
5aeb305344
desktop: temporarily disable wsl
2026-02-18 16:10:07 +08:00
Caleb Norton
6eb043aedb
ci: allow commits on top of beta PRs ( #11924 )
2026-02-18 00:20:05 -06:00
Salam Elbilig
e96f6385c2
fix(opencode): fix Clojure syntax highlighting ( #13453 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-18 00:18:18 -06:00
Jérôme Benoit
1109a282e0
ci: add nix-eval workflow for cross-platform flake evaluation ( #12175 )
2026-02-18 00:03:37 -06:00
Aiden Cline
25f3eef957
fix: ensure explore subagent has external_directory perm set to ask instead of auto denying ( #14060 )
2026-02-17 20:16:55 -06:00
Aiden Cline
0ca75544ab
fix: dont autoload kilo ( #14052 )
2026-02-17 18:42:18 -06:00
opencode-agent[bot]
572a037e5d
chore: generate
2026-02-17 23:53:22 +00:00
RAMA
ad92181fa7
feat: add Kilo as a native provider ( #13765 )
2026-02-17 17:52:21 -06:00
legao
c56f4aa5d8
refactor: simplify redundant ternary in updateMessage ( #13954 )
2026-02-17 17:40:14 -06:00
opencode-agent[bot]
a344a766fd
chore: generate
2026-02-17 23:36:08 +00:00
Aiden Cline
bca793d064
ci: ensure triage adds acp label ( #14039 )
2026-02-17 17:34:47 -06:00
Dax Raad
ad3c192837
tui: exit cleanly without hanging after session ends
...
- Force process exit after TUI thread completes to prevent lingering processes
- Add 5-second timeout to worker shutdown to prevent indefinite hangs during cleanup
2026-02-17 17:56:39 -05:00
Anton Volkov
5512231ca8
fix(tui): style scrollbox for permission and sidebar ( #12752 )
2026-02-17 16:24:01 -06:00
Anton Volkov
bad394cd49
chore: remove leftover patch ( #13749 )
2026-02-17 16:22:38 -06:00
Aiden Cline
3b97580621
tweak: ensure read tool uses fs/promises for all paths ( #14027 )
2026-02-17 16:05:22 -06:00
jackarch-2
cb88fe26aa
chore: add missing newline ( #13992 )
2026-02-17 16:04:58 -06:00
Adam
e345b89ce5
fix(app): better tool call batching
2026-02-17 15:57:50 -06:00
Adam
26c7b240ba
chore: cleanup
2026-02-17 15:54:59 -06:00
Adam
d327a2b1cf
chore(app): use radio group in prompt input ( #14025 )
2026-02-17 15:53:38 -06:00
Aiden Cline
c1b03b728a
fix: make read tool more mem efficient ( #14009 )
2026-02-17 15:36:45 -06:00
opencode-agent[bot]
2a2437bf22
chore: generate
2026-02-17 21:23:23 +00:00
Nathan Anderson
4ccb82e81a
feat: surface plugin auth providers in the login picker ( #13921 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-17 15:21:49 -06:00
David Hill
92912219df
tui: simplify prompt mode toggle icon colors via CSS and tighten message timeline padding
2026-02-17 20:10:16 +00:00
Adam
bab3124e8b
fix(app): prompt input quirks
2026-02-17 13:10:43 -06:00
Frank
7a66ec6bc9
zen: sonnet 4.6
2026-02-17 14:10:21 -05:00
Adam
3a505b2691
fix(app): virtualizer getting wrong scroll root
2026-02-17 12:57:40 -06:00
Adam
20f43372f6
fix(app): terminal disconnect and resync ( #14004 )
2026-02-17 12:54:28 -06:00
Eduardo Gomes
fb79dd7bf8
fix: Invalidate oauth credentials when oauth provider says so ( #14007 )
...
Co-authored-by: Eduardo Gomes <egomes@cloudflare.com >
2026-02-17 12:46:26 -06:00
Brendan Allan
4025b655a4
desktop: replicate tauri-plugin-shell logic ( #13986 )
2026-02-18 02:40:52 +08:00
David Hill
7379903568
tui: improve modified file visibility and button spacing
...
- Replace warning yellow with distinct orange color for modified files in git diff indicators
- Increase button padding for better visual balance in session header and status popover
2026-02-17 18:39:21 +00:00
David Hill
a685e7a805
tui: show monochrome file icons by default in tree view, revealing colors on hover to reduce visual clutter and help users focus on code content
2026-02-17 18:23:04 +00:00
David Hill
ce7484b4f5
tui: fix share button text styling to use consistent 12px regular font weight
2026-02-17 17:55:55 +00:00
David Hill
0bc1dcbe1b
tweak(ui): update icon transparency
2026-02-17 17:52:29 +00:00
David Hill
a69b339baf
fix(ui): use icon-strong-base for active titlebar icon buttons
2026-02-17 17:51:49 +00:00
David Hill
26f835cdd2
tweak(ui): icon-interactive-base color change dark mode
2026-02-17 17:43:37 +00:00
David Hill
bd3d1413fd
tui: add warning icon to permission requests for better visibility
...
Adds a visual warning indicator to permission request dialogs to make
them more noticeable and help users understand when the agent needs
approval to use tools. Also improves the layout with consistent
spacing and icon alignment.
2026-02-17 17:43:37 +00:00
David Hill
2c17a980ff
refactor(ui): extract dock prompt shell
2026-02-17 17:43:37 +00:00
David Hill
b784c923a8
tweak(ui): bump button heights and align permission prompt layout
2026-02-17 17:43:37 +00:00
Aiden Cline
ea96f898c0
ci: rm remap for jlongster since he is in org now ( #14000 )
2026-02-17 11:08:35 -06:00
Caleb Norton
47435f6e17
fix: don't fetch models.dev on completion ( #13997 )
2026-02-17 10:41:03 -06:00
Alex Carpenter
df59d1412b
fix: Homepage video section layout shift ( #13987 )
2026-02-17 21:22:47 +05:30
Filip
46739ca7cd
fix(app): ui flashing when switching tabs ( #13978 )
2026-02-17 21:19:20 +05:30
Chris Yang
d055c1cad6
fix(desktop): avoid sidecar health-check timeout on shell startup ( #13925 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-17 15:34:16 +00:00
David Hill
adfbfe350d
tui: increase prompt mode toggle height for better clickability
2026-02-17 15:28:35 +00:00
David Hill
652a776554
ui: add clearer 'Copy response' tooltip label for text parts
2026-02-17 15:19:30 +00:00
David Hill
1d78100f63
tweak(ui): allow full-width user message meta
...
Moves the user message meta row out of the bubble width constraints and truncates long metadata while keeping the timestamp visible with consistent middot spacing.
2026-02-17 15:16:07 +00:00
David Hill
57a5d5fd34
tweak(ui): show assistant response meta on hover
...
Adds hover-only metadata after the assistant copy icon showing agent, provider, model, and response duration.
2026-02-17 15:16:07 +00:00
David Hill
14684d8e75
tweak(ui): refine user message hover meta
...
Moves the interrupted state into the user message hover metadata and updates the copy tooltip to 'Copy message'.
2026-02-17 15:16:07 +00:00
David Hill
2cac848823
tweak(ui): use provider catalog names
...
Renders provider and model display names from the provider list instead of raw IDs in user message hover metadata.
2026-02-17 15:16:07 +00:00
David Hill
5a3e0ef13a
tweak(ui): show user message meta on hover
...
Adds a hover-only metadata line under user messages showing agent, provider, model, and timestamp for quicker context.
2026-02-17 15:16:07 +00:00
opencode-agent[bot]
7ed4499748
chore: generate
2026-02-17 14:43:42 +00:00
Filip
4d5e86d8a5
feat(desktop): more e2e tests ( #13975 )
2026-02-17 08:42:50 -06:00
David Hill
222b6cda96
tweak(ui): update magnifying-glass icon
...
Replace the magnifying-glass glyph with a 16px viewBox variant and keep default 1px stroke; adjust the titlebar search to render the icon at 16x16.
2026-02-17 14:37:44 +00:00
David Hill
8e243c6500
tweak(app): tighten titlebar action padding
...
Use pr-2 for the status and fallback copy-path actions, and tighten the copy icon/text gap to 1.5.
2026-02-17 14:37:44 +00:00
David Hill
98f3ff6273
tweak(app): refine titlebar search and open padding
...
Ensure the titlebar search placeholder truncates cleanly and left-aligns; match the fallback copy-path button left padding to the open action.
2026-02-17 14:37:44 +00:00
David Hill
ce08442732
tweak(ui): center titlebar search and soften keybind
...
Mount the titlebar search in the center area and tune its sizing/spacing; use regular weight for the keybind pill text.
2026-02-17 14:37:44 +00:00
David Hill
8fcfbd697a
tweak(app): align titlebar search text size
...
Use the same 12px text style for the titlebar search placeholder as the status and open actions.
2026-02-17 14:37:44 +00:00
David Hill
a8669aba8f
tweak(app): match titlebar active bg to hover
...
Use the ghost hover background for active/expanded titlebar actions and tighten titlebar popover gutters to 4px.
2026-02-17 14:37:44 +00:00
David Hill
d31e9cff6a
tweak(app): use weak borders in titlebar actions
...
Use border-border-weak-base for the titlebar status and open actions (including the open button divider) and adjust the English copy-path label casing.
2026-02-17 14:37:44 +00:00
David Hill
0cb11c2412
tweak(app): reduce titlebar right padding
...
Use pr-2 (instead of pr-6) on the titlebar right section when not on Windows.
2026-02-17 14:37:44 +00:00
David Hill
9b1d7047d4
tweak(app): keep file tree toggle visible
...
Always show the titlebar file tree button (and space the right-side icon buttons at 4px) so it stays accessible regardless of the review panel state.
2026-02-17 14:37:44 +00:00
opencode-agent[bot]
703d634744
chore: generate
2026-02-17 13:45:58 +00:00
David Hill
e273a31e70
tweak(ui): icon button spacing
2026-02-17 13:44:59 +00:00
Adam
277c68d8e5
chore: app polish ( #13976 )
...
Co-authored-by: David Hill <iamdavidhill@gmail.com >
2026-02-17 07:34:02 -06:00
Adam
10985671ad
feat(app): session timeline/turn rework ( #13196 )
...
Co-authored-by: David Hill <iamdavidhill@gmail.com >
2026-02-17 07:16:23 -06:00
Shoubhit Dash
3dfbb70593
fix(app): recover state after sse reconnect and harden sse streams ( #13973 )
2026-02-17 07:10:39 -06:00
David Hill
07947bab7d
tweak(tui): new session banner with logo and details ( #13970 )
2026-02-17 07:43:55 -05:00
opencode-agent[bot]
4eed55973f
chore: generate
2026-02-17 12:08:03 +00:00
Minung Han
6e984378d7
fix(docs): correct reversed meaning in Korean plugins logging section ( #13945 )
2026-02-17 06:07:09 -06:00
chenmi
4fd3141ab5
docs: improve zh-cn and zh-tw documentation translations ( #13942 )
2026-02-17 06:06:39 -06:00
vynn
8d0a303af4
docs(ko): improve Korean translation accuracy and clarity in Zen docs ( #13951 )
2026-02-17 06:05:37 -06:00
Ganesh
0186a85063
fix(app): keep Escape handling local to prompt input on macOS desktop ( #13963 )
2026-02-17 06:04:11 -06:00
Aiden Cline
ed4e4843c2
ci: update triage workflow ( #13944 )
2026-02-17 01:05:56 -06:00
Frank
a93a1b93e1
wip: zen
2026-02-17 01:32:57 -05:00
Frank
ace63b3ddb
zen: glm 5 free
2026-02-17 01:12:13 -05:00
Brendan Allan
d338bd528c
Hide server CLI on windows ( #13936 )
2026-02-17 12:43:25 +08:00
Goni Zahavy
ea2d089db0
ci: fixed missing if condition ( #13934 )
2026-02-17 12:42:55 +08:00
Goni Zahavy
4226097228
ci: fixed Rust cache for 'cargo install' in publish.yml ( #13907 )
2026-02-17 12:13:33 +08:00
Aiden Cline
e35a4131d0
core: keep message part order stable when files resolve asynchronously ( #13915 )
2026-02-16 18:45:11 -06:00
Goni Zahavy
0e669b6016
ci: use useblacksmith/stickydisk on linux runners only ( #13909 )
2026-02-16 18:27:04 -06:00
Goni Zahavy
9163611989
ci: fixed apt cache not working in publish.yml ( #13897 )
2026-02-16 17:31:38 -06:00
James Long
d93cefd47a
fix(website): fix site in safari 18 ( #13894 )
2026-02-16 17:39:28 -05:00
Aiden Cline
a580fb47d2
tweak: drop ids from attachments in tools, assign them in prompt.ts instead ( #13890 )
2026-02-16 14:59:57 -06:00
ImmuneFOMO
9d3c81a683
feat(acp): add opt-in flag for question tool ( #13562 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-16 14:20:41 -06:00
Zhiyuan Zheng
86e545a23e
fix(opencode): ACP sessions never get LLM-generated titles ( #13095 )
2026-02-16 14:16:17 -06:00
Ariane Emory
b0afdf6ea4
feat(cli): add session delete command ( #13571 )
2026-02-16 14:15:34 -06:00
opencode
d8c25bfeb4
release: v1.2.6
2026-02-16 19:57:09 +00:00
Robert Schadek
160ba295a8
feat(opencode): add dfmt formatter support for D language files ( #13867 )
2026-02-16 13:14:35 -06:00
OpeOginni
16332a8583
fix(tui): make use of server dir path for file references in prompts ( #13781 )
2026-02-16 13:14:08 -06:00
Aiden Cline
ae6e85b2a4
ignore: rm random comment on opencode.jsonc
2026-02-16 13:09:39 -06:00
Dax
fdad823edc
feat(cli): add db migrate command for JSON to SQLite migration ( #13874 )
2026-02-16 19:05:21 +00:00
Ryan Vogel
5cc1d6097e
feat(cli): add --continue and --fork flags to attach command ( #13879 )
2026-02-16 13:45:00 -05:00
opencode-agent[bot]
8c1af9b445
chore: update nix node_modules hashes
2026-02-16 17:38:43 +00:00
Vladimir Glafirov
ef979ccfa8
fix: bump GitLab provider and auth plugin for mid-session token refresh ( #13850 )
2026-02-16 10:01:17 -06:00
Imanol Maiztegui
bb30e06855
fix (tui): Inaccurate tips ( #13845 )
2026-02-16 09:08:04 -05:00
Adam
b055f973df
chore: cleanup
2026-02-16 07:58:18 -06:00
Rafi Khardalian
45fa5e7199
fix(core): remove unnecessary per-message title LLM calls ( #13804 )
2026-02-16 06:04:20 -06:00
Chujiang
3ebf27aab9
fix(docs): correct critical translation errors in Russian zen page ( #13830 )
2026-02-16 06:02:48 -06:00
Aiden Cline
1d041c8861
fix: google vertex var priority ( #13816 )
2026-02-16 02:41:52 -06:00
opencode-agent[bot]
089ab9defa
chore: generate
2026-02-16 08:32:34 +00:00
Jhin Lee
f7708efa5b
feat: add openai-compatible endpoint support for google-vertex provider ( #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 >
2026-02-16 02:31:48 -06:00
bnema
60807846a9
fix(desktop): normalize Linux Wayland/X11 backend and decoration policy ( #13143 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-16 13:24:28 +08:00
dpuyosa
afd0716cbd
feat(opencode): Add Venice support in temperature, topP, topK and smallOption ( #13553 )
2026-02-15 22:24:24 -06:00
Brendan Allan
920255e8c6
desktop: use process-wrap instead of manual job object ( #13431 )
2026-02-16 04:14:24 +00:00
opencode-agent[bot]
21e0778002
chore: generate
2026-02-15 22:31:40 +00:00
Pan Kaixin
d9363da9ee
fix(website): correct zh-CN translation of proprietary terms in zen.mdx ( #13734 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
2026-02-15 16:30:47 -06:00
Salam Elbilig
9b23130ac4
feat(opencode): add cljfmt formatter support for Clojure files ( #13426 )
2026-02-15 15:21:57 -06:00
opencode
62a24c2dda
release: v1.2.5
2026-02-15 18:49:52 +00:00
Alex Yaroshuk
3a3aa300bb
feat(app): localize "free usage exceeded" error & "Add credits" clickable link ( #13652 )
2026-02-15 10:40:09 -06:00
Shane Bishop
cf50a289db
fix(desktop): issue viewing new files opened from the file tree ( #13689 )
2026-02-15 09:48:40 -06:00
Shoubhit Dash
3c85cf4fac
fix(app): only navigate prompt history at input boundaries ( #13690 )
2026-02-15 07:47:19 -06:00
Filip
878ddc6a0a
fix(app): keybind [shift+tab] ( #13695 )
2026-02-15 07:46:56 -06:00
Denys
3761121728
docs: add Ukrainian README translation ( #13697 )
2026-02-15 07:46:19 -06:00
zerone0x
3aaa34be1e
fix(desktop): focus window after update/relaunch ( #13701 )
2026-02-15 07:45:34 -06:00
Brandon Julio Thenaro
985c2a3d15
feat: Add GeistMono Nerd Font to available mono font options ( #13720 )
2026-02-15 07:44:21 -06:00
Aiden Cline
eb553f53ac
fix: ensure sqlite migration logs to stderr instead of stdout ( #13691 )
2026-02-15 00:41:16 -06:00
opencode
d1482e1483
release: v1.2.4
2026-02-15 01:55:33 +00:00
Dax Raad
45f0050372
core: add db command for database inspection and querying
2026-02-14 20:37:17 -05:00
Dax Raad
b5c8bd3421
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.
2026-02-14 20:37:17 -05:00
Dax Raad
2bab5e8c39
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.
2026-02-14 20:37:17 -05:00
Adam
85b5f5b705
feat(app): clear notifications action ( #13668 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
2026-02-14 19:33:22 -06:00
Adam
460a87f359
fix(app): stack overflow in filetree ( #13667 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
2026-02-14 19:24:48 -06:00
opencode
c190f5f611
release: v1.2.3
2026-02-15 00:34:56 +00:00
opencode-agent[bot]
7911cb62ab
chore: update nix node_modules hashes
2026-02-14 20:38:57 +00:00
Aiden Cline
839c5cda12
fix: ensure anthropic models on OR also have variant support ( #13498 )
2026-02-14 14:30:07 -06:00
Dax
67c985ce82
fix: add WAL checkpoint on database open ( #13633 )
2026-02-14 19:33:08 +00:00
Alberto Valverde
575f2cf2a5
chore: bump nixpkgs to get bun 1.3.9 ( #13302 )
2026-02-14 13:21:31 -06:00
Aiden Cline
933a491ade
fix: ensure vercel variants pass amazon models under bedrock key ( #13631 )
2026-02-14 13:18:52 -06:00
opencode
3b6b3e6fc8
release: v1.2.2
2026-02-14 19:08:58 +00:00
Dax Raad
8631d6c01d
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.
2026-02-14 13:43:41 -05:00
Dax Raad
68bb8ce1da
core: filter sessions at database level to improve session list loading performance
2026-02-14 13:41:15 -05:00
opencode-agent[bot]
306fc77076
chore: update nix node_modules hashes
2026-02-14 18:38:18 +00:00
Aiden Cline
759ec104b6
fix vercel gateway variants ( #13541 )
...
Co-authored-by: Benjamin Woodruff <github@benjam.info >"
2026-02-14 12:32:29 -06:00
Aiden Cline
ef205c3660
bump vertex ai packages ( #13625 )
2026-02-14 12:29:01 -06:00
Brendan Allan
df3203d2dd
ci: move signpath policy
2026-02-14 14:47:50 +08:00
Brendan Allan
ed439b2057
ci: test-signing signpath policy
2026-02-14 06:39:53 +00:00
opencode
cd775a2862
release: v1.2.1
2026-02-14 06:39:47 +00:00
Dax Raad
b020758446
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.
2026-02-14 01:21:41 -05:00
Aiden Cline
179c40749d
fix: tweak websearch tool description date info to avoid cache busts ( #13559 )
2026-02-13 23:59:10 -06:00
Frank
1e25df21a2
zen: minimax m2.5 & glm5
2026-02-14 00:47:26 -05:00
opencode
ffc000de8e
release: v1.2.0
2026-02-14 05:20:11 +00:00
Brendan Allan
0b9e929f68
desktop: fix rust
2026-02-14 12:48:16 +08:00
opencode-agent[bot]
d0dcffefa7
chore: update nix node_modules hashes
2026-02-14 04:28:27 +00:00
Brendan Allan
7d46872775
desktop: remote OPENCODE_SQLITE env ( #13545 )
2026-02-13 23:20:09 -05:00
opencode-agent[bot]
afb04ed5d4
chore: generate
2026-02-14 04:19:48 +00:00
Dax
6d95f0d14c
sqlite again ( #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 >
2026-02-14 04:19:02 +00:00
Kevin
d018903887
fix: prevent opencode run crash on malformed tool inputs ( #13051 )
...
Co-authored-by: 0xK3vin <kevin@git-pu.sh >
2026-02-13 20:54:20 -06:00
Kit Langton
d30e917385
fix(ui): support cmd-click links in inline code ( #12552 )
2026-02-13 13:57:38 -06:00
Niu Shuai
72c09e1dcc
fix: standardize zh-CN docs character set and terminology ( #13500 )
2026-02-13 12:58:12 -06:00
严浩
bc1fd0633d
fix(test): move timeout config to CLI flag ( #13494 )
...
Co-authored-by: 严浩 <h_mini2024@oo1.dev >
2026-02-13 10:20:02 -05:00
G36maid
88e2eb5416
docs: add pacman installation option for Arch Linux alongside AUR ( #13293 )
2026-02-13 09:07:48 -06:00
Jun
b8848cfae1
docs(ko): polish Korean phrasing in acp, agents, config, and custom-tools docs ( #13446 )
2026-02-13 09:05:29 -06:00
Adam
4f51c0912d
chore: cleanup
2026-02-13 05:52:43 -06:00
Adam
1c71604e0a
fix(app): terminal resize
2026-02-13 05:52:42 -06:00
eytans
e242fe19e4
fix(web): use prompt_async endpoint to avoid timeout over VPN/tunnel ( #12749 )
2026-02-13 05:25:47 -06:00
opencode-agent[bot]
f991a6c0b6
chore: generate
2026-02-13 11:19:37 +00:00
Annopick
b1764b2ffd
docs: Fix zh-cn translation mistake in tools.mdx ( #13407 )
2026-02-13 05:18:47 -06:00
Chris Yang
ebe5a2b74a
fix(app): remount SDK/sync tree when server URL changes ( #13437 )
2026-02-13 05:16:14 -06:00
Jun
9f20e0d14b
fix(web): sync docs locale cookie on alias redirects ( #13109 )
2026-02-13 05:12:28 -06:00
Filip
ebb907d646
fix(desktop): performance optimization for showing large diff & files ( #13460 )
2026-02-13 05:08:13 -06:00
opencode-agent[bot]
b8ee882126
chore: update nix node_modules hashes
2026-02-13 07:06:28 +00:00
Rahul Mishra
693127d382
feat(cli): add --dir option to run command ( #12443 )
2026-02-13 00:59:37 -06:00
Aiden Cline
0d90a22f90
feat: update some ai sdk packages and uuse adaptive reasoning for opus 4.6 on vertex/bedrock/anthropic ( #13439 )
2026-02-13 00:56:11 -06:00
opencode
34ebe814dd
release: v1.1.65
2026-02-13 05:51:04 +00:00
Aiden Cline
1fb6c0b5b3
Revert "fix: token substitution in OPENCODE_CONFIG_CONTENT" ( #13429 )
2026-02-12 23:24:31 -06:00
Aiden Cline
98aeb60a7f
fix: ensure @-ing a dir uses the read tool instead of dead list tool ( #13428 )
2026-02-12 23:20:33 -06:00
Spoon
1608565c80
feat(hook): add tool.definition hook for plugins to modify tool description and parameters ( #4956 )
2026-02-12 22:52:17 -06:00
Brendan Allan
b06afd657d
ci: remove signpath policy
2026-02-13 10:46:45 +08:00
Adam
dd296f7033
fix(app): reconnect event stream on disconnect
2026-02-12 20:20:24 -06:00
Adam
fb7b2f6b4d
feat(app): toggle all provider models
2026-02-12 20:19:26 -06:00
Brendan Allan
e0f1c3c20e
cleanup desktop loading page
2026-02-13 10:15:36 +08:00
Adam
dec304a273
fix(app): emoji as avatar
2026-02-12 20:05:58 -06:00
Adam
c9719dff72
fix(app): notification should navigate to session
2026-02-12 20:04:36 -06:00
Adam
7f95cc64c5
fix(app): prompt input quirks
2026-02-12 19:58:57 -06:00
Adam
b525c03d20
chore: cleanup
2026-02-12 19:52:20 -06:00
Adam
8da5fd0a66
fix(app): worktree delete
2026-02-12 19:38:13 -06:00
Adam
0303c29e3f
fix(app): failed to create store
2026-02-12 19:38:06 -06:00
Brendan Allan
adb0c4d4f9
desktop: only show loading window if sqlite migration is necessary
2026-02-13 08:49:52 +08:00
projectArtur
991496a753
fix: resolve ACP hanging indefinitely in thinking state on Windows ( #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 >
2026-02-12 18:20:00 -06:00
opencode
76db218674
release: v1.1.64
2026-02-12 23:18:40 +00:00
Ariane Emory
29671c1397
fix: token substitution in OPENCODE_CONFIG_CONTENT ( #13384 )
2026-02-12 16:59:44 -06:00
Aiden Cline
f66624fe6e
chore: cleanup flag code ( #13389 )
2026-02-12 22:38:51 +00:00
opencode-agent[bot]
d475fd6137
chore: generate
2026-02-12 22:14:45 +00:00
Smit Chaudhary
93eee0daf4
fix: look for recent model in fallback in cli ( #12582 )
2026-02-12 16:13:48 -06:00
opencode-agent[bot]
445e0d7676
chore: update nix node_modules hashes
2026-02-12 22:04:31 +00:00
Luke Parker
4018c863e3
fix: baseline CPU detection ( #13371 )
2026-02-13 07:50:43 +10:00
Luke Parker
a8f2884521
feat: windows selection behavior, manual ctrl+c ( #13315 )
2026-02-13 07:38:27 +10:00
Sebastian
c0814da785
do not open console on error ( #13374 )
2026-02-12 21:29:58 +00:00
opencode-agent[bot]
20dcff1e2e
chore: generate
2026-02-12 21:23:32 +00:00
Aman Kalra
11dd281c92
docs: update STACKIT provider documentation with typo fix ( #13357 )
...
Co-authored-by: amankalra172 <aman.kalra@st.ovgu.de >
2026-02-12 15:22:35 -06:00
Adam
548608b7ad
fix(app): terminal pty isolation
2026-02-12 15:15:34 -06:00
Adam
4e0f509e7b
feat(app): option to turn off sound effects
2026-02-12 15:03:05 -06:00
Adam
ff3b174c42
fix(app): normalize oauth error messages
2026-02-12 14:58:25 -06:00
Adam
70303d0b42
chore: cleanup
2026-02-12 14:48:09 -06:00
Adam
7ccf223c84
chore: cleanup
2026-02-12 14:43:20 -06:00
Adam
e9b9a62fe4
chore: cleanup
2026-02-12 14:39:02 -06:00
Adam
81c623f26e
chore: cleanup
2026-02-12 14:32:31 -06:00
Adam
3696d1ded1
chore: cleanup
2026-02-12 14:24:19 -06:00
Adam
50f208d69f
fix(app): suggestion active state broken
2026-02-12 14:17:05 -06:00
Adam
958320f9c1
fix(app): remote http server connections
2026-02-12 13:41:22 -06:00
Aiden Cline
d1ee4c8dca
test: add more test cases for project.test.ts ( #13355 )
2026-02-12 18:46:44 +00:00
opencode
ac018e3a35
release: v1.1.63
2026-02-12 18:46:38 +00:00
Dax Raad
e6e9c15d34
improve codex model list
2026-02-12 18:15:30 +00:00
opencode
aaee5fb680
release: v1.1.62
2026-02-12 18:15:24 +00:00
Adam
ff0abacf4b
fix(app): project icons unloading
2026-02-12 11:50:17 -06:00
Rasheed
0771e3a8be
fix(app): preserve undo history for plain-text paste ( #13351 )
2026-02-12 17:27:53 +00:00
Adam
da952135ca
chore(app): refactor for better solidjs hygiene ( #13344 )
2026-02-12 11:26:19 -06:00
Dax Raad
789705ea96
ignore: document test fixtures for agents
2026-02-12 12:10:21 -05:00
Ryan Vogel
ba54cee55e
feat(tool): return image attachments from webfetch ( #13331 )
2026-02-12 12:09:29 -05:00
opencode-agent[bot]
847e06f9e1
chore: update nix node_modules hashes
2026-02-12 17:09:09 +00:00
Aiden Cline
2db618dea3
fix: downgrade bun to 1.3.5 ( #13347 )
2026-02-12 16:59:08 +00:00
Dylan Fiedler
ecab692ca1
fix(docs): correct format attribute in StructuredOutputs ( #13340 )
2026-02-12 10:55:43 -06:00
Frank
59a323e9a8
wip: zen
2026-02-12 11:11:25 -05:00
Frank
658bf6fa58
zen: minimax m2.5
2026-02-12 11:04:09 -05:00
Adam
a82ca86008
fix(app): more defensive code component
2026-02-12 10:00:58 -06:00
Adam
ed472d8a67
fix(app): more defensive session context metrics
2026-02-12 10:00:58 -06:00
Adam
ff4414bb15
chore: refactor packages/app files ( #13236 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Co-authored-by: Frank <frank@anoma.ly >
2026-02-12 09:49:14 -06:00
Dax Raad
56ad2db020
core: expose tool arguments in shell hook for plugin visibility
2026-02-12 09:54:47 -05:00
Frank
ae811ad8d2
wip: zen
2026-02-12 14:45:52 +00:00
opencode-agent[bot]
85df106713
chore: generate
2026-02-12 14:45:52 +00:00
opencode
892bb75265
release: v1.1.61
2026-02-12 14:45:45 +00:00
Dax Raad
a115565054
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.
2026-02-12 09:26:28 -05:00
Frank
d82d22b2d7
wip: zen
2026-02-12 09:17:49 -05:00
Ryan Vogel
d723147083
feat: update to not post comment on workflows when no duplicates found ( #13238 )
2026-02-12 09:13:38 -05:00
opencode-agent[bot]
9f9f0fb8eb
chore: update nix node_modules hashes
2026-02-12 13:36:53 +00:00
Adam
ecb274273a
wip(ui): diff virtualization ( #12693 )
2026-02-12 07:25:58 -06:00
Adam
5f421883a8
chore: style loading screen
2026-02-12 07:16:30 -06:00
Brendan Allan
fa97475ee8
ci: move test-sigining policy
2026-02-12 18:50:00 +08:00
Brendan Allan
0eaeb4588e
Testing SignPath Integration ( #13308 )
2026-02-12 18:46:56 +08:00
Brendan Allan
1413d77b1f
desktop: sqlite migration progress bar ( #13294 )
2026-02-12 09:44:06 +00:00
Aiden Cline
624dd94b5d
tweak: tool outputs to be more llm friendly ( #13269 )
2026-02-12 00:33:18 -06:00
Frank
d86f24b6b3
zen: return cost
2026-02-12 01:08:02 -05:00
opencode
03de51bd3c
release: v1.1.60
2026-02-12 05:58:24 +00:00
Luke Parker
8f9742d988
fix(win32): use ffi to get around bun raw input/ctrl+c issues ( #13052 )
2026-02-12 15:39:31 +10:00
opencode-agent[bot]
f6e7aefa72
chore: generate
2026-02-12 04:55:00 +00:00
Kyle Mistele
e269788a8f
feat: support claude agent SDK-style structured outputs in the OpenCode SDK ( #8161 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Dax Raad <d@ironbay.co >
2026-02-12 04:54:05 +00:00
opencode-agent[bot]
66780195dc
chore: generate
2026-02-12 04:11:57 +00:00
Dax Raad
ad2087094d
support custom api url per model
2026-02-11 23:10:47 -05:00
github-actions[bot]
5bdf1c4b96
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/13076#issuecomment-3888412535
2026-02-12 03:05:00 +00:00
Kit Langton
135f8ffb2a
feat(tui): add toggle to hide session header ( #13244 )
2026-02-12 02:21:42 +00:00
dpuyosa
bf5a01edd9
feat(opencode): Venice Add automatic variant generation for Venice models ( #12106 )
2026-02-11 20:21:29 -06:00
Adam
81ca2df6ad
fix(app): guard randomUUID in insecure browser contexts ( #13237 )
...
Co-authored-by: Selim <31136147+selimerunkut@users.noreply.github.com >
2026-02-12 01:05:15 +00:00
Adam
aea68c386a
fix(docs): locale translations for nav elements and headings
2026-02-11 18:51:50 -06:00
Adam
8eea53a41e
docs(ar): second-pass localization cleanup
2026-02-11 18:51:50 -06:00
Aiden Cline
3befd0c6c5
tweak: use promise all for mcp listTools calls ( #13229 )
2026-02-12 00:19:53 +00:00
opencode-agent[bot]
8577eb8ec9
chore: update nix node_modules hashes
2026-02-11 23:39:24 +00:00
Luke Parker
c856f875a1
chore: upgrade bun to 1.3.9 ( #13223 )
2026-02-12 09:27:58 +10:00
opencode-agent[bot]
264dd213f9
chore: update nix node_modules hashes
2026-02-11 23:22:01 +00:00
Sebastian
125727d09c
upgrade opentui to 0.1.79 ( #13036 )
2026-02-12 00:13:11 +01:00
Aiden Cline
8c7b35ad05
tweak: compaction check ( #13214 )
2026-02-11 21:43:04 +00:00
github-actions[bot]
e2a33f75e1
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/13204#issuecomment-3887062726
2026-02-11 20:40:39 +00:00
Aiden Cline
006d673ed2
tweak: make read tool offset 1 indexed instead of 0 to avoid confusion that could be caused by line #s being 1 based ( #13198 )
2026-02-11 14:02:30 -06:00
Aiden Cline
6b4d617df0
feat: adjust read tool so that it can handle dirs too ( #13090 )
2026-02-11 13:23:00 -06:00
Dax Raad
e3471526f4
add square logo variants to brand page
2026-02-11 13:47:54 -05:00
Adam
6b30e0b752
chore: update docs sync workflow
2026-02-11 11:47:32 -06:00
Adam
fbabce1125
fix(app): translations
2026-02-11 11:03:35 -06:00
opencode-agent[bot]
8f56ed5b85
chore: generate
2026-02-11 17:00:20 +00:00
Filip
81b5a6a08b
fix(app):workspace reset ( #13170 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-02-11 10:59:09 -06:00
opencode-agent[bot]
94cb6390aa
chore: generate
2026-02-11 15:37:06 +00:00
opencode
42bea5d297
release: v1.1.59
2026-02-11 15:37:00 +00:00
Adam
f252e3234c
fix(app): translations
2026-02-11 09:19:16 -06:00
Filip
eef3ae3e1f
Fix/reverception ( #13166 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-02-11 09:18:44 -06:00
Adam
fc88dde63f
test(app): more e2e tests ( #13162 )
2026-02-11 15:12:28 +00:00
Adam
4619e9d183
fix(app): sidebar remount
2026-02-11 15:12:28 +00:00
opencode
4dc363f306
release: v1.1.58
2026-02-11 15:12:01 +00:00
Adam
2e8082dd21
Revert "feat(desktop): add WSL backend mode ( #12914 )"
...
This reverts commit 213a87234d .
2026-02-11 08:51:41 -06:00
Adam
a52fe28246
fix(app): notifications on child sessions
2026-02-11 08:47:27 -06:00
Adam
8c5ba8aeb0
fix(app): terminal PTY buffer carryover
2026-02-11 08:47:26 -06:00
Adam
50330820c0
fix(console): translations
2026-02-11 08:47:26 -06:00
Adam
7222fc0ba0
fix(app): terminal resize
2026-02-11 08:47:26 -06:00
Kit Langton
17bdb5d56a
fix(tui): dismiss dialogs with ctrl+c ( #12884 )
2026-02-11 09:03:59 -05:00
Kit Langton
7a463cd193
fix(tui): keep /share available to copy existing link ( #12532 )
2026-02-11 08:58:24 -05:00
Kit Langton
352a54c698
feat(prompt): mode-specific input placeholders ( #12388 )
2026-02-11 08:57:59 -05:00
Kit Langton
93957da2c9
fix(tui): prevent home wordmark corruption in height-constrained terminals ( #13069 )
2026-02-11 08:52:14 -05:00
opencode
edcfd562af
release: v1.1.57
2026-02-11 13:45:34 +00:00
Adam
ef5ec5dc28
fix(app): terminal copy/paste
2026-02-11 07:19:33 -06:00
Adam
c426cb0f14
fix(app): copy path button styles
2026-02-11 07:19:33 -06:00
Shintaro Jokagi
dd1862cc2b
fix(web): prevent language select label truncation ( #13100 )
2026-02-11 06:43:48 -06:00
Brendan Allan
a25b2af05a
desktop: use tracing for logging ( #13135 )
2026-02-11 11:36:27 +00:00
Jack
8bfd6fdba2
fix: encode non-ASCII directory paths in v1 SDK HTTP headers ( #13131 )
2026-02-11 05:33:25 -06:00
Filip
cf7a1b8d80
feat(desktop): enhance Windows app resolution and UI loading states ( #13084 )
2026-02-11 04:40:52 -06:00
opencode-agent[bot]
5ba4c0e024
chore: generate
2026-02-11 10:38:52 +00:00
Jun
567e094e6c
docs(ko): improve translations for intro, cli, and commands ( #13094 )
2026-02-11 04:37:52 -06:00
webwww123
b523998329
fix(docs): avoid footer language selector truncation ( #13124 )
2026-02-11 04:33:50 -06:00
Adam
7e1247c420
fix(desktop): server spawn resilience ( #13028 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-02-11 09:44:26 +00:00
Brendan Allan
783888131e
fix(desktop): read wayland preference from store ( #13081 )
2026-02-11 08:10:24 +00:00
Brendan Allan
213a87234d
feat(desktop): add WSL backend mode ( #12914 )
2026-02-11 07:49:48 +00:00
Aiden Cline
d98bd4bd52
fix: add additional context overflow cases, remove overcorrecting ones ( #13077 )
2026-02-10 23:30:29 -06:00
Frank
22125d1347
wip: zen
2026-02-11 00:05:04 -05:00
Ariane Emory
8c120f2fab
docs: remove 'Migrating to 1.0' documentation section ( #13076 )
2026-02-10 22:52:02 -06:00
opencode-agent[bot]
c6ec2f47ef
chore: generate
2026-02-11 01:56:08 +00:00
Aiden Cline
0fd6f365be
fix(core): ensure compaction is more reliable, add reserve token buffer to ensure that input window has enough room to compact ( #12924 )
...
Co-authored-by: James Lal <james@littlebearlabs.io >
2026-02-10 19:55:22 -06:00
Aiden Cline
60bdb6e9ba
tweak: /review prompt to look for behavior changes more explicitly ( #13049 )
2026-02-10 19:44:42 -06:00
Dax
6e9cd576ea
fix(tui): default session sidebar to auto ( #13046 )
2026-02-11 01:26:01 +00:00
OpeOginni
53ec15a56a
fix(tui): improve amazon-bedrock check to include container credentials ( #13037 )
2026-02-10 18:51:49 -06:00
github-actions[bot]
a90b62267f
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/12841#issuecomment-3881500535
2026-02-11 00:37:36 +00:00
Frank
24556331c8
wip: zen
2026-02-10 17:56:10 -05:00
Frank
39145b99e8
wip: zen
2026-02-10 17:44:00 -05:00
Frank
0afa6e03a8
wip: zen
2026-02-10 17:36:32 -05:00
Frank
7a3c775dc1
wip: zen
2026-02-10 17:24:03 -05:00
Frank
3ea58bb790
wip: zen
2026-02-10 17:15:01 -05:00
Adam
50c705cd2d
fix(docs): locale translations
2026-02-10 22:12:32 +00:00
Frank
3894c217cc
wip: zen
2026-02-10 22:12:32 +00:00
Adam
66c2bb8f37
chore: update website stats
2026-02-10 22:12:32 +00:00
opencode
1bbbd51d48
release: v1.1.56
2026-02-10 22:12:25 +00:00
Adam
50f3e74d05
fix(app): task tool rendering
2026-02-10 15:28:46 -06:00
Adam
21475a1dfd
fix(docs): invalid markdown
2026-02-10 15:18:57 -06:00
Filip
dce4c05fa9
fix(desktop): open apps with executables on Windows ( #13022 )
2026-02-10 15:10:58 -06:00
Frank
8c56571ef9
zen: log error
2026-02-10 15:55:33 -05:00
Adam
92a77b72fb
fix(app): don't close sidebar on session change ( #13013 )
2026-02-10 14:45:52 -06:00
opencode-agent[bot]
4f6b929784
chore: generate
2026-02-10 20:22:31 +00:00
Adam
55119559b3
fix(app): don't scroll code search input
2026-02-10 20:22:31 +00:00
Adam
fd5531316f
fix(docs): locale translations
2026-02-10 20:22:30 +00:00
opencode
fbc41475b4
release: v1.1.55
2026-02-10 20:21:34 +00:00
Dax Raad
a0673256db
core: increase test timeout to 30s to prevent failures during package installation
2026-02-10 14:25:25 -05:00
Adam
fc37337a3e
fix(app): memory leak with platform fetch for events
2026-02-10 13:18:33 -06:00
Adam
80220cebe4
fix(app): disable terminal transparency
2026-02-10 13:11:31 -06:00
Dax
8bdf6fa359
fix: show helpful message when free usage limit is exceeded ( #13005 )
2026-02-10 19:04:10 +00:00
opencode
1d11a0adfd
release: v1.1.54
2026-02-10 19:04:02 +00:00
Adam
1e2f664410
fix(app): back to platform fetch for now
2026-02-10 12:40:26 -06:00
Adam
a3aad9c9bf
fix(app): include basic auth
2026-02-10 12:37:28 -06:00
Frank
eb2587844b
zen: retry on 429
2026-02-10 13:35:16 -05:00
Adam
d863a9cf4e
fix(app): global event default fetch
2026-02-10 12:29:01 -06:00
Frank
7d5be1556a
wip: zen
2026-02-10 13:07:08 -05:00
Adam
659f15aa9b
fix(app): no changes in review pane
2026-02-10 11:53:33 -06:00
Adam
d1f5b9e911
fix(app): memory leak with event fetch
2026-02-10 11:30:58 -06:00
Adam
284b00ff23
fix(app): don't dispose instance after reset workspace
2026-02-10 10:57:50 -06:00
Adam
2c5760742b
chore: translator agent
2026-02-10 10:36:28 -06:00
Adam
70c794e913
fix(app): regressions
2026-02-10 10:15:37 -06:00
Adam
3929f0b5bd
fix(app): terminal replay ( #12991 )
2026-02-10 10:15:19 -06:00
Adam
6f5dfe125a
fix(app): use agent configured variant ( #12993 )
2026-02-10 10:15:09 -06:00
Dax
27fa9dc843
refactor: clean up dialog-model.tsx per code review ( #12983 )
2026-02-10 15:13:37 +00:00
Adam
1e03a55acd
fix(app): persist defensiveness ( #12973 )
2026-02-10 07:47:05 -06:00
Filip
65c9669283
test(e2e): redo & undo test ( #12974 )
2026-02-10 07:46:48 -06:00
opencode-agent[bot]
18b6257119
chore: generate
2026-02-10 13:39:21 +00:00
Adam
c607c01fb9
chore: fix e2e tests
2026-02-10 07:38:13 -06:00
Adam
4c4e30cd71
fix(docs): locale translations
2026-02-10 07:11:19 -06:00
Adam
19ad7ad809
chore: fix test
2026-02-10 07:06:20 -06:00
Peter Dave Hello
87795384de
chore: fix typos and GitHub capitalization ( #12852 )
2026-02-10 06:53:38 -06:00
Paul
0732ab3393
fix: use absolute paths for sidebar session navigation ( #12898 )
2026-02-10 06:48:55 -06:00
Ole-Martin Bratteng
2bccfd7462
chore: fix some norwegian i18n issues ( #12935 )
2026-02-10 06:46:32 -06:00
Adam
83853cc5e6
fix(app): new session in workspace choosing wrong workspace
2026-02-10 06:02:17 -06:00
Adam
4a73d51acd
fix(app): workspace reset issues
2026-02-10 05:52:34 -06:00
Dax Raad
63cd763418
Revert "feat: add version to session header and /status dialog ( #8802 )"
...
This reverts commit ac54535486 .
2026-02-10 00:01:28 -05:00
Dax Raad
32394b699e
Revert "feat(tui): highlight esc label on hover in dialog ( #12383 )"
...
This reverts commit 683d234d80 .
2026-02-09 23:57:37 -05:00
Dax Raad
12262862cd
Revert "feat: show connected providers in /connect dialog ( #8351 )"
...
This reverts commit a57c8669b6 .
2026-02-09 23:46:57 -05:00
Harsh Sharma
56a752092e
fix: resolve homebrew upgrade requiring multiple runs ( #5375 ) ( #10118 )
2026-02-09 22:18:57 -06:00
github-actions[bot]
439e7ec1fd
Update VOUCHED list
...
https://github.com/anomalyco/opencode/issues/12881#issuecomment-3875123178
2026-02-10 03:32:35 +00:00
Ryan Vogel
20cf3fc679
ci: filter daily recaps to community-only and fix vouch workflow authentication ( #12910 )
2026-02-09 22:29:18 -05:00
Kit Langton
949f61075f
feat(app): add Cmd+[/] keybinds for session history navigation ( #12880 )
2026-02-09 19:25:42 -06:00
opencode-agent[bot]
705200e199
chore: generate
2026-02-10 00:13:01 +00:00
Adam
85fa8abd50
fix(docs): translations
2026-02-09 18:11:59 -06:00
Ryan Vogel
3118cab2d8
feat: integrate vouch & stricter issue trust management system ( #12640 )
2026-02-09 18:15:06 -05:00
Dax Raad
31f893f8cb
ci: sort beta PRs by number for consistent display order
2026-02-09 18:00:44 -05:00
Marcio
056d0c1197
fix(tui): use sender color for queued messages ( #12832 )
2026-02-09 16:54:12 -06:00
Surma
832902c8e3
fix: publish session.error event for invalid model selection ( #8451 )
2026-02-09 16:27:48 -06:00
Luke Parker
3d6fb29f0c
fix(desktop): correct module name for linux_display in main.rs ( #12862 )
2026-02-09 21:13:47 +00:00
Adam
9824370f82
chore: more defensive
2026-02-09 14:12:23 -06:00
Adam
371e106faa
chore: cleanup
2026-02-09 14:02:14 -06:00
Adam
19809e7680
fix(app): max widths
2026-02-09 13:59:26 -06:00
opencode-agent[bot]
389afef336
chore: generate
2026-02-09 19:57:32 +00:00
Adam
274bb948e7
fix(docs): locale markdown issues
2026-02-09 13:55:55 -06:00
opencode-agent[bot]
d9b4535d64
chore: generate
2026-02-09 19:27:52 +00:00
Adam
3dc720ff9c
fix: locale routing
2026-02-09 13:26:50 -06:00
Bryce Ryan
56b340b5d5
fix(opencode): ACP File write should create the file if it doesn't exist ( #12854 )
2026-02-09 12:56:34 -06:00
Adam
ba740eaefd
fix: locale routing
2026-02-09 12:52:06 -06:00
Adam
39c5da4405
fix(docs): dev docs links
2026-02-09 12:35:46 -06:00
Adam
83708c295c
chore: cleanup
2026-02-09 12:20:09 -06:00
Adam
a84bdd7cd7
fix(app): incorrect workspace on new session
2026-02-09 12:19:04 -06:00
opencode-agent[bot]
110f6804fb
chore: update nix node_modules hashes
2026-02-09 17:44:51 +00:00
opencode-agent[bot]
e5ec2f9991
chore: update nix node_modules hashes
2026-02-09 17:37:37 +00:00
opencode-agent[bot]
7bca3fbf18
chore: generate
2026-02-09 17:36:43 +00:00
opencode-agent[bot]
d578f80f00
chore: generate
2026-02-09 17:35:30 +00:00
Adam
dc53086c1e
wip(docs): i18n ( #12681 )
2026-02-09 11:34:35 -06:00
Aiden Cline
f74c0339cc
test: fix failing prompt test ( #12847 )
2026-02-09 11:25:22 -06:00
Jérôme Benoit
fb94b4f8e8
fix(nix): restore install script in fileset for desktop build ( #12842 )
2026-02-09 11:23:34 -06:00
Aiden Cline
8ad4768ecd
tweak: adjust agent variant logic to not require exact match on model, and instead check if the variant is available for model ( #12838 )
2026-02-09 11:00:06 -06:00
Jérôme Benoit
24fd8c166d
fix(nix): watch scripts in nix-hashes workflow ( #12818 )
2026-02-09 10:13:25 -06:00
Aiden Cline
a7c5d5ac4c
Revert "feat(tui): restore footer to session view ( #12245 )" ( #12836 )
2026-02-09 10:08:26 -06:00
Adam
5be1202eea
chore: cleanup
2026-02-09 09:58:55 -06:00
Joseph Campuzano
373b2270e7
fix(app): make keyboard focus visible in settings ( #12612 )
2026-02-09 09:12:06 -06:00
Adam
05355a6b5c
fix(app): tooltip children focus loop
2026-02-09 07:43:36 -06:00
Adam
7ff51183ce
chore: cleanup
2026-02-09 07:41:17 -06:00
Adam
bda0cbdec7
chore: cleanup
2026-02-09 07:38:06 -06:00
Adam
acc53d9f61
chore(app): cleanup
2026-02-09 07:38:06 -06:00
Adam
30f0d3b394
fix(app): update tab file contents on change
2026-02-09 07:38:06 -06:00
Adam
03f3029dc6
feat(app): polish Open in icon treatment
...
Bring in the Open in button-group and transparent icon updates from #12641 while keeping locale strings unchanged. Replace CSS inversion with dedicated light/dark Zed icon assets for cleaner theme handling.
Co-authored-by: Edin <86423329+edoedac0@users.noreply.github.com >
2026-02-09 07:38:05 -06:00
Anton Volkov
aed7bb8c09
chore: remove unused themes ( #12753 )
2026-02-09 13:33:00 +00:00
Adam
dd2d232a9d
fix: add fallback for when crypto.randomUUID is unavailable
...
Closes #11452
Co-authored-by: Yo'av Moshe <bjesus@users.noreply.github.com >
2026-02-09 06:35:53 -06:00
Kit Langton
993ac55e39
fix(app): allow creating sessions on touch devices ( #12765 )
2026-02-09 05:55:54 -06:00
Israel Araújo de Oliveira
93a11ddedf
feat(desktop): add native Wayland toggle on Linux ( #11971 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-02-09 17:00:35 +08:00
Brendan Allan
94feb811ca
app: include sandboxes in project unseen/error notifs
2026-02-09 16:51:04 +08:00
OpeOginni
b0ceec9b19
feat(desktop): persist currentSidecarUrl in state when isSidecar prop is true ( #12792 )
2026-02-09 07:56:26 +00:00
opencode-agent[bot]
40b111d92c
chore: generate
2026-02-09 07:36:24 +00:00
Brendan Allan
520110e864
desktop: track currentSidecarUrl
2026-02-09 15:34:52 +08:00
Silvio Ney
d4a68b0f4e
feat: exclude devtools from production builds ( #12290 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-02-09 07:30:15 +00:00
opencode-agent[bot]
019cfd4a52
chore: generate
2026-02-09 07:18:48 +00:00
OpeOginni
687210a55d
feat(desktop): add isSidecar prop to AppInterface and logic to persist sidecar server urls ( #12366 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-02-09 07:18:06 +00:00
opencode-agent[bot]
b12eab782f
chore: generate
2026-02-09 05:54:56 +00:00
Aiden Cline
99ea1351ce
tweak: add new ContextOverflowError type ( #12777 )
2026-02-08 23:54:01 -06:00
fgonzalezurriola
d40dffb854
fix(provider): remove obsolete copilot model enablement instructions ( #12739 )
2026-02-08 22:43:52 -06:00
AdJIa
0cd52f830c
fix: enable thinking for all reasoning models on alibaba-cn (DashScope) ( #12772 )
...
Co-authored-by: lujia <lujiax@zmn.cn >
2026-02-08 22:42:23 -06:00
Aiden Cline
62f38087b8
fix: parse mid stream openai responses style errors to prevent infinite retries for errors that should STOP execution ( #12768 )
2026-02-08 20:55:41 -06:00
Jérôme Benoit
79879b43ce
refactor(nix): use native Bun APIs and propagate errors ( #12694 )
2026-02-08 19:43:10 -06:00
Alex Yaroshuk
a598ecac1f
fix(app): localize "close tab" in command pallete ( #12756 )
2026-02-08 19:14:48 -06:00
Adam
9ac54adbb2
chore: cleanup
2026-02-08 16:23:24 -06:00
Adam
6490fb0148
fix(console): zen workspace translation cleanup
2026-02-08 16:22:39 -06:00
Adam
43811b62d2
chore: cleanup
2026-02-08 16:19:13 -06:00
Kit Langton
de0f4ef80b
fix(layout): improve workspace header truncation and item interaction ( #12655 )
2026-02-08 18:42:04 +00:00
opencode-agent[bot]
9a7f54f21a
chore: generate
2026-02-08 17:38:44 +00:00
Kit Langton
27c8a08144
ui: default TextField copy affordance to clipboard ( #12714 )
2026-02-08 11:37:59 -06:00
Frank
80c1c59ed3
wip: zen
2026-02-08 10:31:09 -05:00
Adam
7c6b8d7a8a
fix(ui): context stale in prompt input ( #12695 )
2026-02-08 12:36:53 +00:00
opencode-agent[bot]
4187a5fe7f
chore: update nix node_modules hashes
2026-02-08 11:33:28 +00:00
opencode-agent[bot]
d5c86b03ba
chore: generate
2026-02-08 11:27:37 +00:00
Kit Langton
bc25efdf72
refine(app): tighten slash autocomplete matching ( #12647 )
2026-02-08 05:26:59 -06:00
Devin Griffin
c639200ede
fix(app): Toast when session is missing on prompt-submit ( #12654 )
2026-02-08 05:26:31 -06:00
Abdul Rahman ArM
d5036cf01f
fix(desktop): add native clipboard image paste and fix text paste ( #12682 )
2026-02-08 11:24:09 +00:00
Adam
d1ebe0767c
chore: refactoring and tests ( #12629 )
2026-02-08 05:02:19 -06:00
Caleb Norton
19b1222cd8
feat(nix): expose overlay for downstream use ( #12643 )
2026-02-07 23:56:19 -06:00
Caleb Norton
7631060a82
feat(nix): disable build time models.dev fetching ( #12644 )
2026-02-07 23:55:56 -06:00
Frank
85d0ed5989
wip: zen
2026-02-07 23:25:55 -05:00
opencode-agent[bot]
3408c10057
chore: update nix node_modules hashes
2026-02-08 01:34:30 +00:00
Ryan Miville
ecaeb9e602
fix(app): respect terminal toggle keybind when terminal is focused ( #12635 )
2026-02-07 19:26:54 -06:00
Caleb Norton
e772fc6e23
fix: revert "feat(app): add web input focus shortcut ( #12493 )" ( #12639 )
2026-02-07 19:26:10 -06:00
opencode-agent[bot]
4b7abc0a2c
chore: generate
2026-02-07 19:36:27 +00:00
ChangeHow
805207e096
feat(app): add web input focus shortcut ( #12493 )
2026-02-07 13:35:46 -06:00
Kit Langton
0e1f543646
fix(web): keep /share available to copy existing link ( #12533 )
2026-02-07 13:35:15 -06:00
Devin Griffin
fb331f6cb8
fix(app): disable 3 safari prompt-input annoyances ( #12558 )
2026-02-07 13:33:54 -06:00
Devin Griffin
6bdd3528ac
feat(app): drag-n-drop to @mention file ( #12569 )
2026-02-07 13:33:00 -06:00
Khang Ha (Kelvin)
4efbfcd087
fix(app): handle Windows paths in frontend file URL encoding ( #12601 )
2026-02-07 13:27:40 -06:00
Kit Langton
9401029b1d
fix(app): move workspace New session into header ( #12624 )
2026-02-07 13:21:50 -06:00
Frank
04f216902b
wip: zen
2026-02-07 13:32:23 -05:00
Caleb Norton
8ad5262a87
chore: update flake.lock ( #11919 )
...
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-07 10:27:04 -06:00
opencode-agent[bot]
79a706c664
chore: generate
2026-02-07 14:41:20 +00:00
Ariane Emory
515ef8e554
docs(cli): add documentation for --fork flag ( #12561 )
2026-02-07 08:40:36 -06:00
opencode-agent[bot]
fedf9feba8
chore: generate
2026-02-07 11:03:20 +00:00
Rahul A Mistry
b5b93aea42
fix(app): toggle file tree and review panel better ux ( #12481 )
2026-02-07 05:02:40 -06:00
opencode-agent[bot]
4abf8049c9
chore: update nix node_modules hashes
2026-02-06 23:54:41 +00:00
opencode-agent[bot]
fbc08709d1
chore: generate
2026-02-06 23:47:25 +00:00
Tommy D. Rossi
576a681a4f
feat: add models.dev schema ref for model autocomplete in opencode.json ( #12528 )
2026-02-06 17:46:31 -06:00
opencode-agent[bot]
95d2d4d3a7
chore: generate
2026-02-06 22:34:23 +00:00
Shantur Rathore
a486b74b14
feat(core): Set variant in assistant messages too ( #12531 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-06 16:33:47 -06:00
Dax
7249b87bf6
feat(skill): add skill discovery from URLs via well-known RFC ( #12423 )
...
Co-authored-by: Frank <frank@anoma.ly >
2026-02-06 17:31:40 -05:00
opencode-agent[bot]
c42d2602b4
chore: update nix node_modules hashes
2026-02-06 22:27:14 +00:00
Maharshi Patel
89064c34c5
fix(opencode): cleanup orphaned worktree directories ( #12399 )
2026-02-06 16:18:03 -06:00
Khang Ha (Kelvin)
fde0b39b7c
fix: properly encode file URLs with special characters ( #12424 )
2026-02-06 16:16:56 -06:00
Abdi Ibrahim
e9a3cfc083
fix(desktop): allow agent select to use full width on windows ( #12428 )
2026-02-06 16:15:04 -06:00
opencode-agent[bot]
e767801db2
chore: generate
2026-02-06 22:14:34 +00:00
Aiden Cline
898778daa9
chore: upgrade bun to 1.3.8 ( #11892 )
2026-02-06 16:13:48 -06:00
Ganesh
13381580af
fix(app): keep startup script field scrollable in edit project dialog ( #12431 )
2026-02-06 16:13:37 -06:00
Goni Zahavy
def907ae4b
fix(opencode): SessionPrompt.shell() now triggers loop if messages are queued ( #10987 )
2026-02-06 16:13:11 -06:00
Daniel Polito
71930621fd
feat(desktop): Session Review Images ( #12360 )
2026-02-06 15:01:40 -06:00
OpeOginni
288a491651
fix(docs-windows-wsl): update caution note for server security ( #12467 )
2026-02-06 13:46:32 -06:00
Adam
24ed2d3a1d
fix(ui): markdown table rendering
2026-02-06 13:45:48 -06:00
Ivan Gonzalez
a25cd2da72
feat(opencode): use reasoning summary auto for gpt-5 models that are not chat ( #12502 )
2026-02-06 13:19:14 -06:00
opencode-agent[bot]
918795d868
chore: generate
2026-02-06 19:16:36 +00:00
Ariane Emory
84c5df19c7
feat(tui): add Claude Code-style --fork flag to duplicate sessions before continuing ( resolves #11137 ) ( #11340 )
2026-02-06 13:15:47 -06:00
Frank
e5b355e458
zen: handle 1m context
2026-02-06 13:57:26 -05:00
Frank
89f0a447f6
wip: zen
2026-02-06 13:57:25 -05:00
Adam
fcc927ee76
fix: locale routing
2026-02-06 12:39:41 -06:00
Adam
f256a65b59
fix: auth routing
2026-02-06 12:20:50 -06:00
Adam
6a5c1a74f1
fix: auth routing
2026-02-06 12:11:02 -06:00
Adam
6324d1c351
fix(app): more terminal replay issues
2026-02-06 12:10:05 -06:00
Mariam Jabara
95ad6758af
feat: add specific system prompt for Trinity model ( #12144 )
...
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-02-06 11:43:10 -06:00
Adam
24cd84cda5
feat(www): locale specific urls ( #12508 )
2026-02-06 11:30:40 -06:00
OpeOginni
8069197329
feat(desktop): added Macos support for displaying only installed editors & added sublime text editor ( #12501 )
2026-02-06 17:21:47 +00:00
opencode-agent[bot]
3f7ca0494b
chore: generate
2026-02-06 17:19:57 +00:00
Nacho F. Lizaur
18749c1f4e
fix(opencode): correct prefix selection for amazon-bedrock provider in getSmallModel ( #12281 )
2026-02-06 11:18:57 -06:00
Adam
9497cfdf45
fix(app): don't rely on metadata.summary in task tool render ( #12497 )
2026-02-06 10:54:54 -06:00
opencode-agent[bot]
22353f0169
chore: update nix node_modules hashes
2026-02-06 16:32:48 +00:00
Ariane Emory
449c5b44b7
feat(tui): restore footer to session view ( #12245 )
2026-02-06 10:21:16 -06:00
Matt Silverlock
24dbc46548
fix(github): handle step-start/step-finish parts in extractResponseText ( #12470 )
2026-02-06 10:20:33 -06:00
Vladimir Glafirov
83156e5153
chore(deps): bump @gitlab/gitlab-ai-provider to 3.5.0 ( #12496 )
2026-02-06 10:16:15 -06:00
cooooooooooode
53298145a2
fix: add directory parameter to plugin client for multi-project support ( #11344 )
...
Co-authored-by: cooooooooooode <187372691+cooooooooooode@users.noreply.github.com >
2026-02-06 10:15:35 -06:00
Adam
2c58dd6203
chore: refactoring and tests, splitting up files ( #12495 )
2026-02-06 10:02:31 -06:00
Adam
a4bc883595
chore: refactoring and tests ( #12468 )
2026-02-06 09:37:49 -06:00
Yuvraj Virk
c07077f96c
fix: correct /data API usage and data format for importing share URLs ( #7381 )
2026-02-06 15:29:10 +00:00
opencode-agent[bot]
e31c27c26b
chore: update nix node_modules hashes
2026-02-06 15:12:29 +00:00
Adam
12e8ef3178
fix(app): remove extra error page and use default error boundary
2026-02-06 09:03:45 -06:00
Brendan Allan
b7ad8e459c
desktop: add loading window and restructure rust ( #12176 )
2026-02-06 23:03:07 +08:00
opencode-agent[bot]
5a1bf3a968
chore: generate
2026-02-06 14:55:37 +00:00
Adam
812597bb8b
feat(web): i18n ( #12471 )
2026-02-06 08:54:51 -06:00
Adam
0ec5f6608b
fix(app): hide 'open in app' button on narrow viewports
2026-02-06 07:10:23 -06:00
Adam
0e73869580
fix(www): z icon color
2026-02-06 06:28:11 -06:00
opencode-agent[bot]
732a3dab8c
chore: generate
2026-02-06 12:20:53 +00:00
OpeOginni
400bc7973a
fix(desktop): update server removal logic to clear default server URL if removed ( #12372 )
2026-02-06 06:20:03 -06:00
Alex Yaroshuk
ac88c6b637
feat(app): session last updated time display in command pallete's search ( #12376 )
2026-02-06 06:19:25 -06:00
Maharshi Patel
d4fcc1b863
fix(ui): add Windows File Explorer icon for session header ( #12386 )
2026-02-06 06:18:45 -06:00
Cameron
6c0dce6711
fix(desktop): support desktop titlebar double-click maximize ( #12459 )
2026-02-06 20:13:24 +08:00
Adam
4afec6731d
ignore: refactoring and tests ( #12460 )
2026-02-06 05:51:01 -06:00
Adam
5d92219812
fix(app): retry error unwrapping ( #12462 )
2026-02-06 05:50:38 -06:00
Adam
80a5c3d7ed
chore: cleanup
2026-02-06 05:35:46 -06:00
opencode-agent[bot]
981b80d40b
chore: generate
2026-02-06 10:20:52 +00:00
Brendan Allan
3c5e1a98fc
desktop: add key accelerators to menu itms
2026-02-06 18:20:04 +08:00
opencode-agent[bot]
5ae4463b63
chore: generate
2026-02-06 10:11:44 +00:00
Brendan Allan
e0e32ed3a8
desktop: add more basic menu bar items
2026-02-06 18:10:48 +08:00
Devin Griffin
9b20679a61
fix(app): always show project menu button for mobile a11y ( #11258 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-02-06 07:46:21 +00:00
Brendan Allan
26e1901bd0
desktop: maximize main window by default ( #12433 )
2026-02-06 07:30:13 +00:00
opencode-agent[bot]
9f00b8c8dc
chore: generate
2026-02-06 05:37:00 +00:00
Dax Raad
c35bd39829
tui: parallelize skill downloads for faster loading
...
Refactored skill discovery to download skills in parallel instead of sequentially,
reducing load times when multiple skills need to be fetched from remote URLs.
Also updated AGENTS.md with guidance on using dev branch for diffs.
2026-02-06 00:36:11 -05:00
Dax Raad
266de27a0b
feat(skill): add skill discovery from URLs via well-known RFC
...
Implement the Agent Skills Discovery RFC to allow fetching skills from URLs:
- Add 'urls' field to config.skills for specifying skill registry URLs
- Create Discovery namespace in skill/discovery.ts with pull() function
- Download skills from /.well-known/skills/index.json endpoints
- Cache downloaded skills to ~/.cache/opencode/skills/
- Skip re-downloading existing files for efficiency
Users can now configure:
{
"skills": {
"urls": ["https://example.com/.well-known/skills/ "]
}
}
Implements: https://github.com/cloudflare/agent-skills-discovery-rfc
2026-02-06 00:36:11 -05:00
Frank
0f1fdeceda
zen: fix usage graph
2026-02-06 00:22:09 -05:00
Luke Parker
8bf97ef9e5
chore: align windows test runner to blacksmith ( #12364 )
2026-02-05 20:15:34 -06:00
Akshar Patel
683d234d80
feat(tui): highlight esc label on hover in dialog ( #12383 )
2026-02-05 20:11:08 -06:00
Hank Stoever
229cdafcc4
fix(config): handle $ character with {file:} pattern ( #12390 )
...
Co-authored-by: Hank Stoever <1109058+hstove@users.noreply.github.com >
2026-02-05 20:10:35 -06:00
Dax Raad
154d0ebf53
increase skill dialog width
2026-02-05 18:38:31 -05:00
Andrew Pashynnyk
2e9a63fe4f
fix(opencode): improve skills dialog readability ( #12356 )
2026-02-05 18:35:35 -05:00
opencode
579902ace6
release: v1.1.53
2026-02-05 23:08:56 +00:00
Aiden Cline
3da2f2f33b
chore: make dax shut up ( #12375 )
2026-02-05 16:51:39 -06:00
Dax Raad
9ff423bebf
senior engineer senior engineering
2026-02-05 17:51:12 -05:00
Aiden Cline
1824db13cf
tweak: load user plugins after builtin ( #12373 )
2026-02-05 22:49:48 +00:00
Aiden Cline
36637b3be0
chore: rm hardcoded conditional that was used for testing ( #12371 )
2026-02-05 16:31:52 -06:00
Dax
a45841396f
core: fix unhandled errors when aborting with queued messages ( #12369 )
2026-02-05 22:27:27 +00:00
Akshar Patel
102d8e72bb
fix(tui): allow mouse escape via "esc" labels in dialogs ( #11421 )
2026-02-05 16:14:49 -06:00
Rafi Khardalian
09a0e921ce
fix(plugin): user plugins override built-in plugins for same provider ( #12361 )
2026-02-05 16:04:02 -06:00
opencode-agent[bot]
28c8182bd5
chore: generate
2026-02-05 21:56:26 +00:00
Ariane Emory
bccd568993
docs: websearch tool ( #12359 )
2026-02-05 15:55:50 -06:00
Edin
fd8c2fb0cd
docs: add Bosnian README translation ( #12341 )
2026-02-05 15:25:40 -06:00
Alex Yaroshuk
d160cca179
fix(app): make close comment button visible in prompt input ( #12349 )
2026-02-05 15:23:29 -06:00
Aiden Cline
b551195818
tweak: move codex 5.3 model definition to the plugin so that models.dev doesnt have to show unsupported model for others ( #12344 )
2026-02-05 20:53:26 +00:00
Adam
d7c2d5db3b
fix(app): hide prompt input when there are perms or questions ( #12339 )
2026-02-05 14:42:56 -06:00
opencode-agent[bot]
1dd88aeae6
chore: update nix node_modules hashes
2026-02-05 20:31:07 +00:00
Adam
2875405514
fix(app): more terminal stability fixes
2026-02-05 14:21:13 -06:00
Adam
8c0300c021
fix(app): modified file color contrast
2026-02-05 14:21:13 -06:00
Adam
26b786dd3f
fix(ui): toast overflow
2026-02-05 14:21:12 -06:00
opencode-agent[bot]
afce869d3b
chore: generate
2026-02-05 19:56:54 +00:00
Adam
b738d88ec4
feat(app): open in <app> button ( #12322 )
2026-02-05 19:55:49 +00:00
Adam
83646e0366
fix(app): allow toggling file tree closed independently ( #12293 )
2026-02-05 13:51:08 -06:00
Daniel Polito
c40ce47e92
feat(desktop): Stop Showing SessionSkeleton on New Workspace ( #12209 )
2026-02-05 13:46:44 -06:00
Daniel Polito
b1c44c7e5c
feat(desktop): Set Workspace Name Earlier to Improve Creation / Deletion ( #12213 )
2026-02-05 13:38:31 -06:00
opencode-agent[bot]
081f065942
chore: update nix node_modules hashes
2026-02-05 19:09:43 +00:00
Steffen Deusch
8ddef975b7
feat(acp): add session usage ( #12299 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-05 12:58:09 -06:00
Aiden Cline
2f78705f6e
tweak: update transforms for gpt-5.3 ( #12325 )
2026-02-05 12:49:40 -06:00
opencode
a0bc656215
release: v1.1.52
2026-02-05 18:48:54 +00:00
Dax Raad
47f00d23b3
enable 5.3 codex
2026-02-05 13:23:58 -05:00
Goni Zahavy
40ebc34909
feat(tui): add running spinner to bash tool in TUI ( #12317 )
2026-02-05 12:23:02 -06:00
Frank
e08705f4ef
zen: opus 4.6
2026-02-05 13:01:50 -05:00
Dax Raad
7c748ef089
core: silently ignore proxy command failures to prevent config initialization crashes
2026-02-05 12:47:32 -05:00
Aiden Cline
fba5a79c45
fix: ensure that github copilot plugin properly sets headers when used in other clients than tui ( #12316 )
2026-02-05 11:40:29 -06:00
opencode-agent[bot]
dbde377ab0
chore: update nix node_modules hashes
2026-02-05 16:45:41 +00:00
Dax Raad
9adcf524e2
core: bundle GitLab auth plugin directly instead of dynamic install
...
Remove dynamic installation of built-in plugins. GitLab auth is now imported
directly as an internal plugin, eliminating network requests during startup
and simplifying the plugin loading logic.
Removes the need for test mocks since plugins are no longer
dynamically installed at runtime.
2026-02-05 11:29:00 -05:00
Dax Raad
531b1941a0
ci: ensure config test waits for dependencies to complete installation
2026-02-05 10:13:52 -05:00
Dax Raad
a1c46e05ee
core: fix plugin installation to use direct package.json manipulation instead of bun add
...
This ensures plugins install more reliably by writing dependencies directly
to package.json rather than relying on bun add commands which can fail
in certain environments. Also adds a small delay to ensure filesystem
operations complete before proceeding.
2026-02-05 10:07:59 -05:00
Adam
1fe1457cfa
chore: cleanup
2026-02-05 07:21:50 -06:00
Adam
aedd85d885
fix(app): file changes not always available
2026-02-05 07:04:44 -06:00
Adam
5b3d94ebaa
fix(app): file tree out of sync
2026-02-05 07:04:43 -06:00
Adam
1a6a3f4b54
chore: package.json scripts
2026-02-05 07:04:34 -06:00
Adam
3116cfc167
chore: package.json scripts
2026-02-05 07:03:29 -06:00
Adam
05529f66d7
fix(app): copy buttons smaller and out of the way
2026-02-05 07:03:29 -06:00
Edin
ef09dddaa5
feat(i18n): add Bosnian locale ( #12283 )
2026-02-05 06:58:14 -06:00
Adam
bf7af99a3f
fix(app): terminal URL issues
2026-02-05 06:20:19 -06:00
Adam
7555742bf0
chore: cleanup
2026-02-05 06:04:28 -06:00
Brendan Allan
fa20bc296b
app: remove extra x padding around prompt input on mobile
2026-02-05 16:42:05 +08:00
opencode-agent[bot]
195731f347
chore: update nix node_modules hashes
2026-02-05 08:00:44 +00:00
Zhiming Guo
72de9fe7a6
fix(opencode): Fixes image reading with OpenAI-compatible providers like Kimi K2.5. ( #11323 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-05 01:54:07 -06:00
Aiden Cline
bec1148192
fix: downgrade xai ai-sdk package due to errors ( #12251 )
2026-02-05 01:50:05 -06:00
Aiden Cline
8c8d888140
Revert: feat: add models.dev schema ref for model autocomplete in ope… ( #12242 )
2026-02-05 00:31:08 -06:00
opencode-agent[bot]
d3a247bfff
chore: generate
2026-02-05 06:08:54 +00:00
Tommy D. Rossi
9ef319f25f
feat: add models.dev schema ref for model autocomplete in opencode.json ( #12112 )
2026-02-05 00:08:08 -06:00
Aiden Cline
64e2bf8bf0
tweak: adjust task tool description/input to alleviate tool call failures that sometimes occured w/ gpt models ( #12214 )
2026-02-05 00:04:03 -06:00
Dax
556adad67b
fix: wait for dependencies before loading custom tools and plugins ( #12227 )
2026-02-05 03:25:43 +00:00
Frank
843bbc973a
wip: zen
2026-02-04 20:56:38 -05:00
Frank
173804c097
zen: set session affinity header
2026-02-04 20:56:37 -05:00
Filip
4086a9ae8e
fix(app): refresh workspace sessions on project switch ( #12189 )
2026-02-04 19:33:34 -06:00
opencode-agent[bot]
2614342f97
chore: generate
2026-02-05 00:30:42 +00:00
Ariane Emory
4387f9fb9a
feat: Allow the function to hide or show thinking blocks to be bound to a key ( resolves #12168 ) ( #12171 )
2026-02-04 18:29:46 -06:00
Maharshi Patel
31e2feb347
fix(tui): add hover states to question tool tabs ( #12203 )
2026-02-04 18:28:22 -06:00
Adam
2896b8a863
fix(app): terminal url
2026-02-04 15:43:13 -06:00
Shantur Rathore
0d38e69038
fix(core): skip dependency install in read-only config dirs ( #12128 )
2026-02-04 14:45:59 -06:00
Adam
9679e0c59c
fix(app): terminal EOL issues
2026-02-04 14:36:10 -06:00
Parker Smith
41bc4ec7f0
fix(desktop): Refresh file contents when changing workspaces to not have stale contents ( #11728 )
2026-02-04 14:27:02 -06:00
Dave Dennis
912098928a
fix(app): derive terminal WebSocket URL from browser origin instead o… ( #12178 )
2026-02-04 14:22:50 -06:00
Adam
222bddc41a
fix(app): last turn changes rendered in review pane ( #12182 )
2026-02-04 19:50:56 +00:00
Adam
9436cb575b
fix(app): safety triangle for sidebar hover ( #12179 )
2026-02-04 19:25:55 +00:00
Tom
d1686661c0
fix: ensure kimi-for-coding plan has thinking on by default for k2p5 ( #12147 )
2026-02-04 12:39:22 -06:00
Aiden Cline
305007aa0c
fix: cloudflare workers ai provider ( #12157 )
2026-02-04 18:07:33 +00:00
Aiden Cline
a2c28fc8d7
fix: ensure that plugin installs use --no-cache when using http proxy to prevent random hangs (see bun issue) ( #12161 )
2026-02-04 12:01:00 -06:00
Adam
ce87121067
fix(app): clear comments on prompt submission ( #12148 )
2026-02-04 11:19:03 -06:00
Adam
ecd7854853
test(app): fix e2e test action
2026-02-04 11:03:54 -06:00
Adam
57b8c62909
fix(app): terminal hyperlink clicks
2026-02-04 10:54:55 -06:00
Adam
28dc5de6a8
fix(ui): review comments z-index stacking
2026-02-04 10:35:11 -06:00
Adam
c875a1fc90
test(app): fix e2e test action
2026-02-04 10:28:24 -06:00
Adam
1721c6efdf
fix(core): session errors when attachment file not found
2026-02-04 10:21:03 -06:00
Adam
93592702c3
test(app): fix dated e2e tests
2026-02-04 10:10:28 -06:00
Adam
61d3f788b8
fix(app): don't show scroll-to-bottom unecessarily
2026-02-04 10:01:00 -06:00
Dax Raad
a3b281b2f3
ci: remove source-based AUR package from publish script
...
Simplifies the release process by publishing only the binary package to AUR,
eliminating the need to maintain separate source and binary build configurations.
2026-02-04 10:31:21 -05:00
Adam
c8622df762
fix(app): file tree not staying in sync across projects/sessions
2026-02-04 07:59:46 -06:00
Adam
c277ee8cbf
fix(app): move session options to the session page
2026-02-04 07:12:19 -06:00
Adam
a2face30f4
wip(app): session options
2026-02-04 07:12:18 -06:00
Adam
a219615fe5
fix(app): opened tabs follow created session
2026-02-04 06:22:55 -06:00
opencode-agent[bot]
af06175b1f
chore: generate
2026-02-04 11:35:05 +00:00
Goni Zahavy
2e8d8de58b
fix(desktop): removed compression from rpm bundle to save 15m in CI ( #12097 )
2026-02-04 05:34:18 -06:00
opencode-agent[bot]
310de8b1ea
chore: update nix node_modules hashes
2026-02-04 11:12:01 +00:00
Lucas (TaeYoung) Jo
891875402c
fix(terminal): support remote server connections and fix GLIBC compatibility ( #11906 )
2026-02-04 05:01:10 -06:00
opencode
154cbf6996
release: v1.1.51
2026-02-04 07:06:48 +00:00
Sebastian
64bafce665
restore direct osc52 ( #12071 )
2026-02-04 00:35:57 -06:00
Aiden Cline
5588453cbe
fix: revert change that caused headers to be double merged if provider was authed in multiple places ( #12072 )
2026-02-04 06:30:32 +00:00
Gary Chu
5aaf8f8247
docs: add agent-compatible paths to skills documentation ( #12067 )
2026-02-04 00:12:24 -06:00
Aiden Cline
8c1f1f13dc
docs: document the built in agents ( #12066 )
2026-02-04 00:00:05 -06:00
Sergiy Dybskiy
b942e0b4dc
fix: prevent double-prefixing of Bedrock cross-region inference models ( #12056 )
2026-02-03 23:06:17 -06:00
Devin Griffin
f282613746
fix(app): tighten up session padding-top for mobile ( #11247 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-04 12:10:56 +08:00
Brendan Allan
7c440ae82c
chore: add brendonovich as rust codeowner
2026-02-04 10:40:08 +08:00
Brendan Allan
b7bd561eaa
ci: use numeric release id instead of gql one
2026-02-04 10:39:17 +08:00
Łukasz Gładysz
6daa962aaa
fix: prioritize OPENCODE_CONFIG_DIR for AGENTS.md ( #11536 )
2026-02-04 01:35:22 +00:00
opencode
93a07e5a2a
release: v1.1.50
2026-02-04 01:35:15 +00:00
Max Leiter
93e060272a
fix: prevent memory leaks from AbortController closures ( #12024 )
2026-02-03 17:51:26 -06:00
Filip
acac05f22e
refactor(e2e): faster tests ( #12021 )
2026-02-03 17:45:49 -06:00
Aiden Cline
b5a4671c64
Revert "feat: add Trinity model system prompt support" ( #12029 )
2026-02-03 16:39:03 -06:00
Aiden Cline
a68fedd4a6
chore: adjust way skill dirs are whitelisted ( #12026 )
2026-02-03 16:33:36 -06:00
Mariam Jabara
015cd404e4
feat: add Trinity model system prompt support ( #12025 )
...
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-02-03 16:33:27 -06:00
opencode-agent[bot]
9921809565
chore: update nix node_modules hashes
2026-02-03 21:28:16 +00:00
opencode-agent[bot]
137336f373
chore: generate
2026-02-03 21:22:33 +00:00
Sayeed Mahmoud
d940d17918
docs: fix grammar and formatting in README ( #11985 )
2026-02-03 15:21:51 -06:00
Tomáš Linhart
0a5d5bc524
docs: fix logging example for plugin ( #11989 )
2026-02-03 15:21:15 -06:00
Tyler Gannon
a30696f9bf
feat(plugin): add shell.env hook for manipulating environment in tools and shell ( #12012 )
2026-02-03 15:18:41 -06:00
Matt Silverlock
25bdd77b1d
fix(opencode): use official ai-gateway-provider package for Cloudflare AI Gateway ( #12014 )
2026-02-03 15:18:28 -06:00
opencode-agent[bot]
2f12e8ee92
chore: generate
2026-02-03 21:10:08 +00:00
Idris Gadi
95211a8854
feat(tui): allow theme colors in agent customization ( #11444 )
2026-02-03 15:09:21 -06:00
Idris Gadi
6b5cf936a2
docs: add missing environmental flags to the list ( #11146 )
2026-02-03 15:07:40 -06:00
Dax
17e62b050f
feat: add support for reading skills from .agents/skills directories ( #11842 )
...
Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com >
2026-02-03 15:51:54 -05:00
Dax
ee84eb44ee
cli: add --thinking flag to show reasoning blocks in run command ( #12013 )
2026-02-03 20:49:15 +00:00
MartinWie
82dd4b6908
fix: always fall back to native clipboard after OSC52 ( #11994 )
2026-02-03 20:53:04 +01:00
opencode-agent[bot]
185858749b
chore: generate
2026-02-03 19:10:44 +00:00
Cloudyan
39a504773c
fix: provider headers from config not applied to fetch requests ( #11788 )
2026-02-03 13:09:07 -06:00
Aiden Cline
b7b734f51f
fix: ensure mcp tools are sanitized ( #11984 )
2026-02-03 12:22:00 -06:00
Adam
dcff5b6596
fix(app): command palette placeholder text
2026-02-03 11:58:58 -06:00
Adam
4f7da2b757
fix(app): model selector truncating too soon
2026-02-03 11:51:30 -06:00
Alex
60e616ec81
feat: Add .slnx to C#/F# LSP root detection ( #11928 )
2026-02-03 11:46:04 -06:00
Adam
416964acd0
chore: gitignore codex
2026-02-03 11:44:03 -06:00
Adam
017ad2c7f7
fix(app): spacing
2026-02-03 10:27:53 -06:00
Adam
e33eb1b058
chore: cleanup
2026-02-03 10:27:53 -06:00
Aiden Cline
857b8a4b56
test: add test for new skill improvements ( #11969 )
2026-02-03 16:05:10 +00:00
Aiden Cline
3975329629
feat: improve skills, better prompting, fix permission asks after invoking skills, ensure agent knows where scripts/resources are ( #11737 )
2026-02-03 09:58:31 -06:00
neavo
54e14c1a17
fix: exclude k2p5 from reasoning variants ( #11918 )
2026-02-03 09:26:37 -06:00
Muhammad Mugni Hadi
3741516fe3
fix: handle nested array items for Gemini schema validation ( #11952 )
2026-02-03 09:24:52 -06:00
Daniel Polito
76381f33d5
feat(desktop): Allow empty prompt with review comments ( #11953 )
2026-02-03 09:06:02 -06:00
Luiz Guilherme D'Abruzzo Pereira
95d0d476e3
docs: add --mdns-domain flag documentation ( #11933 )
2026-02-03 07:26:42 -06:00
Adam
7508839b70
fix(app): terminal serialization bug
2026-02-03 07:03:34 -06:00
Adam
e88cbefabe
fix(app): terminal serialization bug
2026-02-03 07:03:34 -06:00
Adam
a38bae684f
chore(app): don't forceMount tooltips
2026-02-03 07:01:12 -06:00
Rahul A Mistry
08671e3155
fix(app): session tabs to open the previous opened ( #11914 )
2026-02-03 06:19:56 -06:00
Rahul A Mistry
0d557721cf
fix(app): edit project dialog icon on hover ( #11921 )
2026-02-03 06:19:07 -06:00
Adam
e709808b32
fix(app): move session search to command palette
2026-02-03 05:19:43 -06:00
Devin Griffin
0d22068c90
fix(app): custom providers overflow ( #11252 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-03 16:17:13 +08:00
Filip
d116c227e0
fix(core): plugins are always reinstalled ( #9675 )
2026-02-03 00:47:52 -06:00
opencode-agent[bot]
3f07dffbb0
chore: generate
2026-02-03 05:19:12 +00:00
Frank
801e4a8a9d
wip: zen
2026-02-03 00:17:06 -05:00
Kiyoung Chang
3adeed8f97
fix(provider): strip properties/required from non-object types in Gemini schema ( #11888 )
2026-02-02 23:13:24 -06:00
Dax
1275c71a63
cli: make run non-interactive ( #11814 )
2026-02-02 23:35:23 -05:00
Aiden Cline
ca8c23dd71
ci: add license to npm ( #11883 )
2026-02-03 03:44:30 +00:00
opencode
acc2bf5db9
release: v1.1.49
2026-02-03 03:44:18 +00:00
Filip
96fbc30945
fix(app): drag region for native controls ( #11854 )
2026-02-02 18:20:05 -06:00
Alex Yaroshuk
ba545ba9b3
fix(app): session scroll bar color ( #11857 )
2026-02-02 17:01:47 -06:00
Aiden Cline
188cc24bfc
chore: cleanup external_dir perm logic ( #11845 )
2026-02-02 16:43:55 -06:00
opencode-agent[bot]
5e3162b7f4
chore: generate
2026-02-02 22:30:23 +00:00
Joseph Campuzano
f9aa209131
fix: fixes issue where the autocomplete tui dialog flickers while typing ( #11641 )
2026-02-02 16:29:43 -06:00
Aiden Cline
f86f654cda
chore: rm dead code ( #11849 )
2026-02-02 16:22:03 -06:00
Filip
aadd2e13d7
fix(app): prompt input overflow issue ( #11840 )
2026-02-02 22:02:56 +00:00
Adam
531357b40c
fix(app): sidebar losing projects on collapse
2026-02-02 15:54:04 -06:00
Aiden Cline
aa6b552c39
Revert pr that was mistakenly merged ( #11844 )
2026-02-02 15:28:02 -06:00
opencode-agent[bot]
a3f1918489
chore: generate
2026-02-02 20:53:36 +00:00
Luiz Guilherme D'Abruzzo Pereira
a9fca05d8b
feat(server): add --mdns-domain flag to customize mDNS hostname ( #11796 )
2026-02-02 14:52:32 -06:00
Alex Yaroshuk
824165eb79
feat(app): add workspace toggle command to command palette and prompt input ( #11810 )
2026-02-02 14:36:00 -06:00
opencode-agent[bot]
562c9d76d9
chore: generate
2026-02-02 20:27:15 +00:00
Adam
c002ca03ba
feat(app): search through sessions
2026-02-02 14:26:09 -06:00
Adam
befb5d54fb
chore: cleanup
2026-02-02 14:24:25 -06:00
Adam
69f5f657f2
chore: cleanup
2026-02-02 14:24:25 -06:00
Adam
0405b425f5
feat(app): file search
2026-02-02 14:24:24 -06:00
Adam
70cf609ce9
Revert "feat(ui): Select, dropdown, popover styles & transitions ( #11675 )"
...
This reverts commit 377bf7ff21 .
2026-02-02 14:24:24 -06:00
Adam
2f76b49df3
Revert "feat(ui): Smooth fading out on scroll, style fixes ( #11683 )"
...
This reverts commit e445dc0746 .
2026-02-02 14:24:24 -06:00
Adam
dfd5f38408
fix(app): icon sizes
2026-02-02 14:24:24 -06:00
Adam
3b93e8d95c
fix(app): added/deleted file status now correctly calculated
2026-02-02 14:24:23 -06:00
Adam
23631a9393
fix(app): navigate to last project on open
2026-02-02 14:24:23 -06:00
Adam
f1e0c31b8f
fix(app): button heights
2026-02-02 14:24:23 -06:00
Adam
30a25e4edc
fix(app): user messages not rendering consistently
2026-02-02 14:24:23 -06:00
Adam
ea1aba4192
feat(app): project context menu on right-click
2026-02-02 14:24:22 -06:00
Filip
b9aad20be6
fix(app): open project search ( #11783 )
2026-02-02 12:15:53 -06:00
Pablo P Varela
965f32ad63
fix(tui): respect terminal transparency in system theme ( #8467 )
2026-02-02 11:36:47 -06:00
opencode-agent[bot]
cf828fff85
chore: update nix node_modules hashes
2026-02-02 16:56:31 +00:00
Vladimir Glafirov
cf8b033be1
feat(provider): add User-Agent header for GitLab AI Gateway requests ( #11818 )
2026-02-02 10:41:02 -06:00
Goni Zahavy
1bd5dc5382
ci: add ratelimits handling for close-stale-prs.yml ( #11578 )
2026-02-02 10:13:48 -06:00
Dax Raad
06d63ca54c
ci: use native ARM runner for faster Linux ARM builds
...
Switch from cross-compilation on x86_64 to native ARM runner, which improves build speed and reliability for Linux ARM binary distribution.
2026-02-02 10:06:21 -05:00
Dax Raad
423778c93a
ci: reduce aarch64 build runner to 4 vcpu to lower infrastructure costs
2026-02-02 09:44:19 -05:00
Dax Raad
8de9e47a5b
ci
2026-02-02 09:37:39 -05:00
Dax Raad
d63ed3bbe3
ci
2026-02-02 09:37:37 -05:00
Dax
4369d79636
tui: truncate session title in exit banner ( #11797 )
2026-02-02 14:30:10 +00:00
Rahul A Mistry
3408f1a6ae
feat(app): add tab close keybind ( #11780 )
2026-02-02 06:50:06 -06:00
opencode-agent[bot]
34c58af796
chore: generate
2026-02-02 12:07:56 +00:00
OpeOginni
37979ea44f
feat(app): enhance responsive design with additional breakpoints for larger screen layout adjustments ( #10459 )
...
Co-authored-by: opencode <opencode@sst.dev >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-02-02 06:06:45 -06:00
OpeOginni
50b5168c16
fix(desktop): added inverted svg for steps expanded for nice UX ( #10462 )
...
Co-authored-by: opencode <opencode@sst.dev >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-02-02 06:03:55 -06:00
opencode-agent[bot]
6b17645f2e
chore: generate
2026-02-02 12:02:35 +00:00
Ondřej Súkup
52006c2fd9
feat(opencode): ormolu code formatter for haskell ( #10274 )
2026-02-02 06:01:49 -06:00
Adam
26197ec95b
chore: update website stats
2026-02-02 05:42:55 -06:00
Sam Huckaby
43bb389e35
Fix(app): the Vesper theme's light mode ( #9892 )
2026-02-02 11:30:44 +00:00
Lucio Delelis
985090ef3c
fix(ui): adjusts alignment of elements to prevent incomplete scroll ( #11649 )
2026-02-02 05:20:30 -06:00
Brendan Allan
52eb8a7a8c
feat(app): unread session navigation keybinds ( #11750 )
2026-02-02 05:05:47 -06:00
opencode-agent[bot]
1cabeb00d0
chore: generate
2026-02-02 10:53:46 +00:00
Brendan Allan
9564c1d6be
desktop: fix rust build + bindings formatting
2026-02-02 18:52:57 +08:00
Brendan Allan
1832eeffc9
fix(desktop): remove unnecessary setTimeout
2026-02-02 18:19:49 +08:00
Brendan Allan
e6d8315e29
fix(desktop): throttle window state persistence ( #11746 )
2026-02-02 09:54:57 +00:00
opencode-agent[bot]
784a17f7b3
chore: generate
2026-02-02 07:58:52 +00:00
Brendan Allan
04aef44fc3
chore(desktop): integrate tauri-specta ( #11740 )
2026-02-02 07:58:08 +00:00
Brendan Allan
c02dd067b2
fix(desktop): keep mac titlebar stable under zoom ( #11747 )
2026-02-02 07:54:25 +00:00
opencode-agent[bot]
141fdef588
chore: update nix node_modules hashes
2026-02-02 07:21:25 +00:00
Sebastian
3982c7d99a
Use opentui OSC52 clipboard, again ( #11744 )
2026-02-02 08:12:50 +01:00
mohammad
76745d0594
fix(desktop): kill zombie server process on startup timeout ( #11602 )
...
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
2026-02-02 13:30:46 +08:00
Frank
4850ecc419
zen: rate limit ( #11735 )
2026-02-02 00:29:52 -05:00
Jigar
43354eeabd
fix: convert system message content to string for Copilot provider ( #11600 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-01 23:28:28 -06:00
Dax
7a9290dc9b
tui: show exit message banner ( #11733 )
2026-02-02 00:13:47 -05:00
Dax Raad
cfbe9d329f
Revert "Use opentui OSC52 clipboard ( #11718 )"
...
This reverts commit 8e985e0a75 .
2026-02-02 00:13:02 -05:00
OpeOginni
f02499fa44
fix(opencode): give OPENCODE_CONFIG_CONTENT proper priority for setting config based on docs ( #11670 )
2026-02-01 23:11:25 -06:00
Mathias Beugnon
bd9d7b3221
fix: session title generation with OpenAI models. ( #11678 )
2026-02-01 23:10:53 -06:00
Dax
c69474846f
Simplify directory tree output for prompts ( #11731 )
2026-02-01 23:37:07 -05:00
Dax
0dc80df6fd
Add spinner animation for Task tool ( #11725 )
2026-02-01 22:51:55 -05:00
Sebastian
8e985e0a75
Use opentui OSC52 clipboard ( #11718 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-02-02 04:48:29 +01:00
Dax Raad
a4d31b6f95
ci: enable typecheck on push to dev branch to catch type errors immediately after merge
2026-02-01 22:32:45 -05:00
Dax Raad
c5dc075a88
Revert "fix(plugin): correct exports to point to dist instead of src"
...
This reverts commit 7417e6eb38 .
2026-02-01 22:29:45 -05:00
Dax Raad
eade8ee07b
docs: Restructure AGENTS.md style guide with organized sections and code examples
2026-02-01 22:28:00 -05:00
Frank
8fbba8de73
ci: Fix Pulumi version conflict in deploy workflow
...
Added a workaround to fix Pulumi version conflict in the deployment workflow.
2026-02-01 21:39:24 -05:00
Dax Raad
826664b559
ci: restrict nix-hashes workflow to dev branch pushes only
...
Remove pull_request trigger and limit push trigger to dev branch to prevent
unnecessary workflow runs on feature branches and PRs. The workflow will now
only execute when dependency files change on the dev branch.
2026-02-01 21:16:13 -05:00
Dax Raad
d1f884033f
ignore: switch commit model to kimi-k2.5 for improved command execution reliability
2026-02-01 21:02:26 -05:00
Dax Raad
0f3630d936
ci: skip unicode filename test due to inconsistent behavior causing CI failures
2026-02-01 21:01:57 -05:00
Dax Raad
83d0e48e38
tui: fix task status to show current tool state from message store
2026-02-01 20:52:17 -05:00
Dax Raad
6c9b2c37a5
core: allow starting new sessions after errors by fixing stuck session status
2026-02-01 20:39:58 -05:00
Dax Raad
3ab41d548f
ci: skip force push when beta branch is unchanged
2026-02-01 20:35:02 -05:00
Dax Raad
d3d783e23d
ci: allow manual dispatch for beta workflow
2026-02-01 20:18:12 -05:00
Dax Raad
7aad2ee9ae
ci: run beta workflow on hourly schedule only
2026-02-01 20:17:50 -05:00
Dax Raad
f390ac251d
ci: centralize team list in @opencode-ai/script package and use beta label filter
2026-02-01 20:17:15 -05:00
Dax Raad
7837bbc639
ci: add synchronize event and check for beta label using contains()
2026-02-01 19:59:20 -05:00
Dax Raad
372dcc033c
ci: change trigger from scheduled cron to PR labeled events with beta label condition
2026-02-01 19:59:20 -05:00
Dax Raad
4158d7cda8
ci: add --label beta filter to only process PRs with beta label
2026-02-01 19:59:20 -05:00
Dax Raad
425abe2fbf
ci: post PR comments when beta merge fails instead of Discord notifications
2026-02-01 19:59:20 -05:00
Dax Raad
744fb6aed0
ci: rewrite beta script to use proper Bun shell patterns
2026-02-01 19:59:20 -05:00
Dax Raad
e9f8e6aeec
ci: remove parseArgs CLI option and use environment variable directly
2026-02-01 19:59:20 -05:00
Dax Raad
5dee3328d4
ci: add --discord-webhook / -d CLI option for custom Discord webhook URL
2026-02-01 19:59:20 -05:00
Dax Raad
2f63152af3
ci: add DISCORD_ISSUES_WEBHOOK_URL secret to beta workflow
2026-02-01 19:59:20 -05:00
Dax Raad
c9891fe071
ci: collect all failed PR merges and notify Discord
2026-02-01 19:59:20 -05:00
Dax Raad
d35956fd92
ci: prevent rate limit errors when fetching team PRs for beta releases
2026-02-01 19:29:26 -05:00
R44VC0RP
7417e6eb38
fix(plugin): correct exports to point to dist instead of src
...
The package.json exports were pointing to ./src/*.ts but the published
package only includes the dist/ folder. This caused 'Cannot find module'
errors when custom tools tried to import @opencode-ai/plugin.
Changed exports from:
".": "./src/index.ts"
"./tool": "./src/tool.ts"
To:
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }
"./tool": { "types": "./dist/tool.d.ts", "import": "./dist/tool.js" }
2026-02-01 19:26:23 -05:00
Aiden Cline
5db089070a
test: add unit test
2026-02-01 19:26:23 -05:00
Aiden Cline
612b656d36
fix: adjust resolve parts so that when messages with multiple @ references occur, the tool calls are properly ordered
2026-02-01 19:26:23 -05:00
R44VC0RP
cb6ec0a564
fix(app): hide badge for builtin slash commands
...
Add source: 'command' to builtin and config-defined commands so they
don't show a 'custom' badge. Only MCP and skill commands show badges.
2026-02-01 19:26:23 -05:00
R44VC0RP
12b8c42387
feat(app): show skill/mcp badges for slash commands
...
Display 'skill' or 'mcp' badge instead of 'custom' for slash commands
based on their source type. This provides better clarity to users about
where each command comes from.
2026-02-01 19:26:23 -05:00
opencode-agent[bot]
fa75d922ed
chore: generate
2026-02-02 00:18:42 +00:00
Aaron Iker
e445dc0746
feat(ui): Smooth fading out on scroll, style fixes ( #11683 )
2026-02-02 01:18:06 +01:00
opencode-agent[bot]
e84d441b82
chore: generate
2026-02-02 00:17:54 +00:00
Aaron Iker
377bf7ff21
feat(ui): Select, dropdown, popover styles & transitions ( #11675 )
2026-02-02 01:17:14 +01:00
Frank
b39c1f158f
zen: add minimax logo ( #11682 )
2026-02-01 17:50:15 -05:00
Sumit Srivastava
f23d8d343b
docs (web): Update incorrect Kimi model name in zen.mdx ( #11677 )
2026-02-01 16:13:53 -06:00
Filip
91f2ac3cb2
test(app): workspace tests ( #11659 )
2026-02-01 15:39:50 -06:00
Aiden Cline
ec720145fa
fix: when using codex sub, send the custom agent prompts as a separate developer message (previously sent as user message but api allows for instructions AND developer messages) ( #11667 )
...
Co-authored-by: Carlos <carloscanas942@gmail.com >
2026-02-01 14:57:47 -06:00
Aiden Cline
f6948d0ffa
fix: variant logic for anthropic models through openai compat endpoint ( #11665 )
2026-02-01 14:50:49 -06:00
opencode-agent[bot]
d52ee41b3a
chore: update nix node_modules hashes
2026-02-01 20:48:33 +00:00
Rohan Godha
ca5e85d6ea
fix: prompt caching for opus on bedrock ( #11664 )
2026-02-01 14:42:42 -06:00
Caleb Norton
01cec84789
fix(desktop): nix - add missing dep ( #11656 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-02-01 14:24:09 -06:00
opencode-agent[bot]
e62a15d421
chore: generate
2026-02-01 20:13:33 +00:00
Caleb Norton
d29dfe31e4
chore: reduce nix fetching ( #11660 )
2026-02-01 14:12:54 -06:00
neavo
f15755684f
fix(opencode): scope agent variant to model ( #11410 )
2026-02-01 14:12:30 -06:00
YeonGyu-Kim
16145af480
fix: prevent duplicate AGENTS.md injection when reading instruction files ( #11581 )
...
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-02-01 13:46:08 -06:00
Desmond Sow
eace76e525
fix: opencode hanging when using client.app.log() during initialization ( #11642 )
2026-02-01 13:14:34 -06:00
zerone0x
cc1d3732bc
fix(tui): remove outer backtick wrapper in session transcript tool formatting ( #11566 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-02-01 13:11:18 -06:00
Axel Sarmiento Mrak
1798af72b0
fix(ecosystem): fix link Daytona ( #11621 )
2026-02-01 12:19:37 -06:00
Filip
2c82e6c6ae
docs: prefer wsl over native windows stuff ( #11637 )
2026-02-01 10:52:43 -06:00
Joscha Götzer
3577d829c2
fix: allow user plugins to override built-in auth plugins ( #11058 )
...
Co-authored-by: JosXa <info@josxa.dev >
2026-02-01 10:50:41 -06:00
opencode-agent[bot]
29d02d643b
chore: generate
2026-02-01 15:41:11 +00:00
Alex Yaroshuk
23c803707d
fix(app): binary file handling in file view ( #11312 )
2026-02-01 09:40:33 -06:00
Alex Yaroshuk
b51005ec4a
fix(app): use static language names in Thai localization ( #11496 )
2026-02-01 09:38:23 -06:00
Alper Kartkaya
dfbe553626
docs: add Turkish README translation ( #11524 )
2026-02-01 09:37:45 -06:00
陆奕丞
2af1ca7290
docs: improve zh-TW punctuation to match Taiwan usage ( #11574 ) ( #11589 )
2026-02-01 09:33:21 -06:00
Filip
3e67104257
fix(app): show retry status only on active turn ( #11543 )
2026-02-01 06:42:33 -06:00
Aiden Cline
d1d7447493
fix: ensure switching anthropic models mid convo on copilot works without errors, fix issue with reasoning opaque not being picked up for gemini models ( #11569 )
2026-02-01 01:36:44 -06:00
adamjhf
c3faeae9d0
fix: correct pluralization of match count in grep and glob tools ( #11565 )
2026-02-01 00:15:28 -06:00
Dax
94baf1f721
fix(tui): remove extra padding between search and results in dialog-select ( #11564 )
2026-02-01 04:04:57 +00:00
Dax
9b8b9e28e2
feat(tui): add UI for skill tool in session view ( #11561 )
2026-01-31 22:59:46 -05:00
Dax
2a56a1d6ef
fix(tui): conditionally render bash tool output ( #11558 )
2026-01-31 22:40:37 -05:00
Goni Zahavy
9e45313b0a
ci: fixed stale pr workflow ( #11310 )
2026-01-31 21:16:34 -06:00
Aiden Cline
d4c90b2dfb
fix: issue where you couldn't @ folders/files that started with a "." ( #11553 )
2026-01-31 21:01:51 -06:00
Dax
5b784871f0
feat: add skill dialog for selecting and inserting skills ( #11547 )
2026-01-31 20:52:54 -05:00
Filip
e5f677dfb5
fix(app): rendering question tool when the step are collapsed ( #11539 )
2026-01-31 18:25:06 -06:00
opencode-agent[bot]
6a96810249
chore: update nix node_modules hashes
2026-02-01 00:07:33 +00:00
Aiden Cline
8b7fe7c09f
ci: fix nix hash issue ( #11530 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-01-31 17:57:07 -06:00
Jérôme Benoit
0961632a9c
fix(ci): portable hash parsing in nix-hashes workflow ( #11533 )
2026-01-31 17:56:49 -06:00
opencode-agent[bot]
abbf60080d
chore: generate
2026-01-31 20:02:03 +00:00
Filip
33252a65b4
test(app): general settings, shortcuts, providers and status popover ( #11517 )
2026-01-31 14:01:21 -06:00
Dax Raad
e70d984320
tui: enable password authentication for remote session attachment
...
Allow users to authenticate when attaching to a remote OpenCode session by supporting basic auth via a password flag or OPENCODE_SERVER_PASSWORD environment variable
2026-01-31 14:42:36 -05:00
Aiden Cline
da7c874808
tweak: show actual retry error message instead of generic error msg ( #11520 )
2026-01-31 13:15:42 -06:00
Jérôme Benoit
a19ef17bcb
fix(provider): use process.env directly for runtime env mutations ( #11482 )
2026-01-31 12:35:23 -06:00
Jérôme Benoit
121d6a72c0
fix(nix): restore native runners for darwin hash computation ( #11495 )
2026-01-31 12:32:11 -06:00
大猫子
35f64b80fa
docs: fix documentation issues ( #11435 )
...
Co-authored-by: damaozi <1811866786@qq.com >
2026-01-31 12:30:45 -06:00
Jérôme Benoit
feca42b025
feat(opencode): add reasoning variants support for SAP AI Core ( #8753 )
...
Co-authored-by: Github Action <action@github.com >
2026-01-31 09:26:23 -06:00
Ryan Vogel
53f118c57a
Revert "feat(app): add skill slash commands" ( #11484 )
2026-01-31 10:20:23 -05:00
Ryan Vogel
786ae0a584
feat(app): add skill slash commands ( #11369 )
2026-01-31 08:59:28 -06:00
陆奕丞
f73f88fb56
fix(pty): Add UTF-8 encoding defaults for Windows PTY ( #11459 )
2026-01-31 08:55:34 -06:00
Alex Yaroshuk
ac254fb442
fix(app): session header 'share' button to hug content ( #11371 )
2026-01-31 08:53:49 -06:00
opencode
597ae57bb1
release: v1.1.48
2026-01-31 13:48:22 +00:00
Adam
a552652fcc
Revert "feat: Transitions, spacing, scroll fade, prompt area update ( #11168 )" ( #11461 )
...
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
2026-01-31 07:18:51 -06:00
Filip
511c7abaca
test(app): session actions ( #11386 )
2026-01-31 06:42:47 -06:00
Aiden Cline
f834915d3f
test: fix flaky test ( #11427 )
2026-01-31 01:07:22 -06:00
opencode-agent[bot]
65c21f8fe4
chore: generate
2026-01-31 06:59:18 +00:00
Dax Raad
6b972329fd
sync
2026-01-31 01:58:20 -05:00
Dax Raad
6ecd011e51
tui: allow specifying custom models file path via OPENCODE_MODELS_PATH
...
Users can now configure their own models configuration file by setting the OPENCODE_MODELS_PATH environment variable, providing more flexibility for testing and configuration.
2026-01-31 01:53:23 -05:00
Dax Raad
8e5db3083c
ci: copy models fixture for e2e test consistency
2026-01-31 01:44:19 -05:00
Dax Raad
d005e70f50
core: ensure models configuration is not empty before loading
2026-01-31 00:57:17 -05:00
opencode-agent[bot]
46122d9a0a
chore: generate
2026-01-31 05:42:31 +00:00
Dax
81ac41e089
feat: make skills invokable as slash commands in the TUI ( #11390 )
2026-01-31 00:41:55 -05:00
Aiden Cline
c0e71c4261
fix: don't --follow by default for grep and other things using ripgrep ( #11415 )
2026-01-30 23:38:43 -06:00
Dax Raad
507f13a30c
ci: run tests automatically when code is pushed to dev branch
2026-01-31 00:37:55 -05:00
Dax Raad
90f39bf672
core: prevent parallel test runs from contaminating environment variables
2026-01-31 00:37:21 -05:00
Aiden Cline
95bf01a757
fix: ensure the mistral ordering fixes also apply to devstral ( #11412 )
2026-01-30 23:16:07 -06:00
Dax Raad
b6bbb95704
ci: remove pull-request write permissions from beta workflow
2026-01-30 23:39:01 -05:00
Dax Raad
d713026a6a
ci: remove workflow restrictions to allow all PR triggers for broader CI coverage
2026-01-30 23:36:54 -05:00
Dax Raad
73c4d3644c
ci: allow manual beta workflow trigger so users can release on demand instead of waiting for hourly schedule
2026-01-30 23:36:05 -05:00
Dax Raad
571f5b31c9
ci: schedule beta workflow hourly to automate sync runs
2026-01-30 23:33:33 -05:00
opencode-agent[bot]
644f0d4e92
chore: generate
2026-01-31 02:35:22 +00:00
Steffen Deusch
d9f18e4006
feat(opencode): add copilot specific provider to properly handle copilot reasoning tokens ( #8900 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-01-30 19:53:22 -06:00
Dax Raad
2f4374c829
Merge remote dev and apply revert
2026-01-30 20:38:10 -05:00
Dax Raad
3542f3e406
Revert "feat: make skills invokable as slash commands in the TUI"
...
This reverts commit 85126556b8 .
2026-01-30 20:37:41 -05:00
Benjamin Bartels
f1caf84064
feat(build): respect OPENCODE_MODELS_URL env var ( #11384 )
2026-01-30 19:37:37 -06:00
Dax Raad
85126556b8
feat: make skills invokable as slash commands in the TUI
...
- Add Skill.content() method to load skill template content from SKILL.md files
- Modify Command.list() to include skills as invokable commands
- Add 'skill' boolean property to Command.Info schema
- Update autocomplete to show skills with (Skill) label in slash commands
- Regenerate SDK to include skill property in Command type
2026-01-30 20:36:48 -05:00
opencode-agent[bot]
252b2c450d
chore: generate
2026-01-31 01:32:46 +00:00
Cesar Garcia
0c32afbc35
fix(provider): use snake_case for thinking param with OpenAI-compatible APIs ( #10109 )
2026-01-31 01:32:02 +00:00
Aiden Cline
aef0e58ad7
chore(deps): bump ai-sdk packages ( #11383 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-01-30 17:58:02 -06:00
Aiden Cline
1a6461e8bc
fix: ensure ask question tool isn't included when using acp ( #11379 )
2026-01-30 17:32:51 -06:00
Idris Gadi
e834a2e6c9
docs: update agents options section to include color and top_p options ( #11355 )
2026-01-30 17:05:01 -06:00
Aiden Cline
9d3f32065b
test: add llm.test.ts ( #11375 )
2026-01-30 17:04:32 -06:00
Patrick Schiel
e7ff7143b6
fix: handle redirected_statement treesitter node in bash permissions ( #6737 )
2026-01-30 16:11:45 -06:00
Michael Yochpaz
2c36cbb87c
refactor(provider): remove google-vertex-anthropic special case in ge… ( #10743 )
2026-01-30 15:57:36 -06:00
Filip
77fa8ddc88
refactor(app): refactored tests + added project tests ( #11349 )
2026-01-30 21:06:48 +00:00
Ryan Vogel
4a56491e42
fix(provider): exclude chat models from textVerbosity setting ( #11363 )
2026-01-30 21:06:48 +00:00
Dax Raad
f51bd28ed8
ci: increase ARM runner to 8 vCPUs for faster Tauri builds
2026-01-30 21:06:48 +00:00
opencode
6cd2a68851
release: v1.1.47
2026-01-30 21:06:38 +00:00
Dax Raad
9259d2bf52
fix(github): add owner parameter to app token for org-wide repo access
2026-01-30 15:22:02 -05:00
Dax Raad
e94ae550ea
commit
2026-01-30 15:17:55 -05:00
opencode
e9ef94dc4d
release: v1.1.46
2026-01-30 19:19:34 +00:00
opencode-agent[bot]
5495fdde9d
chore: generate
2026-01-30 18:16:49 +00:00
Idris Gadi
7d0777a7ff
chore(tui): remove unused experimental keys ( #11195 )
2026-01-30 12:16:01 -06:00
Filip
f48e2e56c9
test(app): change language test ( #11295 )
2026-01-30 18:04:02 +00:00
opencode-agent[bot]
fe66ca163c
chore: generate
2026-01-30 17:58:31 +00:00
Aaron Iker
20619a6a26
feat: Transitions, spacing, scroll fade, prompt area update ( #11168 )
...
Co-authored-by: Github Action <action@github.com >
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com >
Co-authored-by: aaroniker <4730431+aaroniker@users.noreply.github.com >
2026-01-30 17:57:49 +00:00
Dax Raad
1bbe84ed8d
ci
2026-01-30 12:55:58 -05:00
Aiden Cline
21edc00f11
ci: update pr template ( #11341 )
2026-01-30 12:45:42 -05:00
opencode-agent[bot]
0b91e9087d
chore: generate
2026-01-30 17:20:20 +00:00
Frank
7cb84f13d3
wip: zen ( #11343 )
2026-01-30 12:19:36 -05:00
Dax Raad
1aade4b308
ci
2026-01-30 10:39:59 -05:00
Dax Raad
2e005de670
ci
2026-01-30 10:38:10 -05:00
Dax Raad
e80a99e7bd
ci
2026-01-30 10:36:01 -05:00
Dax Raad
9a0132e750
ci
2026-01-30 10:35:39 -05:00
Dax Raad
7fb22ab681
ci
2026-01-30 10:28:54 -05:00
Dax Raad
e4d3b961cd
ci
2026-01-30 10:28:12 -05:00
Dax Raad
9cf3e651ca
ci
2026-01-30 10:26:55 -05:00
Dax Raad
e0b60d9f34
ci
2026-01-30 10:25:10 -05:00
Dax Raad
3f57f4913d
ci
2026-01-30 10:23:19 -05:00
Dax Raad
b9e9c8c763
ci
2026-01-30 10:21:47 -05:00
Dax Raad
0d53f34c43
ci
2026-01-30 10:20:49 -05:00
Dax Raad
0a0b54aa4b
ci
2026-01-30 10:15:45 -05:00
Dax Raad
4a4fc48ee8
ci
2026-01-30 10:12:29 -05:00
Dax Raad
5e823fd208
ci
2026-01-30 10:11:05 -05:00
Dax Raad
ad5d495b2c
ci
2026-01-30 10:09:27 -05:00
Dax Raad
abb87eac8f
ci
2026-01-30 10:08:28 -05:00
Dax Raad
a530c1b5b6
ci
2026-01-30 10:02:05 -05:00
Dax Raad
601744eacd
sync
2026-01-30 09:58:54 -05:00
Dax Raad
97a428cf69
ci
2026-01-30 09:57:17 -05:00
Dax Raad
698cf6dfc1
ci
2026-01-30 09:56:21 -05:00
Dax Raad
9493316502
ci
2026-01-30 09:56:06 -05:00
Dax Raad
08fa7f7188
ci
2026-01-30 09:36:57 -05:00
Aiden Cline
11d486707c
fix: rm ai sdk middleware that was preventing <think> blocks from being sent back as assistant message content ( #11270 )
...
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
2026-01-30 09:36:57 -05:00
opencode
71e0ba271f
release: v1.1.45
2026-01-30 14:32:22 +00:00
Dax Raad
d58661d4fb
ci
2026-01-30 01:15:24 -05:00
Dax Raad
09f4ef8996
ci
2026-01-30 00:56:45 -05:00
Dax Raad
1794319a4c
ci
2026-01-30 00:48:08 -05:00
Dax Raad
8f53794017
ci
2026-01-30 00:46:12 -05:00
Dax Raad
48d6d72e25
ci
2026-01-30 00:44:58 -05:00
Dax Raad
5bef8e316a
ci
2026-01-30 00:43:36 -05:00
Dax Raad
08f11f4da6
ci
2026-01-30 00:39:49 -05:00
Dax Raad
9e0747c9b4
ci
2026-01-30 00:39:23 -05:00
Dax Raad
66ec378680
ci
2026-01-30 00:27:51 -05:00
Dax Raad
015eda36ce
ci
2026-01-30 00:25:52 -05:00
Dax Raad
e666ddb630
ci
2026-01-30 00:23:52 -05:00
Dax Raad
da7f45bd4c
ci
2026-01-30 00:21:30 -05:00
Dax Raad
273e7b8379
ci
2026-01-30 00:18:50 -05:00
Dax Raad
36041c0000
ci
2026-01-30 00:15:21 -05:00
Dax Raad
b5e5d4c92f
ci
2026-01-30 00:10:44 -05:00
Dax Raad
b109ab7830
ci
2026-01-30 00:07:56 -05:00
Dax Raad
b28891473f
ci
2026-01-30 00:05:05 -05:00
Dax Raad
5d0122b5a9
ci
2026-01-30 00:04:51 -05:00
Dax Raad
1ab4bbc275
ci
2026-01-29 23:58:39 -05:00
Dax Raad
908350c2ea
ci
2026-01-29 23:56:56 -05:00
Dax Raad
3fef490187
ci
2026-01-29 23:55:48 -05:00
Dax Raad
3ac05201c6
ci
2026-01-29 23:52:08 -05:00
Dax Raad
2d3c7a0f24
ci
2026-01-29 23:49:53 -05:00
Dax Raad
cd664a189b
ci
2026-01-29 23:17:57 -05:00
Dax Raad
849f488744
ci
2026-01-29 23:15:12 -05:00
Dax Raad
5ea1042ffb
ci
2026-01-29 23:13:07 -05:00
Dax Raad
71d280d570
ci: fix container build script
...
Invoke docker build with Bun shell so commands run correctly, and document default automation behavior.
2026-01-29 23:10:50 -05:00
Dax Raad
5cfb5fdd06
ci: add container build workflow
...
Add prebuilt build images and a publish workflow to speed CI by reusing heavy dependencies.
2026-01-29 23:07:58 -05:00
Dax Raad
30969dc33e
ci: cache apt packages to reduce CI build times on ubuntu
2026-01-29 21:51:53 -05:00
adamelmore
5f282c268d
fix(app): free model layout
2026-01-29 20:44:38 -06:00
Dax Raad
d3d6e7e275
sync
2026-01-29 21:35:24 -05:00
adamelmore
a70c66eb3f
fix(app): free model scroll
2026-01-29 20:26:35 -06:00
adamelmore
60de810d9a
fix(app): dialog not closing
2026-01-29 20:26:35 -06:00
Dax Raad
95309c2149
fix(beta): use local git rebase instead of gh pr update-branch
2026-01-29 21:25:27 -05:00
Dax Raad
e9e8d97b0d
ci
2026-01-29 21:23:03 -05:00
Dax Raad
553316af2a
ci
2026-01-29 21:19:00 -05:00
Dax Raad
f27ee4674a
ci
2026-01-29 20:59:33 -05:00
Rahul A Mistry
ad91f9143a
fix(app): version to latest to avoid errors for new devs ( #11201 )
2026-01-29 19:42:59 -06:00
Filip
b43a35b737
test(app): test for toggling model variant ( #11221 )
2026-01-29 19:05:31 -06:00
Dax Raad
03803621db
ci
2026-01-29 19:35:52 -05:00
Dax Raad
81326377f2
ci: trigger publish workflow automatically after beta builds complete
2026-01-29 19:35:05 -05:00
Dax Raad
7ed6f690e9
ci
2026-01-29 19:34:12 -05:00
Dax Raad
1f3bf56640
ci: upgrade bun cache to stickydisk for faster ci builds
2026-01-30 00:31:06 +00:00
opencode
bbc7bdb3fd
release: v1.1.43
2026-01-30 00:31:06 +00:00
Dax Raad
a5c01a81ff
ci
2026-01-29 19:08:48 -05:00
Dax Raad
4f4694d9e3
ci
2026-01-29 19:03:07 -05:00
Dax Raad
4c82ad6280
ci
2026-01-29 19:00:52 -05:00
Dax Raad
b35265823c
ci
2026-01-29 18:59:15 -05:00
Github Action
8ce19f8cca
chore: update nix node_modules hashes
2026-01-29 23:19:19 +00:00
Mikhail Levchenko
b5ffa997da
feat(config): add managed settings support for enterprise deployments ( #6441 )
...
Co-authored-by: Dax <mail@thdxr.com >
2026-01-29 22:56:25 +00:00
Aiden Cline
75166a1961
fix: use ?? to prevent args being undefined for mcp server in some cases ( #11203 )
2026-01-29 22:00:12 +00:00
Frank
6cc739701b
zen: kimi k2.5 free ( #11199 )
2026-01-29 21:28:54 +00:00
Dax
2125dc11c7
fix: show all provider models when no providers connected ( #11198 )
2026-01-29 21:19:50 +00:00
Filip
aa1d0f6167
fix(app): better header item wrapping ( #10831 )
2026-01-29 14:51:56 -06:00
Mert Can Demir
fdd484d2c1
feat: expose acp thinking variants ( #9064 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-01-29 20:15:36 +00:00
Dax
cd4075faf6
feat: add beta branch sync workflow for contributor PRs ( #11190 )
2026-01-29 20:02:36 +00:00
Dax
33311e9950
ci: remove push triggers from workflow files ( #11186 )
2026-01-29 19:25:05 +00:00
Dax
a92b7923c2
ci: disable nix-desktop workflow ( #11188 )
2026-01-29 19:16:26 +00:00
Dax
cf5cf7b23e
chore: consolidate and standardize workflow files ( #11183 )
2026-01-29 19:04:12 +00:00
Dax
a9a7595234
test: skip failing tests ( #11184 )
2026-01-29 18:57:59 +00:00
Dax
9ed3b0742f
ci ( #11149 )
...
Co-authored-by: opencode <opencode@sst.dev >
2026-01-29 13:17:55 -05:00
GitHub Action
ae9199e101
chore: generate
2026-01-29 18:14:15 +00:00
Aiden Cline
f996e05b42
chore: format code
2026-01-29 12:13:29 -06:00
Aiden Cline
8dedb3f4ae
chore: regen sdk
2026-01-29 11:49:22 -06:00
Spoon
45ec3105b1
feat: support config skill registration ( #9640 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-01-29 11:47:06 -06:00
Frank
5a56e8172f
zen: m2.1 and glm4.7 free models
2026-01-29 12:29:23 -05:00
Aiden Cline
aa92ef37fd
tweak: add 'skill' to permissions config section so that ides will show it as autocomplete option (this is already a respected setting)
2026-01-29 10:55:39 -06:00
Goni Zahavy
d5c59a66c1
ci: added gh workflow that adds 'contributor' label to PRs/Issues ( #11118 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-01-29 10:38:08 -06:00
Aiden Cline
301895c7f7
fix: ensure kimi k2.5 from fireworks ai and kimi for coding providers properly set temperature
2026-01-29 10:30:22 -06:00
Ravi Kumar
03ba49af4e
fix(telemetry): restore userId and sessionId metadata in experimental_telemetry ( #8195 )
2026-01-29 10:14:28 -06:00
GitHub Action
008ad54cb5
ignore: update download stats 2026-01-29
2026-01-29 12:07:50 +00:00
Ryan Vogel
571751c313
fix: remove redundant Highlights heading from publish template ( #11121 )
2026-01-29 06:16:45 -05:00
Github Action
82717f6e8b
chore: update nix node_modules hashes
2026-01-29 07:12:38 +00:00
GitHub Action
c946f5f7eb
chore: generate
2026-01-29 07:10:34 +00:00
Hegyi Áron Ferenc
2af326606c
feat(desktop): Add desktop deep link ( #10072 )
...
Co-authored-by: Brendan Allan <git@brendonovich.dev >
2026-01-29 15:09:53 +08:00
opencode
7c0067d59d
release: v1.1.42
2026-01-29 05:59:07 +00:00
Aiden Cline
92eb982863
fix: undo change that used anthropic messages endpoint for anthropic models on copilot due to ratelimiting issues, go back to completions endpoint instead
2026-01-28 23:52:23 -06:00
Aiden Cline
33c5c100ff
fix: frontmatter was adding newlines in some cases causing invalid model ids ( #11095 )
...
Co-authored-by: aptdnfapt <aptdnfapt@users.noreply.github.com >
2026-01-28 23:40:59 -06:00
Aiden Cline
0fabdccf11
fix: ensure that kimi doesnt have fake variants available
2026-01-28 23:40:44 -06:00
Sebastian Herrlinger
41ea4694db
more timeout race guards
2026-01-29 00:17:39 -05:00
Ariane Emory
e84d92da28
feat: Sequential numbering for forked session titles (Issue #10105 ) ( #10321 )
2026-01-28 23:08:35 -06:00
Sebastian Herrlinger
58ba486375
guard destroyed input field in timeout
2026-01-28 23:53:37 -05:00
Aiden Cline
121016af81
ci: adjust team
2026-01-28 22:28:48 -06:00
Benjamin Oldenburg
f40bdd1ac3
feat(cli): include cache tokens in stats ( #10582 )
2026-01-28 22:03:44 -06:00
GitHub Action
efc9303b27
chore: generate
2026-01-29 04:03:01 +00:00
Aiden Cline
b938e1ea99
test: fix test
2026-01-28 22:02:14 -06:00
opencode
9cfdbbb1af
release: v1.1.41
2026-01-29 04:00:39 +00:00
Aiden Cline
29ea9fcf25
fix: ensure variants for copilot models work w/ maxTokens being set
2026-01-28 21:55:50 -06:00
ideallove
870c38a6aa
fix: maxOutputTokens was accidentally hardcoded to undefined ( #10995 )
2026-01-28 21:28:15 -06:00
Saba Tchikhinashvili
b937fe9450
fix(provider): include providerID in SDK cache key ( #11020 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 21:26:26 -06:00
tan
427ef95f7d
fix(opencode): allow media-src data: URL for small audio files ( #11082 )
2026-01-28 21:21:49 -06:00
GitHub Action
d8fe12aafc
chore: generate
2026-01-29 03:21:26 +00:00
Devin Griffin
a7d7f5bb07
fix(app): make settings more responsive for mobile and small web/desktop ( #10775 )
2026-01-28 21:20:34 -06:00
Babou
8cdb82038a
docs: update experimental environment variables in CLI docs ( #11030 )
2026-01-28 20:20:13 -06:00
Brendan Allan
a9e757b5bb
fix(app): types
2026-01-29 10:14:42 +08:00
Aiden Cline
4d2696e027
tweak: add ctx.abort to grep tool
2026-01-28 20:06:36 -06:00
Alex Yaroshuk
0c8de47f7d
fix(app): file tabs - auto scroll on open & scroll via mouse wheel ( #11070 )
2026-01-28 19:45:12 -06:00
Julian Coy
7ad165fbdc
fix(typescript errors): remove duplicate keys causing typescript failures ( #11071 )
2026-01-28 19:41:50 -06:00
Goni Zahavy
e5b33f8a5e
fix(opencode): add AbortSignal support to Ripgrep.files() and GlobTool ( #10833 )
2026-01-28 18:47:09 -06:00
Max Kong
90a7e3d64e
fix(ui): improve zh duration display formatting ( #10844 )
2026-01-28 16:53:37 -06:00
Max Kong
33dc70b754
fix(opencode): normalize zh punctuation for Chinese UI ( #10842 )
2026-01-28 16:52:04 -06:00
GitHub Action
832bbba616
chore: generate
2026-01-28 22:51:20 +00:00
Max Kong
40d5d14304
fix(app): fill missing zh keys to avoid English fallback ( #10841 )
2026-01-28 16:50:50 -06:00
Alex Yaroshuk
36df0d823a
fix(app): alignment and padding in dialogs ( #10866 )
2026-01-28 16:50:00 -06:00
zerone0x
9424f829eb
fix(ui): allow KaTeX inline math to be followed by punctuation ( #11033 )
2026-01-28 16:44:35 -06:00
GitHub Action
7b561be159
chore: generate
2026-01-28 22:35:01 +00:00
Ryan Vogel
c60464de07
fix(script): remove highlights template from release notes ( #11052 )
2026-01-28 17:34:14 -05:00
opencode
4e41ca74b9
release: v1.1.40
2026-01-28 20:09:37 +00:00
Tommy D. Rossi
8c05eb22b1
fix(markdown): Add streaming prop to markdown element ( #11025 )
2026-01-28 12:55:57 -05:00
adamelmore
f607353be6
fix(app): close review pane
2026-01-28 10:27:01 -06:00
GitHub Action
af3c97f192
chore: generate
2026-01-28 16:12:32 +00:00
RenegadeE
26e14ce628
fix: add SubtaskPart with metadata reference ( #10990 )
...
Co-authored-by: yangtianzhe <yangtianzhe@corp.netease.com >
2026-01-28 11:11:43 -05:00
Sairaj
57ad1814e3
fix(desktop): enable ctrl+n and ctrl+p for popover navigation ( #10777 )
2026-01-28 08:12:27 -06:00
GitHub Action
4f60ea6108
chore: generate
2026-01-28 14:11:30 +00:00
Nattawee Phantawong
775d288027
feat(i18n): add th locale support ( #10809 )
2026-01-28 08:10:50 -06:00
GitHub Action
bc4968abbb
chore: generate
2026-01-28 13:28:52 +00:00
adamelmore
acb92fcd34
chore: cleanup
2026-01-28 07:28:03 -06:00
adamelmore
c9bbea4266
chore: cleanup
2026-01-28 07:28:03 -06:00
adamelmore
65e1186efe
wip(app): global config
2026-01-28 07:28:03 -06:00
adamelmore
8faa2ffcf8
chore: cleanup
2026-01-28 07:28:02 -06:00
adamelmore
bdfd8f8b0f
feat(app): custom provider
2026-01-28 07:28:02 -06:00
adamelmore
2f35c40bb5
chore(app): global config changes
2026-01-28 07:28:02 -06:00
GitHub Action
6650aa6f35
ignore: update download stats 2026-01-28
2026-01-28 12:05:45 +00:00
Aiden Cline
8798a77a72
bump: plugins
2026-01-28 07:19:18 +00:00
opencode
6eb2bdd665
release: v1.1.39
2026-01-28 07:19:17 +00:00
GitHub Action
f97197bdb0
chore: generate
2026-01-28 07:05:16 +00:00
Aiden Cline
5a0b3ee673
fix: ensure copilot plugin properly sets headers for new messages api
2026-01-28 02:04:30 -05:00
opencode
3bb10773e6
release: v1.1.38
2026-01-28 06:42:23 +00:00
Aiden Cline
558590712d
fix: ensure parallel tool calls dont double load AGENTS.md
2026-01-28 01:38:10 -05:00
Dax Raad
d76e1448f0
ci
2026-01-28 01:33:34 -05:00
Aiden Cline
026b3cc88d
bump plugin version
2026-01-28 01:31:01 -05:00
Aiden Cline
28e5557bf4
ignore: adjust flag
2026-01-28 01:09:31 -05:00
GitHub Action
9a8da20a97
chore: generate
2026-01-28 06:05:21 +00:00
Goni Zahavy
63f5669eb5
fix(opencode): ensure unsub(PartUpdated) is always called in TaskTool ( #9992 )
2026-01-28 01:04:43 -05:00
Frank
427cc3e153
zen: kimi k2.5
2026-01-28 00:09:33 -05:00
Tito
aedd760141
fix(cli): restore brand integrity of CLI wordmark ( #10912 )
2026-01-27 22:24:02 -05:00
GitHub Action
6da9fb8fb9
chore: generate
2026-01-28 03:10:48 +00:00
James Murdza
b73e0240a5
docs: add Daytona OpenCode plugin to ecosystem ( #10917 )
2026-01-27 22:09:55 -05:00
GitHub Action
5f2a7c630b
chore: generate
2026-01-28 03:06:58 +00:00
Tommy D. Rossi
7988f52231
feat(app): use opentui markdown component behind experimental flag ( #10900 )
2026-01-27 22:06:09 -05:00
opencode
e3be4c9f23
release: v1.1.37
2026-01-28 02:35:38 +00:00
adamelmore
d9741866c5
fix(app): reintroduce review tab
2026-01-27 20:24:27 -06:00
Rohan Godha
898118bafb
feat: support headless authentication for chatgpt/codex ( #10890 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
2026-01-27 19:05:52 -05:00
adamelmore
b4a9e1b190
fix(app): auto-scroll
2026-01-27 17:48:58 -06:00
Alex Yaroshuk
15ffd3cba1
feat(app): add 'connect provider' button to the manage models dialog ( #10887 )
2026-01-27 17:26:15 -06:00
adamelmore
df7f9ae3f4
fix(app): terminal corruption
2026-01-27 16:51:57 -06:00
adamelmore
d17ba84ee1
fix(app): file tree not always loading
2026-01-27 16:13:11 -06:00
adamelmore
5c8580a187
test(app): fix outdated e2e test
2026-01-27 16:11:58 -06:00
adamelmore
13b2587e96
test(app): fix outdated e2e test
2026-01-27 15:59:01 -06:00
adamelmore
605e533558
fix(app): file tree not always loading
2026-01-27 15:59:01 -06:00
adamelmore
33d400c567
fix(app): spinner color
2026-01-27 15:59:01 -06:00
Aiden Cline
b8e726521d
fix(tui): handle 4-5 codes too in c to copy logic
2026-01-27 16:29:01 -05:00
Github Action
95632d893b
chore: update nix node_modules hashes
2026-01-27 21:28:23 +00:00
adamelmore
1d5ee3e587
fix(app): not auto-navigating to last project
2026-01-27 15:25:07 -06:00
adamelmore
e5b18674f9
feat(desktop): tauri locales
2026-01-27 15:25:07 -06:00
adamelmore
51edf68606
feat(desktop): i18n for tauri side
2026-01-27 15:25:07 -06:00
adamelmore
acf0df1e98
chore: cleanup
2026-01-27 15:25:07 -06:00
adamelmore
842f17d6d9
perf(app): better memory management
2026-01-27 15:25:07 -06:00
adamelmore
1ebf63c70c
fix(app): don't connect to localhost through vpn
2026-01-27 15:25:06 -06:00
adamelmore
d7948c2376
fix(app): auto-scroll
2026-01-27 15:25:06 -06:00
adamelmore
892113ab39
chore(app): show 5 highlights
2026-01-27 15:25:06 -06:00
David Hill
f2bf620206
fix(app): highlight selected change
...
Track clicked file in the Changes tree and apply selection styling to the matching review diff.
2026-01-27 20:22:05 +00:00
David Hill
00c7729658
fix(app): set filetree padding to 6px
2026-01-27 20:13:52 +00:00
David Hill
18d6c2191c
fix(app): align filetree change styling
2026-01-27 20:13:52 +00:00
David Hill
d15201d11d
fix(app): delay nav tooltips
2026-01-27 20:13:52 +00:00
David Hill
1fffbc6fb3
fix(app): adjust titlebar left spacing
2026-01-27 20:13:52 +00:00
David Hill
2ca69ac953
fix(app): shorten nav tooltips
2026-01-27 20:13:52 +00:00
David Hill
8ee5376f9b
feat(app): add filetree tooltips with diff labels
2026-01-27 20:13:52 +00:00
David Hill
82068955f7
feat(app): color filetree change dots by diff kind
2026-01-27 20:13:52 +00:00
Frank
df8b23db9e
Revert "Set temperature for kimi k2.5"
...
This reverts commit bb63d16fa8 .
2026-01-27 14:48:08 -05:00
Frank
2649dcae7f
Revert "ci: make tests passing a requirement pre-release"
...
This reverts commit 8c00818108 .
2026-01-27 14:37:33 -05:00
Frank
bb63d16fa8
Set temperature for kimi k2.5
2026-01-27 14:13:21 -05:00
Aiden Cline
32ce0f4b0d
tweak: add recommended topP/temp for kimi k2.5
2026-01-27 12:43:30 -05:00
GitHub Action
6284565de2
chore: generate
2026-01-27 17:42:26 +00:00
adamelmore
7de42ca242
feat(app): improved layout
2026-01-27 11:40:39 -06:00
adamelmore
e2c57735b4
fix(app): session diffs not always loading
2026-01-27 11:38:37 -06:00
adamelmore
07d84fe008
feat(app): show loaded agents.md files
2026-01-27 11:38:37 -06:00
adamelmore
b9edd23608
test(app): new e2e smoke tests
2026-01-27 11:38:36 -06:00
adamelmore
06e3c4a4f2
chore(app): translations
2026-01-27 11:38:36 -06:00
adamelmore
2f5a238b51
feat(app): update settings in general settings
2026-01-27 11:38:35 -06:00
Frank
173faca3c6
zen: kimi k2.5 and minimax m2.1
2026-01-27 12:07:00 -05:00
Aiden Cline
8c00818108
ci: make tests passing a requirement pre-release
2026-01-27 11:31:02 -05:00
Aiden Cline
f12f7e7718
tweak: adjust retry check to be more defensive
2026-01-27 11:31:02 -05:00
OpeOginni
0aa93379bd
chore(docs): Better explanation on how to allow tools in external directories ( #10862 )
2026-01-27 11:00:10 -05:00
GitHub Action
dbc8d7edca
chore: generate
2026-01-27 15:59:54 +00:00
dpuyosa
d8e7e915e2
feat(opencode): Handle Venice cache creation tokens ( #10735 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-01-27 10:59:12 -05:00
adamelmore
712d2b7d15
fix(app): swallow file search errors
2026-01-27 08:43:38 -06:00
adamelmore
00e79210e5
fix(app): tooltips causing getComputedStyle errors in model select
2026-01-27 08:43:38 -06:00
adamelmore
099ab929db
chore(app): cleanup tailwind vs pure css
2026-01-27 08:43:37 -06:00
adamelmore
eac2d4c699
fix(app): navigate to tabs when opening file
2026-01-27 08:43:37 -06:00
adamelmore
3297e5230e
fix(app): open markdown links in external browser
2026-01-27 08:43:36 -06:00
adamelmore
c3d8d2b27f
Revert "fix(app): select model anchor"
...
This reverts commit 36babf5fc390fd9a892ad3742690740296d94a23.
2026-01-27 08:43:36 -06:00
adamelmore
19c7874493
fix(app): select model anchor
2026-01-27 08:43:36 -06:00
adamelmore
27bb82761b
perf(app): shared terminal ghostty-web instance
2026-01-27 08:43:36 -06:00
adamelmore
c7e2f1965d
perf(app): cleanup connect provider timers
2026-01-27 08:43:35 -06:00
adamelmore
3e420bf8e1
perf(app): don't keep parts in memory
2026-01-27 08:43:35 -06:00
adamelmore
ad624f65ee
fix(app): don't show session skeleton after workspace reset
2026-01-27 08:43:34 -06:00
David Hill
c68261fc06
fix(ui): add max-width 280px to tabs with text truncation
2026-01-27 14:04:10 +00:00
David Hill
2d0049f0d9
fix(app): use smaller close icon on tabs to match comment cards
2026-01-27 14:04:10 +00:00
David Hill
52387e7f33
fix(app): only show left border on plus button when sticky
2026-01-27 14:04:10 +00:00
David Hill
ebfa2b57da
fix(app): update review empty states to 14px and align select file empty state
2026-01-27 14:04:10 +00:00
David Hill
03b9317f49
fix(app): center filetree empty state with 32px top margin
2026-01-27 14:04:10 +00:00
David Hill
3862b1aeda
fix(ui): set filetree tablist height to 48px with centered content
2026-01-27 14:04:10 +00:00
adamelmore
b4e0cdbe8e
docs(core): plugin tool context updates
2026-01-27 06:29:20 -06:00
adamelmore
095328faf4
fix(app): non-fatal error handling
2026-01-27 06:29:20 -06:00
adamelmore
743e83d9bf
fix(app): agent fallback colors
2026-01-27 06:29:19 -06:00
adamelmore
1f9313847f
feat(core): add worktree to plugin tool context
2026-01-27 06:29:19 -06:00
adamelmore
2180be2f3f
chore: cleanup
2026-01-27 06:29:19 -06:00
adamelmore
58b9b54600
feat(app): forward and back buttons
2026-01-27 06:29:18 -06:00
adamelmore
c0a5f85349
chore(app): missing tooltips
2026-01-27 06:29:18 -06:00
adamelmore
b6565c606e
fix(app): auto-scroll button sometimes sticks
2026-01-27 06:29:18 -06:00
GitHub Action
ddffb34b99
ignore: update download stats 2026-01-27
2026-01-27 12:05:48 +00:00
Brendan Allan
dd1624e30e
desktop: deduplicate tauri configs
2026-01-27 17:48:43 +08:00
adamelmore
213c0e18ab
fix(app): only show files in select dialog when clicking + tab
2026-01-26 20:07:50 -06:00
adamelmore
a8c18dba82
fix(core): expose Instance.directory to custom tools
2026-01-26 20:07:47 -06:00
Aiden Cline
6cf2c3e3db
fix: use Instance.directory instead of process.cwd() in read tool
2026-01-26 20:57:50 -05:00
Ryan Vogel
b59aec6f04
feat: add /learn command to extract session learnings to scoped AGENTS.md files ( #10717 )
2026-01-26 20:50:44 -05:00
Chris Yang
d9e8b2b65d
fix(desktop): disable magnification gestures on macOS ( #10605 )
2026-01-26 18:50:51 -06:00
Rahul A Mistry
7655f51e10
fix(app): add connect provier in model selector ( #10706 )
2026-01-26 18:46:04 -06:00
GitHub Action
e7c6267323
chore: generate
2026-01-27 00:45:43 +00:00
Fabio Martino
64a3661a32
docs: add Italian README ( #10732 )
2026-01-26 18:45:05 -06:00
Ryan Vogel
bf463aee04
feat(release): add highlights template to draft releases ( #10745 )
2026-01-26 19:37:54 -05:00
adamelmore
b24fd90fe8
test(app): file tree spec
2026-01-26 17:42:23 -06:00
adamelmore
6897bb7d02
chore: cleanup
2026-01-26 17:02:56 -06:00
adamelmore
8371ba5aec
chore: cleanup
2026-01-26 17:01:04 -06:00
adamelmore
36577479c5
fix(app): enable file watcher
2026-01-26 16:57:44 -06:00
adamelmore
bb178e9352
chore: cleanup
2026-01-26 16:57:43 -06:00
GitHub Action
4075f9e1ab
chore: generate
2026-01-26 22:49:23 +00:00
adamelmore
021d9d105e
fix(app): reactive file tree
2026-01-26 16:46:09 -06:00
adamelmore
b07d7cdb71
fix(app): file tree performance
2026-01-26 16:41:18 -06:00
adamelmore
77f11dfabe
chore: don't flip github draft release automatically
2026-01-26 16:30:19 -06:00
Aiden Cline
45b09c1465
tweak: when using messages api for copilot, attach anthropic beta headers
2026-01-26 17:17:54 -05:00
adamelmore
ccc7aa49c3
wip: highlights
2026-01-26 15:36:59 -06:00
adamelmore
53ac394c68
wip: highlights
2026-01-26 15:36:59 -06:00
adamelmore
8b6484ac1a
wip: highlights
2026-01-26 15:36:56 -06:00
adamelmore
c1e840b9b2
chore: cleanup
2026-01-26 15:35:09 -06:00
David Hill
a77df3c174
wip: new release modal
...
- highlight key updates or new features
- needs some transition love
- all copy including text and video placeholder
2026-01-26 15:35:09 -06:00
David Hill
9d1cf98192
fix: search clear icon
2026-01-26 15:35:09 -06:00
adamelmore
7b3d5f1d68
chore: cleanup
2026-01-26 15:30:01 -06:00
GitHub Action
b21f82f5b0
chore: generate
2026-01-26 21:24:09 +00:00
adamelmore
d82e94c209
fix(app): zen disconnect not working
2026-01-26 15:23:25 -06:00
adamelmore
cbe8f265b9
fix(app): disconnect zen provider
2026-01-26 15:23:24 -06:00
Aiden Cline
8b5dde5536
tweak: retry logic to catch certain provider problems
2026-01-26 16:12:41 -05:00
Aiden Cline
6a62b44593
ci: add dry-run option to stale PR closer workflow
...
Allows testing stale PR closure without actually closing PRs
2026-01-26 15:42:50 -05:00
Aiden Cline
c700b928e4
ci: add stale pr job
2026-01-26 15:38:40 -05:00
adamelmore
ae815cca3a
test(app): fix e2e test
2026-01-26 14:32:49 -06:00
David Hill
5a16d99b60
fix(app): disable tooltips in filetree tabs
2026-01-26 19:53:05 +00:00
David Hill
3f9b59c798
fix(app): move file tree toggle to right
2026-01-26 19:50:05 +00:00
David Hill
c6febd8ddd
fix(app): fade filetree guide lines on hover
2026-01-26 19:47:58 +00:00
David Hill
010ed55590
fix(app): dim non-deep filetree guide lines
2026-01-26 19:47:58 +00:00
David Hill
2be4598011
fix(app): reduce filetree folder indent
2026-01-26 19:47:58 +00:00
David Hill
99cd7f3468
fix(app): refine filetree row spacing and indent
2026-01-26 19:47:58 +00:00
David Hill
fca0825b71
fix(app): use medium font for filetree items
2026-01-26 19:47:58 +00:00
David Hill
9babdb80cf
fix(app): use chevron icons for filetree folders
2026-01-26 19:47:58 +00:00
David Hill
f4392e023a
fix(app): tighten filetree row spacing
2026-01-26 19:47:58 +00:00
David Hill
0e08c6c9fd
fix(app): adjust filetree panel padding
2026-01-26 19:47:58 +00:00
David Hill
0dcb850a7a
fix(ui): scope filetree pill tabs styling
2026-01-26 19:47:58 +00:00
David Hill
d9a61cd94c
feat(app): add Vercel AI Gateway provider description
2026-01-26 19:47:58 +00:00
David Hill
0f4a10f4a3
feat(app): add provider descriptions to settings
2026-01-26 19:47:58 +00:00
David Hill
c551f7e47b
fix(ui): reduce dialog transition in time to 150ms
2026-01-26 19:47:58 +00:00
David Hill
7962ff38b0
feat(app): add transition to command palette
2026-01-26 19:47:58 +00:00
David Hill
3ac11df66a
feat(app): add transition to select provider dialog
2026-01-26 19:47:57 +00:00
David Hill
7caf59b433
fix(ui): prevent double-close and fix dialog replacement
2026-01-26 19:47:57 +00:00
David Hill
92229b44f8
feat(ui): add optional transition animations to dialog
2026-01-26 19:47:57 +00:00
David Hill
0a572afd46
fix(app): style view all button with interactive color and margin
2026-01-26 19:47:57 +00:00
David Hill
ecd04a118a
feat(ui): add models icon and use in settings
2026-01-26 19:47:57 +00:00
David Hill
6f3d413472
feat(ui): add providers icon and use in settings
2026-01-26 19:47:57 +00:00
David Hill
7c96d704d3
fix(app): use default cursor for env provider text
2026-01-26 19:47:57 +00:00
David Hill
9346c1ae3f
fix(app): add hover text for env-connected providers
2026-01-26 19:47:57 +00:00
David Hill
e0e97e9d93
fix(app): set provider row height to 56px
2026-01-26 19:47:57 +00:00
David Hill
810bc012b6
fix(ui): update button styles and disconnect button size
2026-01-26 19:47:57 +00:00
GitHub Action
36b832880d
chore: generate
2026-01-26 19:37:41 +00:00
adamelmore
d4e3acf17e
fix(app): session sync issue
2026-01-26 13:36:36 -06:00
adamelmore
04337f6202
chore: cleanup
2026-01-26 13:03:34 -06:00
adamelmore
97aec21cb3
chore(app): missing i18n strings
2026-01-26 13:03:34 -06:00
adamelmore
319ad2a391
fix(app): session load cap
2026-01-26 12:58:51 -06:00
adamelmore
de3b654dcd
chore: refactor changelog
2026-01-26 12:51:35 -06:00
adamelmore
8b17ac656c
test(app): e2e test for sidebar nav
2026-01-26 12:51:35 -06:00
GitHub Action
18bfc740c8
chore: generate
2026-01-26 18:50:58 +00:00
Tim
837037cd04
fix: ensure openai 404 errors are retried ( #10590 )
2026-01-26 13:50:04 -05:00
adamelmore
b0f865eae5
chore: debug changelog
2026-01-26 12:21:27 -06:00
Aiden Cline
ac53a372b0
feat: use anthropic compat messages api for anthropic models through copilot
2026-01-26 13:18:08 -05:00
Aiden Cline
7795cae0b5
ignore: tweak ai deps
2026-01-26 13:18:08 -05:00
adamelmore
4c9d879624
Revert "fix(app): restore external link opening in system browser ( #10697 )"
...
This reverts commit 984518b1c0 .
2026-01-26 12:09:02 -06:00
adamelmore
3fdd08d66e
chore: fix changelog page
2026-01-26 11:58:02 -06:00
zerone0x
ec2ab639bb
fix(enterprise): add message navigation to share page desktop view ( #10071 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-26 12:32:16 -05:00
adamelmore
d05ed5ca83
chore(app): createStore over signals
2026-01-26 11:26:17 -06:00
adamelmore
37f1a1a4ef
chore: cleanup
2026-01-26 11:07:52 -06:00
adamelmore
b8e8d82323
chore: cleanup
2026-01-26 11:07:52 -06:00
adamelmore
801eb5d2cb
wip(app): file tree mode
2026-01-26 11:07:52 -06:00
adamelmore
ebeed03115
wip(app): file tree mode
2026-01-26 11:07:51 -06:00
Adam
d9eed4c6ca
feat(app): file tree
2026-01-26 11:07:51 -06:00
Ryan Vogel
7e34d27b77
fix: add 44px top padding to sticky version header on changelog ( #10715 )
2026-01-26 12:02:20 -05:00
Rahul A Mistry
783121c06e
fix(ui): use focus-visible instead of focus to prevent sticky hover effect on click ( #10651 )
2026-01-26 10:58:29 -06:00
Alex Yaroshuk
984518b1c0
fix(app): restore external link opening in system browser ( #10697 )
2026-01-26 10:57:49 -06:00
Sam Huckaby
7fcdbd155b
fix(app): Order themes alphabetically ( #10698 )
2026-01-26 10:55:43 -06:00
Ryan Vogel
5856ea4e75
fix: move changelog footer outside content div to fix padding ( #10712 )
2026-01-26 11:46:56 -05:00
Github Action
32a0dcedcb
chore: update nix node_modules hashes
2026-01-26 16:21:24 +00:00
Sebastian Herrlinger
f48784d152
upgrade opentui to v0.1.75
2026-01-26 11:17:26 -05:00
adamelmore
3dce6a6608
chore: gen changelog page off changelog json
2026-01-26 09:53:10 -06:00
Aiden Cline
39a73d4894
feat: dynamically resolve AGENTS.md files from subdirectories as agent explores them ( #10678 )
2026-01-26 10:49:41 -05:00
Steffen Deusch
b1fbfa7e94
feat(opencode): add agent description ( #10680 )
2026-01-26 10:43:10 -05:00
GitHub Action
805ae19c9a
chore: generate
2026-01-26 15:34:31 +00:00
adamelmore
fcea7e18a5
chore: stale-while-revalidate headers for changelog
2026-01-26 09:33:43 -06:00
adamelmore
7c34319b19
fix(app): query selector with non-latin chars
2026-01-26 09:33:42 -06:00
adamelmore
cd4676171b
feat(app): better sidebar hover when collapsed
2026-01-26 09:33:42 -06:00
adamelmore
7016be0739
wip(app): full-height sidebar
2026-01-26 09:33:42 -06:00
adamelmore
ff35db0360
wip(app): full-height sidebar
2026-01-26 09:33:42 -06:00
adamelmore
af3d8c383e
wip(app): sidebar hover full
2026-01-26 09:33:42 -06:00
GitHub Action
7f75f71f6b
chore: generate
2026-01-26 14:15:46 +00:00
adamelmore
84b12a8fb7
feat(app): model settings
2026-01-26 08:15:01 -06:00
adamelmore
1934ee13d8
wip(app): model settings
2026-01-26 08:15:01 -06:00
adamelmore
6c1e18f111
fix(app): line selection waits on ready
2026-01-26 08:15:00 -06:00
adamelmore
3296b90372
fix(app): handle non-tool call permissions
2026-01-26 08:15:00 -06:00
adamelmore
0d651eab3b
feat(app): default servers on web
2026-01-26 08:15:00 -06:00
Ariane Emory
0edd304f42
fix: Make diff wrapping toggle always available in command_list and correct a type error ( resolves #10682 ) ( #10683 )
2026-01-26 09:01:23 -05:00
Noam Bressler
6b83b172ae
fix: await SessionRevert.cleanup for shell ( #10669 )
2026-01-26 07:36:17 -05:00
Idris Gadi
444934a4c1
fix(tui): add visual feedback for diff wrap and conceal toggles ( #10655 )
2026-01-26 07:34:09 -05:00
adamelmore
c4f1087e58
chore: details
2026-01-26 06:24:47 -06:00
adamelmore
c87232d5df
perf(app): performance improvements
2026-01-26 06:08:09 -06:00
adamelmore
d03c5f6b3f
perf(app): performance improvements
2026-01-26 06:08:09 -06:00
GitHub Action
9a33b1ec88
ignore: update download stats 2026-01-26
2026-01-26 12:06:03 +00:00