| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
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" }
|
|
|
|
occur, the tool calls are properly ordered
|
|
Add source: 'command' to builtin and config-defined commands so they
don't show a 'custom' badge. Only MCP and skill commands show badges.
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
developer message (previously sent as user message but api allows for instructions AND developer messages) (#11667)
Co-authored-by: Carlos <[email protected]>
|
|
|
|
|
|
|
|
Co-authored-by: Aiden Cline <[email protected]>
|
|
|
|
|
|
|
|
(#11581)
Co-authored-by: Aiden Cline <[email protected]>
|
|
|
|
formatting (#11566)
Co-authored-by: Claude <[email protected]>
|
|
|
|
|
|
Co-authored-by: JosXa <[email protected]>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
errors, fix issue with reasoning opaque not being picked up for gemini models (#11569)
|
|
|
|
(#11564)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
|
|
|
|
|
|
|