Skip to content

eren726290/opencode-cowork-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

OpenCode Cowork Plugins

Standalone OpenCode CLI plugins for Windows. Ported from Anthropic's knowledge-work-plugins.

Prerequisites

  • Node.js: 22+ recommended
  • npm: 10+ recommended
  • Python: 3.10+ recommend

Available Plugins

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

Installation

# Install plugins globally
npm install -g opencode-sales-agent
npm install -g opencode-marketing-agent
npm install -g opencode-data-agent

Then add to your OpenCode config (%USERPROFILE%\.config\opencode\opencode.jsonc):

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    "opencode-sales-agent",
    "opencode-marketing-agent",
    "opencode-data-agent"
  ]
}

Restart OpenCode and use the commands:

/sales
/marketing
/data

Plugin Structure

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

Development

# 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

Credits & Attribution

About

Standalone OpenCode CLI desktop plugins for Windows. Ported from Anthropic's knowledge-work-plugins.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors