| Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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]>
|
|
|
|
|