Licence
MIT
Version
0.2.0
Deps
0
Size
54 kB
Vulns
0
Weekly
0
opencode-plugins
OpenCode plugin workspace with small, focused packages for codebase indexing, audit planning, provider auth, and terminal automation.
Packages
| Package | Use it for | Install |
|---|---|---|
| @auron-labs/opencode-codebase-memory | OpenCode plugin for codebase-memory-mcp with startup indexing for the active project. | bun add @auron-labs/opencode-codebase-memory |
| @auron-labs/opencode-improve | OpenCode plugin that injects an improve subagent for auditing codebases and writing self-contained implementation plans. | bun add @auron-labs/opencode-improve |
| @auron-labs/opencode-omniroute-auth | OpenCode authentication plugin for OmniRoute API with /connect command and dynamic model fetching | bun add @auron-labs/opencode-omniroute-auth |
| @auron-labs/opencode-zellij | OpenCode plugin for managing Zellij panes with event subscriptions, output reading, and lifecycle tracking. | bun add @auron-labs/opencode-zellij |
Each package is published to npm and can also be installed with npm install <package> if you are not using Bun.
Some plugins also expect local tools on PATH:
@auron-labs/opencode-codebase-memoryexpectscodebase-memory-mcpunless you configure a custom binary path.@auron-labs/opencode-zellijexpects a running Zellij session and thezellijbinary.
Quick Start
Install the plugin you want, add it to your OpenCode config, then restart OpenCode.
bun add @auron-labs/opencode-codebase-memory{
"plugin": [
["@auron-labs/opencode-codebase-memory", {}],
["@auron-labs/opencode-improve", {}]
]
}Package-specific configuration, requirements, and examples live in each package README:
- @auron-labs/opencode-codebase-memory
- @auron-labs/opencode-improve
- @auron-labs/opencode-omniroute-auth
- @auron-labs/opencode-zellij
Troubleshooting
- Restart OpenCode after changing plugin configuration.
- Check the package README for required local binaries and runtime prerequisites.
- When developing locally, run
bun run buildbefore linking or testing unpublished package changes.
Development
mise install
bun install --frozen-lockfile
mise run lint
bun run build
bun run test
mise run check
bun run readme
bunx release-please manifest-pr --config-file release-please-config.json --manifest-file .release-please-manifest.json --target-branch main