Featured Skills

FreeNo Sign-up17 Skills

The most popular AI agent skills for developers. Preview, download, and install any skill into .claude/skills/<name>/SKILL.md โ€” invoke with /skill-name in Claude Code.

01๐Ÿ‘๏ธ

Preview the skill

Click "Preview file" on any card to see the exact .md file content โ€” the prompt and front matter Claude will receive.

02โฌ‡๏ธ

Download or copy

Hit "Download SKILL.md" to save the file directly, or copy the content to paste manually.

03โšก

Install and invoke

Create .claude/skills/<name>/ in your project and save as SKILL.md. Type /name in Claude Code to run it.

Installation
# Create the skill directory (name must match the skill name field)
mkdir -p .claude/skills/commit
# Move the downloaded SKILL.md into it
mv ~/Downloads/SKILL.md .claude/skills/commit/SKILL.md
# Invoke in Claude Code
/commit
Daily Drivers๐Ÿ”ฅ Most used

/commit

Analyze staged changes and write a precise Conventional Commit message โ€” type, scope, summary, and body from the actual diff.

Use when: Before every meaningful commit. Stops you from writing "fix stuff" forever.

Daily Drivers๐Ÿ”ฅ Most used

/pr

Generate a complete pull request title, summary, motivation, implementation notes, and testing checklist from the branch diff.

Use when: Immediately after finishing a feature. Writes the PR body you always skip.

Daily Drivers๐Ÿ”ฅ Most used

/fix

Fix a specific bug, error, or failing test with the minimal change needed. Identifies root cause before writing any code.

Use when: Paste an error message or describe the bug. Gets a precise fix, not a rewrite.

Daily Driversโญ Popular

/review

Perform a thorough code review โ€” correctness, security, performance, readability โ€” with severity-rated findings and specific fixes.

Use when: Before merging any PR. Catches what human reviewers miss when they're tired.

Daily Driversโญ Popular

/test

Write comprehensive tests for any function, class, or module โ€” happy paths, edge cases, error states, and mocks.

Use when: After writing new code or when coverage is low. Works with any test framework.

Planningโญ Popular

/plan

Break down any feature request or task into a step-by-step implementation plan before writing a single line of code.

Use when: Before starting any non-trivial feature. Align on the approach before you're 3 hours deep.

Planning๐Ÿ’ก Underrated

/handoff

Document the current session's progress, open questions, next steps, and context โ€” so any agent or human can continue seamlessly.

Use when: End of a work session, or when switching between AI agents and humans.

Planning๐Ÿ’ก Underrated

/verify-loop

Run lint, tests, and build โ€” then automatically diagnose and fix any failures, repeat up to 3 times until everything is green.

Use when: After making changes, to ensure nothing is broken before committing.

Security๐Ÿ›ก๏ธ Essential

/security-review

Deep security audit covering OWASP Top 10, secrets exposure, insecure dependencies, and auth/authz flaws โ€” with prioritized fixes.

Use when: Before any production deployment, open-source release, or security-sensitive feature.

Securityโญ Popular

/simplify

Reduce complexity, eliminate duplication, improve naming, and remove dead code โ€” without changing behavior.

Use when: After a feature is working and you want to clean it up before the PR.

DevOps๐Ÿš€ High-value

/deploy

Pre-deployment checklist โ€” runs tests, checks for secrets, validates env config, confirms migration state, and generates a deployment summary.

Use when: Before every production push. Makes sure you haven't forgotten anything.

DevOps๐Ÿš€ High-value

/ci-setup

Generate a complete CI/CD pipeline โ€” lint, typecheck, test, build, and deploy stages โ€” for GitHub Actions, GitLab CI, or CircleCI.

Use when: New project or existing project with no CI. Get full pipeline in 2 minutes.

DevOps๐Ÿณ Popular

/dockerfile

Generate an optimized, production-ready Dockerfile โ€” multi-stage build, minimal image, non-root user, and .dockerignore.

Use when: Containerizing a project for the first time, or improving an existing image.

Docs๐Ÿ“– Essential

/docs

Generate or update documentation โ€” JSDoc/TSDoc inline comments, README, or API reference โ€” for any file or whole project.

Use when: After writing code, or when onboarding new contributors who say "where are the docs?"

Docsโ˜€๏ธ Daily use

/standup

Generate a daily standup from git activity โ€” what you did yesterday, what's in progress, and any blockers.

Use when: Every morning before standup. Turns git history into human-readable progress.

MCP๐Ÿ”Œ MCP

/mcp-build

Scaffold a complete MCP server from scratch โ€” tool definitions, handlers, auth, error handling, and Claude Desktop config.

Use when: Starting a new MCP server integration for any API or data source.

MCP๐Ÿ”Œ MCP

/mcp-debug

Diagnose MCP connection and tool call failures โ€” transport, handshake, capability negotiation, and response format errors.

Use when: When your MCP server connects but tools fail, or the client can't connect at all.

Have a skill your team uses daily?

The best skills get added to this page. Share yours with the community โ€” include the .md file and a short description of what problem it solves.

๐Ÿ“š

Prompt Library

200+ prompts for MCP testing and development

๐Ÿณ

MCP Recipes

Multi-server workflow tutorials with step-by-step guides

๐Ÿงช

Test MCP Servers

Try any MCP server live in your browser โ€” no install