Aiden Cline
67b2454d3e
fix(mcp): apply timeouts to prompts and resources ( #31612 )
2026-06-09 23:58:40 -05:00
Aiden Cline
f79463799e
fix(mcp): make client creation failure-safe ( #31595 )
2026-06-09 23:24:41 -05:00
Aiden Cline
487901674b
refactor(mcp): simplify service helpers ( #31549 )
2026-06-09 16:59:24 -05:00
James Long
ede70549ff
feat(opencode): add typed application layer graph ( #31531 )
2026-06-09 15:31:31 -04:00
Dax
6bfae48c77
fix(opencode): restore effect error logging ( #31551 )
2026-06-09 19:09:04 +00:00
Aiden Cline
b750fb79b6
fix(mcp): log actionable connection statuses ( #31544 )
2026-06-09 13:07:56 -05:00
Aiden Cline
68e50b6e98
fix(opencode): pass abort signal to MCP tool calls ( #31455 )
2026-06-08 22:47:05 -05:00
Aiden Cline
84294d0fc8
fix(opencode): paginate MCP catalogs ( #31442 )
2026-06-08 22:43:55 -05:00
opencode-agent[bot]
d8fd4cc4e4
chore: generate
2026-06-08 19:43:41 +00:00
Dax
a5ddb7f291
refactor(core): replace legacy logger with Effect logging ( #31310 )
2026-06-08 15:41:56 -04:00
Aiden Cline
d50244e671
fix(opencode): respect MCP server capabilities ( #31271 )
2026-06-07 21:24:41 -05:00
Dax
93316f1fae
refactor(server): canonicalize service API ( #31049 )
2026-06-07 03:27:28 +00:00
Dax
fbda5fadda
refactor(core): move v1 schemas into core ( #30473 )
2026-06-03 02:42:13 +00:00
Dax
7a9068f029
refactor(core): consolidate filesystem services ( #30447 )
2026-06-02 16:09:26 -04:00
Dax
e2a8e18298
refactor(core): move database schema ownership ( #29068 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
2026-05-30 21:08:38 -04:00
Shoubhit Dash
ff739485b2
fix(opencode): serialize mcp auth mutations ( #29852 )
2026-05-29 14:50:15 +05:30
Aiden Cline
322f0d493f
fix(opencode): disconnect dynamically added mcp servers ( #29452 )
2026-05-26 18:28:03 -05:00
Kit Langton
615a8511d6
test(opencode): simplify config effect tests ( #29019 )
2026-05-23 23:48:08 +00:00
opencode-agent[bot]
0470ac373a
chore: generate
2026-05-22 12:17:49 +00:00
Shoubhit Dash
e3445de70e
fix(httpapi): return mcp server not found errors ( #28817 )
2026-05-22 17:46:30 +05:30
opencode-agent[bot]
e267afe932
chore: generate
2026-05-22 11:42:14 +00:00
Sebin
063fbaf008
fix(mcp): include scope in clientMetadata and add callbackPort option ( #28810 )
...
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
2026-05-22 17:10:38 +05:30
Kit Langton
f44c9ebba2
chore: drop dead imports across opencode/core/llm ( #28720 )
2026-05-21 17:03:12 -04:00
Kit Langton
65d8951700
refactor(opencode): roll out serviceUse proxy across 14 services + tests ( #28576 )
2026-05-21 03:36:27 +00:00
Kit Langton
e4fded27a8
Remove local MCP Zod schema ( #27095 )
2026-05-12 12:38:27 -04:00
Kit Langton
2296db6be8
Remove Zod from named errors ( #26982 )
2026-05-12 09:20:15 -04:00
Kit Langton
63538907de
Migrate runtime validators to Effect Schema ( #26975 )
2026-05-11 21:41:56 -04:00
Kit Langton
693e9d3450
Drop unused opencode Zod statics ( #26935 )
2026-05-11 17:14:18 -04:00
Kit Langton
3b8b89c5ca
fix(mcp): tolerate output schema ref failures ( #26614 )
2026-05-09 22:03:59 -04:00
Dax
4ae8dd80c3
Move schema utilities into core ( #26565 )
2026-05-09 19:51:09 +00:00
Luke Parker
5a7c042d63
fix: handle invalid mcp urls ( #25019 )
2026-04-30 09:32:26 +10:00
Dax
07ac891a99
refactor: remove module barrels ( #24554 )
2026-04-27 14:33:33 -04:00
Kit Langton
f104ed2f16
feat(httpapi): bridge experimental read endpoints ( #24365 )
2026-04-25 14:46:06 -04:00
Dax Raad
6742034b03
core: move cross-spawn-spawner to root and remove unused types
...
The cross-spawn-spawner module has been moved from src/effect/ to src/
to simplify the core package structure. The src/types.d.ts file which
contained unused type declarations has also been removed. All imports
throughout the codebase have been updated to reflect the new location.
This change reduces the package's internal complexity by flattening the
module hierarchy and removing dead code, making future maintenance easier.
2026-04-25 14:30:16 -04:00
Dax Raad
7b2fbf2c2f
core: move cross-spawn-spawner from opencode to core package
...
Moved the cross-spawn-spawner module from packages/opencode to packages/core
to enable code sharing across the monorepo. This consolidates the process
spawning infrastructure into the core package so other packages can use
cross-platform child process spawning without duplicating the implementation.
Updated all import statements across the codebase to reference the new
location (@opencode-ai/core/effect/cross-spawn-spawner). Removed the
local copy from the opencode package along with its tests.
2026-04-25 14:23:17 -04:00
Dax Raad
9031b8f108
core: move Global module to @opencode-ai/core for centralized path management
...
Move the Global module from packages/opencode/src/global to packages/core/src/global
to provide a unified location for managing XDG directories and application paths.
This eliminates duplicate path definitions across packages and ensures consistent
access to data, config, cache, state, log, and bin directories throughout the codebase.
2026-04-25 13:52:32 -04:00
Dax Raad
6bc94f94b1
core: consolidate shared infrastructure into core package
...
Moves effect logging, observability, runtime utilities, flags, installation
version info, and process utilities from opencode to core package. This
enables better code sharing across packages and establishes core as the
single source of truth for foundational utilities.
All internal imports updated to use @opencode-ai/core paths for consistency.
2026-04-25 13:30:37 -04:00
Dax
1865f4fc5f
refactor: rename shared package to core ( #24309 )
2026-04-25 10:59:17 -04:00
Kit Langton
9e83b30f15
feat(httpapi): bridge mcp status endpoint ( #24100 )
2026-04-24 09:18:57 -04:00
Kit Langton
b416f9d3b9
refactor(bus): migrate BusEvent to Effect Schema ( #24040 )
2026-04-23 15:37:44 -04:00
Kit Langton
9ff289fe66
refactor: use instance state in small services ( #23022 )
2026-04-18 02:16:15 +00:00
Kit Langton
b638e7ef47
refactor: unwrap McpAuth namespace + self-reexport ( #22942 )
2026-04-17 00:01:12 +00:00
Kit Langton
d5d638460c
refactor: unwrap McpOAuthCallback namespace + self-reexport ( #22943 )
2026-04-17 00:00:46 +00:00
Kit Langton
4366fd7a14
refactor: collapse mcp barrel into mcp/index.ts ( #22913 )
2026-04-16 20:36:23 +00:00
Kit Langton
c311b72695
fix: remove 8 more unnecessary as any casts in opencode core ( #22877 )
2026-04-16 19:27:53 +00:00
Dax Raad
c150b57903
config: refactor
2026-04-16 12:40:24 -04:00
Dax
8a41e28f5b
CLI perf: reduce deps ( #22652 )
2026-04-16 02:03:03 -04:00
Kit Langton
d2ec847f0c
feat: unwrap 11 util namespaces to flat exports + barrel ( #22739 )
2026-04-15 23:15:58 -04:00
Kit Langton
7159d09978
feat: unwrap InstanceState + EffectBridge namespaces to flat exports + barrel ( #22721 )
2026-04-16 02:45:45 +00:00
Kit Langton
021fe76e47
fix: clean up 49 unused variables, catch params, and stale imports ( #22695 )
2026-04-16 02:01:53 +00:00