summaryrefslogtreecommitdiffhomepage
path: root/packages
AgeCommit message (Collapse)Author
2026-02-01fix(plugin): correct exports to point to dist instead of srcR44VC0RP
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-01test: add unit testAiden Cline
2026-02-01fix: adjust resolve parts so that when messages with multiple @ references ↵Aiden Cline
occur, the tool calls are properly ordered
2026-02-01fix(app): hide badge for builtin slash commandsR44VC0RP
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-01feat(app): show skill/mcp badges for slash commandsR44VC0RP
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-02chore: generateopencode-agent[bot]
2026-02-02feat(ui): Smooth fading out on scroll, style fixes (#11683)Aaron Iker
2026-02-02chore: generateopencode-agent[bot]
2026-02-02feat(ui): Select, dropdown, popover styles & transitions (#11675)Aaron Iker
2026-02-01zen: add minimax logo (#11682)Frank
2026-02-01docs (web): Update incorrect Kimi model name in zen.mdx (#11677)Sumit Srivastava
2026-02-01test(app): workspace tests (#11659)Filip
2026-02-01fix: when using codex sub, send the custom agent prompts as a separate ↵Aiden Cline
developer message (previously sent as user message but api allows for instructions AND developer messages) (#11667) Co-authored-by: Carlos <[email protected]>
2026-02-01fix: variant logic for anthropic models through openai compat endpoint (#11665)Aiden Cline
2026-02-01fix: prompt caching for opus on bedrock (#11664)Rohan Godha
2026-02-01chore: generateopencode-agent[bot]
2026-02-01fix(opencode): scope agent variant to model (#11410)neavo
2026-02-01fix: prevent duplicate AGENTS.md injection when reading instruction files ↵YeonGyu-Kim
(#11581) Co-authored-by: Aiden Cline <[email protected]>
2026-02-01fix: opencode hanging when using client.app.log() during initialization (#11642)Desmond Sow
2026-02-01fix(tui): remove outer backtick wrapper in session transcript tool ↵zerone0x
formatting (#11566) Co-authored-by: Claude <[email protected]>
2026-02-01fix(ecosystem): fix link Daytona (#11621)Axel Sarmiento Mrak
2026-02-01docs: prefer wsl over native windows stuff (#11637)Filip
2026-02-01fix: allow user plugins to override built-in auth plugins (#11058)Joscha Götzer
Co-authored-by: JosXa <[email protected]>
2026-02-01chore: generateopencode-agent[bot]
2026-02-01fix(app): binary file handling in file view (#11312)Alex Yaroshuk
2026-02-01fix(app): use static language names in Thai localization (#11496)Alex Yaroshuk
2026-02-01fix(app): show retry status only on active turn (#11543)Filip
2026-02-01fix: ensure switching anthropic models mid convo on copilot works without ↵Aiden Cline
errors, fix issue with reasoning opaque not being picked up for gemini models (#11569)
2026-02-01fix: correct pluralization of match count in grep and glob tools (#11565)adamjhf
2026-02-01fix(tui): remove extra padding between search and results in dialog-select ↵Dax
(#11564)
2026-01-31feat(tui): add UI for skill tool in session view (#11561)Dax
2026-01-31fix(tui): conditionally render bash tool output (#11558)Dax
2026-01-31fix: issue where you couldn't @ folders/files that started with a "." (#11553)Aiden Cline
2026-01-31feat: add skill dialog for selecting and inserting skills (#11547)Dax
2026-01-31fix(app): rendering question tool when the step are collapsed (#11539)Filip
2026-01-31chore: generateopencode-agent[bot]
2026-01-31test(app): general settings, shortcuts, providers and status popover (#11517)Filip
2026-01-31tui: enable password authentication for remote session attachmentDax Raad
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-31tweak: show actual retry error message instead of generic error msg (#11520)Aiden Cline
2026-01-31fix(provider): use process.env directly for runtime env mutations (#11482)Jérôme Benoit
2026-01-31docs: fix documentation issues (#11435)大猫子
Co-authored-by: damaozi <[email protected]>
2026-01-31feat(opencode): add reasoning variants support for SAP AI Core (#8753)Jérôme Benoit
Co-authored-by: Github Action <[email protected]>
2026-01-31Revert "feat(app): add skill slash commands" (#11484)Ryan Vogel
2026-01-31feat(app): add skill slash commands (#11369)Ryan Vogel
2026-01-31fix(pty): Add UTF-8 encoding defaults for Windows PTY (#11459)陆奕丞
2026-01-31fix(app): session header 'share' button to hug content (#11371)Alex Yaroshuk
2026-01-31release: v1.1.48opencode
2026-01-31Revert "feat: Transitions, spacing, scroll fade, prompt area update ↵Adam
(#11168)" (#11461) Co-authored-by: adamelmore <[email protected]>
2026-01-31test(app): session actions (#11386)Filip
2026-01-31test: fix flaky test (#11427)Aiden Cline