Kit Langton
9fe4e2a7d4
prevent Effect.cached from caching loadGlobal failures
2026-03-25 17:05:49 -04:00
Kit Langton
d9cefe21f8
use Effect.cached for global config, remove resetGlobal
...
- Replace module-level _cachedGlobal with Effect.cached inside
the layer — concurrent getGlobal() callers share the same fiber
instead of racing
- Remove resetGlobal() facade — tests use invalidate() instead
- Document Effect.cached pattern in AGENTS.md and effect-migration.md
- Mark Config as done in migration checklist
2026-03-25 15:35:52 -04:00
Kit Langton
ddb95646ec
cleanup: remove dead code, fix types, simplify updateGlobal
...
- readConfigFile: use typed Effect.catchIf instead of (e as any) cast
- Remove dead readFile re-export (no callers)
- Remove inaccurate comments
- updateGlobal: replace unnecessary Effect.suspend with plain if/else
2026-03-25 15:23:45 -04:00
Kit Langton
5a49a4c108
fix migration regressions in Config effectification
...
- Schema write-back: restore silent failure (was .catch(() => {}),
accidentally changed to Effect.orDie which would crash on
read-only config files)
- Legacy TOML migration: move write+unlink back inside .then()
so they only run on successful import (old behavior)
- Account config: route through loadConfig instead of bypassing
it, preserving TUI key normalization
2026-03-25 15:18:59 -04:00
Kit Langton
d4648e726b
effectify Config service with AppFileSystem
...
Move all config operations (loadFile, loadConfig, loadState,
loadGlobal, update, updateGlobal, invalidate) inside the Effect
layer as Effect.fnUntraced closures over AppFileSystem.Service.
Facade functions are thin runPromise wrappers matching the
Account/Worktree pattern.
2026-03-25 15:15:01 -04:00
Kit Langton
d844e3aa25
rename instance context type
2026-03-25 15:14:42 -04:00
Kit Langton
c1df8a52c8
remove unused instance context service
2026-03-25 15:14:42 -04:00
Kit Langton
caae1d9902
inline global config load
2026-03-25 15:14:42 -04:00
Kit Langton
6ce3347e44
rename config global cache local
2026-03-25 15:14:41 -04:00
Kit Langton
b794601142
rename instance context shape
2026-03-25 15:14:41 -04:00
Kit Langton
29529b4891
simplify Config global cache handling
2026-03-25 15:14:41 -04:00
Kit Langton
30b51996d4
simplify Config effect runtime
2026-03-25 15:14:41 -04:00
Kit Langton
d284d8795d
effectify Config service
2026-03-25 15:14:41 -04:00
André Cruz
7123aad5a8
fix(opencode): classify ZlibError from Bun fetch as retryable instead of unknown ( #19104 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-25 13:08:40 -05:00
Aiden Cline
77fc88c8ad
chore: remove dead code for todoread tool ( #19128 )
publish-github-action / publish (push) Has been cancelled
2026-03-25 16:21:42 +00:00
Shoubhit Dash
73e107250d
feat: restore git-backed review modes with effectful git service ( #18900 )
2026-03-25 21:09:53 +05:30
Aiden Cline
ad40b65b0b
chore: bump modelcontextprotocol/sdk to 1.27.1 ( #19064 )
2026-03-25 10:00:39 -05:00
opencode-agent[bot]
971383661a
chore: generate
2026-03-25 14:48:44 +00:00
James Long
b0017bf1b9
feat(core): initial implementation of syncing ( #17814 )
2026-03-25 10:47:40 -04:00
Adam
1041ae91d1
Reapply "fix(app): startup efficiency"
...
This reverts commit 898456a25c .
2026-03-25 06:25:57 -05:00
Adam
898456a25c
Revert "fix(app): startup efficiency"
2026-03-25 06:25:05 -05:00
Adam
53d0b58ebf
fix(app): hash inline script for csp
2026-03-25 05:59:06 -05:00
Aiden Cline
71693cc24b
tweak: only spawn lsp servers for files in current instance (or cwd if instance is global) ( #19058 )
2026-03-25 00:31:29 -05:00
Dax
0a80ef4278
fix(opencode): avoid snapshotting files over 2MB ( #19043 )
2026-03-25 04:43:48 +00:00
Kit Langton
4647aa80ac
effectify Worktree service ( #18679 )
2026-03-24 20:26:21 -04:00
Kit Langton
50f6aa3763
fix(opencode): skip typechecking generated models snapshot ( #19018 )
2026-03-24 19:11:45 -04:00
opencode
0dcdf5f529
release: v1.3.2
2026-03-24 22:50:35 +00:00
Dax
15dc33d1a3
feat(tui): add heap snapshot functionality for TUI and server ( #19028 )
2026-03-24 18:20:11 -04:00
opencode
ec64ceabec
release: v1.3.1
2026-03-24 22:07:24 +00:00
Dax
56644be95a
fix(core): restore SIGHUP exit handler ( #16057 ) ( #18527 )
2026-03-24 17:42:58 -04:00
Kamil Jopek
00d3b831fc
feat: add Poe OAuth auth plugin ( #18477 )
2026-03-24 16:17:47 -05:00
opencode-agent[bot]
e837dcc1c5
chore: generate
2026-03-24 18:43:20 +00:00
Nicholas Hansen
024979f3fd
feat(bedrock): Add token caching for any amazon-bedrock provider ( #18959 )
2026-03-24 13:42:20 -05:00
Aiden Cline
5e684c6e80
chore: effectify agent.ts ( #18971 )
...
Co-authored-by: Kit Langton <kit.langton@gmail.com >
2026-03-24 18:15:23 +00:00
opencode-agent[bot]
8994cbfc0f
chore: generate
2026-03-24 18:05:43 +00:00
Kit Langton
539b01f20f
effectify Project service ( #18808 )
2026-03-24 14:04:22 -04:00
Ryan Skidmore
814a515a8a
fix: improve plugin system robustness — agent/command resolution, async errors, hook timing, two-phase init ( #18280 )
...
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
2026-03-24 12:50:55 -05:00
Vladimir Glafirov
9330bc5339
fix: route GitLab Duo Workflow system prompt via flowConfig ( #18928 )
2026-03-24 12:33:18 -05:00
opencode-agent[bot]
1d3232b388
chore: generate
2026-03-24 17:05:02 +00:00
Kit Langton
5c1bb5de86
fix: remove flaky cross-spawn spawner tests ( #18977 )
2026-03-24 13:04:04 -04:00
Kit Langton
41c77ccb33
fix: restore cross-spawn behavior for effect child processes ( #18798 )
2026-03-24 10:35:24 -04:00
Sebastian
d3debc191f
manually lock/unlock theme mode ( #18905 )
2026-03-24 10:00:19 +01:00
Vladimir Glafirov
f1340472ec
chore: bump gitlab-ai-provider to 5.3.1 for GPT-5.4 model support ( #18849 )
2026-03-23 22:00:36 -05:00
Sebastian
ad78b79b8a
use renderer theme mode to switch dark/light mode ( #18851 )
2026-03-24 00:32:48 +01:00
opencode-agent[bot]
9a006d8700
chore: generate
2026-03-23 17:12:55 +00:00
Kit Langton
3a0bf2f39f
fix console account URL handling ( #18809 )
2026-03-23 13:11:38 -04:00
Aiden Cline
691644eeeb
tweak: add back setting user agent in requests ( #18795 )
2026-03-23 15:34:59 +00:00
Abhishek Keshri
4aebaaf067
feat(tui): add syntax highlighting for kotlin, hcl, lua, toml ( #18198 )
2026-03-23 16:15:24 +01:00
James Long
84d9b38873
fix(core): fix file watcher test ( #18698 )
2026-03-23 03:35:17 +00:00
Sebastian
71e7603d71
Upgrade opentui to 0.1.90 ( #18551 )
2026-03-23 01:45:34 +01:00