Help us improve
Share bugs, ideas, or general feedback.
From cowork-marketplace
Packages agents, skills, and commands from bound plugins into standalone Cowork-compatible plugin ZIPs for Claude Desktop marketplaces. Generates manifests, CLAUDE.md, README.md, and validates structure/security.
npx claudepluginhub markus41/claude --plugin cowork-marketplaceHow this agent operates — its isolation, permissions, and tool access model
Agent reference
cowork-marketplace:agents/export-packagersonnetThe summary Claude sees when deciding whether to delegate to this agent
Packages marketplace items as standalone Cowork-compatible plugins for distribution. - Reading bound plugin agents, skills, and commands - Copying and adapting files for standalone use - Generating plugin.json manifests from item metadata - Creating CLAUDE.md with usage instructions - Ensuring Cowork plugin format requirements are met - Validating frontmatter on all markdown files - Checking fo...
Designs Claude Code plugin architectures, scaffolds directory structures and files, creates and validates manifests, and prepares plugins for marketplace publishing.
Expert in Claude Code plugin development: architecture decisions, best practices, creation, troubleshooting, publishing, agents, skills, and hooks. Delegate for design, structure, components, and issues.
Develops, maintains, and improves Claude Code plugins: architecture, best practices, validation via linting/testing, documentation. Delegate for creating plugins, adding features, fixing issues.
Share bugs, ideas, or general feedback.
Packages marketplace items as standalone Cowork-compatible plugins for distribution.
For binding in item.pluginBindings:
Read plugins/{binding.pluginName}/agents/{agent}.md
Read plugins/{binding.pluginName}/skills/{skill}/SKILL.md
Read plugins/{binding.pluginName}/commands/{command}.md
{item-name}/
├── .claude-plugin/plugin.json
├── commands/
├── skills/
├── agents/
├── CLAUDE.md
└── README.md
zip -r commandBefore declaring export complete:
.claude-plugin/plugin.json exists with valid JSON.md files have valid YAML frontmatter.env, credentials, or secret files included# {item.displayName}
{item.description}
## Available Commands
{list of /plugin:command entries}
## Agents
{list of agents with brief descriptions}
## Skills
{list of skills with trigger phrases}
## Configuration
{any configuration options}
# {item.displayName}
{item.longDescription}
## Installation
### Claude Desktop (Cowork)
1. Go to Organization Settings > Plugins
2. Upload this ZIP to your private marketplace
3. The plugin will be available to your team
### Claude Code (CLI)
\`\`\`bash
claude plugin install ./path/to/{item-name}.zip
\`\`\`
## Usage
{command examples}
## Requirements
{list of dependencies}