By bmad-labs
Provides a collection of reusable skills for TypeScript/NestJS projects: creating MCP servers, writing E2E and unit tests with Jest and Docker, converting EPUB books to Markdown, generating interactive presentations, and managing git workflows across multi-repo projects
Process and generate multimedia content using Google Gemini API for better vision capabilities. Capabilities include analyze audio files (transcription with timestamps, summarization, speech understanding, music/sound analysis up to 9.5 hours), understand images (better image analysis than Claude models, captioning, reasoning, object detection, design extraction, OCR, visual Q&A, segmentation, handle multiple images), process videos (scene detection, Q&A, temporal analysis, YouTube URLs, up to 6 hours), extract from documents (PDF tables, forms, charts, diagrams, multi-page), generate images (text-to-image with Imagen 4, editing, composition, refinement), generate videos (text-to-video with Veo 3, 8-second clips with native audio). Use when working with audio/video files, analyzing images or screenshots (instead of default vision capabilities of Claude, only fallback to Claude's vision capabilities if needed), processing PDF documents, extracting structured data from media, creating images/videos from text prompts, or implementing multimodal AI features. Supports Gemini 3/2.5, Imagen 4, and Veo 3 models with context windows up to 2M tokens.
Build high-quality, animated, professional web pages that VISUALIZE software architecture, system design, data models, or a product idea — using Three.js (3D) + GSAP (scroll/animation) + SVG diagrams. Produces two things, usually together: (1) a cinematic scroll-story landing page where a 3D low-poly world narrates how a system works, and (2) an interactive architecture map with switchable overlay "lenses", clickable drill-down component diagrams, and crow's-foot ERDs. Every output ships with a built-in EDIT MODE so the human can click components / snip areas / pick 3D objects and batch visual feedback straight to you. Use this skill WHENEVER the user wants to visualize, present, "show", animate, or build an interactive page for an architecture, system design, technical concept, data model, pipeline, or product story — including phrases like "intro page", "architecture visualization", "interactive diagram", "scrollytelling", "3D system map", "ERD page", "design walkthrough", "make our architecture look impressive", or "present this design to stakeholders". Prefer this skill over hand- rolling Three.js/GSAP from scratch — it bundles battle-tested templates, a styling/anti-slop guide, a diagram-layout catalog, and an AI-tweakable code convention learned from a long real build.
Interact with Atlassian Jira and Confluence using REST APIs — no MCP server needed. Use this skill whenever the user mentions Jira, Confluence, Atlassian, tickets, issues, sprints, backlogs, epics, stories, or any project management task that involves creating/editing/searching/transitioning Jira issues, writing or reading Confluence pages, generating status reports, triaging bugs, converting specs to backlogs, capturing tasks from meeting notes, searching company knowledge, syncing local BMAD documents with Jira or Confluence, pushing docs to Jira, pulling from Jira, linking documents to tickets, downloading Confluence spaces to local markdown, or converting between Confluence storage format and markdown. Also trigger when the user says things like "move that ticket to done", "what's the status of PROJ-123", "create a bug for X", "search our wiki for Y", "file a ticket", "check for duplicates", "write a status update", "break this spec into stories", "sync this doc", "push to jira", "pull from jira", "sync to confluence", "link this to jira", "sync my epics", "download confluence pages", "sync confluence space", "convert confluence to markdown", or "pull docs from confluence". If there is even a chance the user wants to interact with Jira or Confluence, use this skill.
Orchestrates BMAD implementation workflows automatically — both the full Phase 4 epic/story pipeline and the Quick Flow for small, well-understood changes. Use this skill whenever the user wants to: (1) automate Phase 4 implementation ("auto implement", "start implementation", "begin phase 4", "automatic working on phase 4", "implement all stories", "process the epics"), (2) check implementation progress or status ("what's the status?", "how many stories are done?"), (3) resume a previously interrupted session ("continue from where we left off", "resume"), (4) implement a small self-contained change without going through full BMAD planning ("quick dev", "quick flow", "implement this change", a described bug fix, refactor, or small feature, patch). When the user describes a small change or asks to quickly implement something, route to Quick Flow — `bmad-quick-dev` handles intent-to-code directly without a separate spec step. If a multi-story project is already in flight (`sprint-status.yaml` exists) AND the user's current request is a substantive epic/story task, route to Phase 4; if the request is a small one-off, route to Quick Flow regardless. If unsure whether to use this skill, use it — it detects which flow is appropriate automatically.
Convert EPUB books to high-quality formatted Markdown using pandoc and AI-assisted formatting. Use when the user provides an EPUB file path and wants to convert it to professionally formatted Markdown, similar to the Clean Code Collection formatting. This skill handles the complete workflow from EPUB extraction through AI-driven content formatting, including fixing PDF conversion artifacts, joining split paragraphs, correcting code blocks, standardizing headers, and creating proper Table of Contents.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
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/typescript-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-opsgithub:bmad-labs/skills/skills/trade-off-analysisgithub:bmad-labs/skills/skills/manual-testinggithub:bmad-labs/skills/skills/load-docsgithub:bmad-labs/skills/skills/rca-reportIf 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 |
npx claudepluginhub bmad-labs/skills --plugin bmad-skillsAI-first engineering workflow with BDD living documentation. Lean PRD writing, Gherkin generation, and wireframe mockups for Product and Engineer roles.
Development practices: TDD workflow with red-green-refactor
Efficient skill management system with progressive discovery — 410+ production-ready skills across 33+ domains
Give soul to your workflow. 58 AI-powered skills across 17 roles — PM, Dev, Backend, Frontend, QA, UX, Data, Detect, WordPress, Release, Security, DevOps, and Core. Spec-to-ship pipeline: scaffold, implement, test, secure, deploy. Features two-phase workflow with human approval, quality-reviewer agent, token optimization, and continuous improvement via LEARN.md system.
Use BuildBetter's MCP server and bb CLI from Claude Code.
A la carte AI skills for LLM-assisted development