summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2026-02-01Revert "fix(plugin): correct exports to point to dist instead of src"Dax Raad
This reverts commit 7417e6eb38e96c5e3904a4503740a305475d154a.
2026-02-01docs: Restructure AGENTS.md style guide with organized sections and code ↵Dax Raad
examples
2026-02-01ci: Fix Pulumi version conflict in deploy workflowFrank
Added a workaround to fix Pulumi version conflict in the deployment workflow.
2026-02-01ci: restrict nix-hashes workflow to dev branch pushes onlyDax Raad
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-01ignore: switch commit model to kimi-k2.5 for improved command execution ↵Dax Raad
reliability
2026-02-01ci: skip unicode filename test due to inconsistent behavior causing CI failuresDax Raad
2026-02-01tui: fix task status to show current tool state from message storeDax Raad
2026-02-01core: allow starting new sessions after errors by fixing stuck session statusDax Raad
2026-02-01ci: skip force push when beta branch is unchangedDax Raad
2026-02-01ci: allow manual dispatch for beta workflowDax Raad
2026-02-01ci: run beta workflow on hourly schedule onlyDax Raad
2026-02-01ci: centralize team list in @opencode-ai/script package and use beta label ↵Dax Raad
filter
2026-02-01ci: add synchronize event and check for beta label using contains()Dax Raad
2026-02-01ci: change trigger from scheduled cron to PR labeled events with beta label ↵Dax Raad
condition
2026-02-01ci: add --label beta filter to only process PRs with beta labelDax Raad
2026-02-01ci: post PR comments when beta merge fails instead of Discord notificationsDax Raad
2026-02-01ci: rewrite beta script to use proper Bun shell patternsDax Raad
2026-02-01ci: remove parseArgs CLI option and use environment variable directlyDax Raad
2026-02-01ci: add --discord-webhook / -d CLI option for custom Discord webhook URLDax Raad
2026-02-01ci: add DISCORD_ISSUES_WEBHOOK_URL secret to beta workflowDax Raad
2026-02-01ci: collect all failed PR merges and notify DiscordDax Raad
2026-02-01ci: prevent rate limit errors when fetching team PRs for beta releasesDax Raad
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-01chore: update nix node_modules hashesopencode-agent[bot]
2026-02-01fix: prompt caching for opus on bedrock (#11664)Rohan Godha
2026-02-01fix(desktop): nix - add missing dep (#11656)Caleb Norton
Co-authored-by: Aiden Cline <[email protected]>
2026-02-01chore: generateopencode-agent[bot]
2026-02-01chore: reduce nix fetching (#11660)Caleb Norton
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