BMAD Skills Marketplace - Custom skills for Claude Code
npx claudepluginhub bmad-labs/skillsCollection of skills including skill creation, MCP server development, E2E testing, and unit testing guides for TypeScript/NestJS projects
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Agent skills for building and maintaining promptfoo evaluations
Share bugs, ideas, or general feedback.
A collection of skills for Claude Code that extend its capabilities with specialized knowledge and workflows.
Skills are self-contained instruction sets that teach Claude Code how to perform specialized tasks. Each skill is defined in a SKILL.md file with optional supporting resources like scripts, templates, and reference documentation.
<root>/
├── skills/ # All skill implementations
│ └── [skill-name]/ # Individual skill folder
│ ├── SKILL.md # Required - Main skill definition
│ ├── scripts/ # Optional - Supporting scripts
│ ├── references/ # Optional - Reference documentation
│ └── assets/ # Optional - Images, resources
├── template/ # Starter template for new skills
├── spec/ # Skills specification documentation
├── CONTRIBUTING.md # Contribution guidelines
└── README.md # This file
The easiest way to install skills using the skills package. Supports Claude Code, Cursor, Codex, OpenCode, and 20+ other agents.
# Install all skills
npx skills add bmad-labs/skills
# Install specific skills for TypeScript development
npx skills add bmad-labs/skills --skill typescript-clean-code --skill typescript-e2e-testing --skill typescript-unit-testing
# Install to specific agent (e.g., claude-code, cursor, codex)
npx skills add bmad-labs/skills -a claude-code
# Install globally (user-level, available in all projects)
npx skills add bmad-labs/skills -g
This method installs the entire plugin with all skills automatically detected.
Step 1: Add the marketplace
/plugin marketplace add bmad-labs/skills
Step 2: Install the plugin
/plugin install bmad-labs@skills
Step 3: Verify installation
# Open the plugin manager to see installed plugins
/plugin
# Or ask Claude: "What skills are available?"
Add to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"bmad-labs": {
"source": {
"source": "github",
"repo": "bmad-labs/skills"
}
}
},
"enabledPlugins": {
"bmad-labs@skills": true
}
}
If you only need specific skills, add them individually to your project's .claude/settings.json:
{
"skills": [
"github:bmad-labs/skills/skills/clean-code",
"github:bmad-labs/skills/skills/typescript-e2e-testing",
"github:bmad-labs/skills/skills/typescript-unit-testing"
]
}
Available skill paths:
github:bmad-labs/skills/skills/mcp-buildergithub:bmad-labs/skills/skills/typescript-e2e-testinggithub:bmad-labs/skills/skills/typescript-unit-testinggithub:bmad-labs/skills/skills/skill-creatorgithub:bmad-labs/skills/skills/typescript-clean-codegithub:bmad-labs/skills/skills/book-convertergithub:bmad-labs/skills/skills/skill-from-bookgithub:bmad-labs/skills/skills/ui-ux-pro-maxgithub:bmad-labs/skills/skills/slides-generatorgithub:bmad-labs/skills/skills/ai-multimodalgithub:bmad-labs/skills/skills/atlassian-restgithub:bmad-labs/skills/skills/multi-repo-git-opsIf skills are not detected after installation:
Clear the plugin cache:
rm -rf ~/.claude/plugins/cache
Restart Claude Code (exit and run claude again)
Verify skills are loaded:
/plugin and check the Errors tabCheck plugin structure:
claude plugin validate .
Once installed, you can invoke skills using the slash command format:
/skill-name [arguments]
Or simply describe what you need - Claude will automatically use relevant skills based on their descriptions.
template/ folder to skills/your-skill-name/SKILL.md with your skill definitionSee CONTRIBUTING.md for detailed guidelines.
| Category | Description |
|---|---|
| Development | Coding, architecture, testing, DevOps |
| Productivity | Documents, project management, workflows |
| Creative | Design, content creation, branding |
| Data | Processing, analysis, visualization |