plugin-creator

star 25

Create OpenCode plugins and know where to load them.

different-ai By different-ai schedule Updated 2/11/2026

name: plugin-creator description: Create OpenCode plugins and know where to load them.

Quick Usage (Already Configured)

Where plugins live

  • Project plugins: plugins/*.js or plugins/*.ts
  • Global plugins: ~/.config/opencode/plugins/*.js or .ts

Load from npm

Add npm plugin packages in opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["opencode-helicone-session", "opencode-wakatime"]
}

Minimal plugin template

export const MyPlugin = async ({ project, client, $, directory, worktree }) => {
  return {
    // Hook implementations go here
  }
}

Notes from OpenCode docs

  • Plugins are JS/TS modules exporting one or more plugin functions.
  • Local plugins are loaded directly from the plugin directory.
  • NPM plugins are installed via Bun at startup and cached in ~/.cache/opencode/node_modules/.
  • Load order: global config → project config → global plugins → project plugins.

Reference

Follow the official OpenCode plugin docs: https://opencode.ai/docs/plugins/ Use the docs as the escape hatch when unsure.

Install via CLI
npx skills add https://github.com/different-ai/openwork-hub --skill plugin-creator
Repository Details
star Stars 25
call_split Forks 9
navigation Branch main
article Path SKILL.md
More from Creator
different-ai
different-ai Explore all skills →