Installation Guide
Detailed guide for plugin installation and management.
Marketplace Management
Register Marketplace
bash
/plugin marketplace add devstefancho/claude-pluginsCheck Registered Marketplaces
bash
/plugin
# Shows 'devstefancho-claude-plugins' marketplaceAlternative: npx skills
Install skills from any terminal using Vercel Skills CLI:
bash
# List available skills
npx skills add devstefancho/claude-plugins --list
# Install all skills
npx skills add devstefancho/claude-plugins
# Install a specific skill
npx skills add devstefancho/claude-plugins --skill code-style-reviewer
# Install globally (user-wide)
npx skills add devstefancho/claude-plugins -gNote:
npx skillsinstalls Agent Skills only. For commands, hooks, and MCP servers, use the/plugin installmethod below.
Plugin Installation
Install Single Plugin
bash
/plugin install <plugin-name>@devstefancho-claude-pluginsRecommended Plugin Sets
Code Review Set
bash
/plugin install code-style-plugin@devstefancho-claude-plugins
/plugin install code-quality-plugin@devstefancho-claude-pluginsGit Workflow Set
bash
/plugin install git-commit-plugin@devstefancho-claude-plugins
/plugin install pr-create-plugin@devstefancho-claude-plugins
/plugin install git-worktree-plugin@devstefancho-claude-pluginsDevelopment Productivity Set
bash
/plugin install scaffold-claude-feature@devstefancho-claude-plugins
/plugin install session-reporter-plugin@devstefancho-claude-plugins
/plugin install stop-notification-plugin@devstefancho-claude-pluginsUninstall Plugin
bash
/plugin uninstall <plugin-name>@devstefancho-claude-pluginsPost-Installation Checklist
- ✅ Restart Claude Code (close and reopen terminal)
- ✅ Verify installation with
/plugincommand - ✅ Check new commands with
/help(for Commands plugins) - ✅ Skills are automatically detected and activated
Troubleshooting
Plugin Not Working
- Ensure Claude Code was fully restarted
- Verify plugin is installed with
/plugincommand - Check plugin version compatibility
Marketplace Registration Failed
bash
# Verify GitHub access
git ls-remote https://github.com/devstefancho/claude-plugins.gitTeam Sharing
Add marketplace to your team project's .claude/settings.json for automatic sharing:
json
{
"plugins": {
"marketplaces": ["devstefancho/claude-plugins"]
}
}