| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
|
after merge
|
|
This reverts commit 7417e6eb38e96c5e3904a4503740a305475d154a.
|
|
examples
|
|
Added a workaround to fix Pulumi version conflict in the deployment workflow.
|
|
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.
|
|
reliability
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filter
|
|
|
|
condition
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|