Standalone OpenCode CLI plugins for Windows. Ported from Anthropic's knowledge-work-plugins.
- Node.js: 22+ recommended
- npm: 10+ recommended
- Python: 3.10+ recommend
| Plugin | Command | Description |
|---|---|---|
| sales | /sales |
Research prospects, prep for calls, pipeline review, draft outreach |
| marketing | /marketing |
Draft content, plan campaigns, brand review, performance reports |
| data | /data |
Query, visualize, analyze datasets, build dashboards |
# Install plugins globally
npm install -g opencode-sales-agent
npm install -g opencode-marketing-agent
npm install -g opencode-data-agentThen add to your OpenCode config (%USERPROFILE%\.config\opencode\opencode.jsonc):
Restart OpenCode and use the commands:
/sales
/marketing
/data
Each plugin follows this structure:
plugin-name/
├── src/ # TypeScript source code
├── agents/ # Skills and commands
├── mcp/ # MCP connector configs
├── state/ # Runtime state (not committed)
├── dist/ # Built JavaScript (generated on publish)
├── package.json
├── README.md
├── CHANGELOG.md
├── LICENSE
└── tsconfig.json
# Clone the repo
git clone https://github.com/eren726290/opencode-plugins.git
cd opencode-plugins
# Work on a plugin
cd sales # or marketing or data
# Install dependencies
npm install
# Build
npm run build
# Type check
npm run typecheck- Original plugins: Anthropic knowledge-work-plugins
- Architecture inspired by: oh-my-opencode
- License: Apache 2.0
{ "$schema": "https://opencode.ai/config.json", "plugin": [ "opencode-sales-agent", "opencode-marketing-agent", "opencode-data-agent" ] }