| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
screen layout adjustments (#10459)
Co-authored-by: opencode <[email protected]>
Co-authored-by: Aiden Cline <[email protected]>
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
|
|
Co-authored-by: opencode <[email protected]>
Co-authored-by: Aiden Cline <[email protected]>
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Brendan Allan <[email protected]>
|
|
|
|
Co-authored-by: Claude Opus 4.5 <[email protected]>
|
|
|
|
This reverts commit 8e985e0a75ca5f2cb859434fe82dee7ea81cb59f.
|
|
config based on docs (#11670)
|
|
|
|
|
|
|
|
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
|
|
This reverts commit 7417e6eb38e96c5e3904a4503740a305475d154a.
|
|
|
|
|
|
|
|
filter
|
|
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]>
|
|
|
|
|