summaryrefslogtreecommitdiffhomepage
path: root/packages/core/src
AgeCommit message (Collapse)Author
2026-05-03refactor(config+core): drop ConfigPaths.readFile, add ↵Kit Langton
AppFileSystem.readFileStringSafe, flatten TuiConfig.loadState (#25602)
2026-05-02Refactor v2 session events as schemas (#24512)Dax
2026-05-02feat: default HTTP API backend to on for dev/beta channelsKit Langton
2026-05-01core: fix npm package detection to properly handle cached directories ↵Aiden Cline
without installed packages (#25354)
2026-04-30Preapprove agent tmp directory access (#25226)Dax
2026-04-30fix: ensure disabling OPENCODE_DISABLE_CLAUDE_CODE_SKILLS doesnt disable ↵Aiden Cline
external skills too (#25123)
2026-04-30test: use testEffect for instruction tests (#25046)Kit Langton
2026-04-27Refactor npm config handling (#24565)Dax
2026-04-25core: move npm service to core package for shared dependency managementDax Raad
2026-04-25core: move cross-spawn-spawner to root and remove unused typesDax Raad
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-25core: move cross-spawn-spawner from opencode to core packageDax Raad
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-25core: move Global module to @opencode-ai/core for centralized path managementDax Raad
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-25core: consolidate shared infrastructure into core packageDax Raad
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-25refactor: rename shared package to core (#24309)Dax