An OpenCode plugin that adds a /changelog command to display the latest OpenCode release notes.
/changelog- shows the full changelog/changelog <section>- filters by section name (partial match, comma-separated for multiple)
npm install @tobwen/opencode-changelog@latestUse a fixed version instead of @latest when you want reproducible environments.
Then add the plugin to your opencode.json:
{
"plugins": [
"node_modules/@tobwen/opencode-changelog/dist/index.js"
]
}npm install
npm run buildThen add the absolute path to your opencode.json:
{
"plugins": [
"/absolute/path/to/dist/index.js"
]
}- Node.js
^20,^22, or^24 - OpenCode with plugin support (
@opencode-ai/plugin ^1.2.0)
npm test # run tests
npm run build # compile TypeScriptCommits follow the <type>: <description> convention (feat, fix, refactor, docs, test, chore).
MIT