| 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" }
|
|
|