Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 3.81 KB

File metadata and controls

69 lines (50 loc) · 3.81 KB

Curated Claude Code Skills

Community-maintained skills that extend Claude Code with domain-specific capabilities. Each skill listed here has been reviewed for quality and compatibility.

What are skills? Skills are markdown files with YAML frontmatter that teach Claude Code domain-specific workflows. Place them in .claude/skills/ in your project.

Development Workflow

Skill Author Description
commit-message Anthropic Generate conventional commit messages from staged changes
pr-review Anthropic Review pull requests with structured feedback and suggestions
git-commit-helper travisvn Analyze diffs and generate descriptive conventional commits
deploy-checklist VoltAgent Pre-deployment verification checklist for production releases

Code Quality

Skill Author Description
refactor-guide Community Systematic code refactoring with safety checks and test preservation
code-review Community Structured code review covering security, performance, and maintainability
documentation-writer VoltAgent Generate API documentation, README files, and inline docs from code
architecture-review Community Evaluate codebase architecture and suggest improvements

Testing

Skill Author Description
tdd-workflow Community Test-driven development: write failing tests first, then implement
test-generator VoltAgent Generate comprehensive test suites from existing code
e2e-testing Community End-to-end testing patterns for web applications
mutation-testing Community Verify test quality by introducing controlled mutations

Domain-Specific

Skill Author Description
react-patterns Community React component patterns, hooks, and performance optimization
nextjs-app-router Community Next.js App Router patterns: layouts, loading, error boundaries
docker-compose VoltAgent Docker Compose service orchestration and debugging
terraform-modules VoltAgent Terraform module design and infrastructure patterns
sql-optimization Community SQL query optimization, indexing strategies, and explain plans
api-design Community RESTful API design following OpenAPI conventions

Creating Your Own Skills

Skills are markdown files with YAML frontmatter:

---
name: my-skill
description: What this skill does and when to use it.
---

# My Skill

Instructions for Claude Code to follow...

Place in .claude/skills/my-skill/SKILL.md and Claude Code will discover it automatically.

Contributing

Found a great skill? Submit a PR adding it to the appropriate category above. Include:

  • A working link to the skill source
  • The author or organization
  • A concise description of what it does
  • Confirmation that you've tested it with Claude Code