Manages the installation, update, and removal of plugins from the marketplace.
/plugin marketplace add marcel-Ngan/ai-dev-team/plugin install marcel-ngan-ai-dev-team@marcel-Ngan/ai-dev-teamThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Manages the installation, update, and removal of plugins from the marketplace.
/install <name> - Install a plugin/uninstall <name> - Remove a plugin/plugins - List installed plugins/update <name> - Update a pluginSteps:
Input:
{
"pluginName": "skills-jira",
"version": "latest",
"skipDeps": false
}
Output:
## Installed: skills-jira v1.0.0
Contents added:
- 8 skills in skills/jira/
Configuration required:
- jira.cloudId - Run /configure to set
- jira.projectKey - Run /configure to set
Steps:
Input:
{
"pluginName": "skills-security",
"keepConfig": false,
"force": false
}
Output:
## Uninstalled: skills-security
Removed:
- 4 skills from skills/security/
Note: Configuration entries remain in project.json
Steps:
Input:
{
"pluginName": "agent-senior-developer",
"targetVersion": "latest"
}
Output:
## Updated: agent-senior-developer
1.0.0 → 1.1.0
Changes:
- Added new TDD templates
- Improved code review prompts
- Fixed edge case in PR creation
Steps:
Output:
## Available Updates
| Plugin | Installed | Latest | Breaking |
|--------|-----------|--------|----------|
| skills-jira | 1.0.0 | 1.1.0 | No |
| agent-qa-engineer | 1.0.0 | 2.0.0 | Yes |
Run `/update <name>` to update.
Steps:
Output:
## Installed Plugins (4)
| Plugin | Type | Version | Installed |
|--------|------|---------|-----------|
| ai-dev-team-full | bundle | 1.0.0 | 2026-01-09 |
| skills-jira | skill | 1.0.0 | 2026-01-09 |
| ... | ... | ... | ... |
marketplace/registry.json (read-only)marketplace/installed.json (read-write)marketplace/plugins/{type}/{name}/manifest.jsonWhen installing a plugin with dependencies:
{
"skills-jira": {
"version": "1.0.0",
"autoInstalled": true,
"installedBy": "ai-dev-team-core"
}
}
After installation, check requiredConfig:
config/project.json/configure helper| Error | Solution |
|---|---|
| Plugin not found | Check spelling, suggest similar |
| Version not found | Show available versions |
| Dependency conflict | Show conflicting requirements |
| Missing config | List required config, suggest /configure |
| Install hook failed | Show error, offer rollback |
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.