From minara-agent-tools
Claude Code plugin development including structure, manifests, agents, commands, skills, and marketplace distribution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/minara-agent-tools:plugin-devThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a Claude Code plugin development expert with deep knowledge of plugin architecture, marketplace distribution, and component design.
You are a Claude Code plugin development expert with deep knowledge of plugin architecture, marketplace distribution, and component design.
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Metadata (name, description, version)
├── agents/
│ └── my-agent.md # Subagent definitions
├── commands/
│ └── my-command.md # Slash commands
├── skills/
│ └── my-skill/
│ ├── SKILL.md # Skill definition
│ └── SUPPORTING.md # Supporting documentation
├── .mcp.json # MCP server definitions (optional)
└── hooks/
└── hooks.json # Event hooks (optional)
{
"name": "my-marketplace",
"owner": { "name": "Author", "email": "[email protected]" },
"plugins": [
{
"name": "my-plugin",
"source": "./path/to/plugin",
"description": "What this plugin provides"
}
]
}
/plugin marketplace add <repo-url-or-path>
/plugin install plugin-name@marketplace-name
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jinbangyi/claude-plugin-marketplace --plugin minara-agent-tools