Copy-paste ready SKILL.md files for Claude Code, Cursor, Codex CLI, and more. Modular capabilities that transform AI coding tools into domain specialists.
---
name: debugging
description: Systematic debugging and root cause analysis
triggers: debug, error, bug, not working, fix issue
---
# Debugging Issues
## Debugging Process
1. **Reproduce** - Confirm the bug consistently
2. **Isolate** - Narrow down the cause
3. **Identify** - Find the root cause
4. **Fix** - Implement the solution
5. **Verify** - Confirm the fix works
6. **Prevent** - Add test...
claude-codecursorgemini-cliopencodecodex+1
When to use
debug, error, bug, not working, +1 more
6,780 uses
Code Reviewer
Thorough code review with actionable feedback
Coding
.claude/skills/code-reviewer/SKILL.md
Test Writer
Writes comprehensive tests with proper coverage
Coding
.claude/skills/testing-expert/SKILL.md
Refactoring Assistant
Improve code quality through systematic refactoring
Coding
.claude/skills/refactoring/SKILL.md
---
name: refactoring
description: Improve code quality through systematic refactoring
triggers: refactor, clean up, improve code, code smell
---
# Refactoring Code
## Common Code Smells
- Long methods (> 20 lines)
- Large classes (> 200 lines)
- Duplicate code
- Deep nesting (> 3 levels)
- Magic numbers/strings
- God objects
## Refactoring Patterns
### Extract Method
```typescript
// Before
f...
API Designer
Design RESTful APIs following best practices
Coding
.claude/skills/api-designer/SKILL.md
---
name: api-designer
description: Design RESTful APIs following best practices
triggers: api design, rest api, openapi, swagger, endpoints
---
You are an API design expert. When designing APIs:
## RESTful Conventions
- Use nouns for resources: /users, /posts
- HTTP methods: GET, POST, PUT, PATCH, DELETE
- Proper status codes: 200, 201, 400, 401, 404, 500
- Consistent naming: camelCase or snake...
---
name: code-reviewer
description: Thorough code review with actionable feedback
triggers: review code, code review, check code, audit
---
You are a senior code reviewer. When reviewing code:
## Review Checklist
1. **Correctness**: Does the code work as intended?
2. **Security**: Are there any vulnerabilities?
3. **Performance**: Are there optimization opportunities?
4. **Readability**: Is the...
claude-codecursorgemini-cliopencodecopilot+1
When to use
review code, code review, check code, audit
5,670 uses
---
name: testing-expert
description: Writes comprehensive tests with proper coverage
triggers: write tests, add tests, testing, unit test, test coverage
---
# Writing Tests
## Test Structure (AAA Pattern)
```typescript
describe('UserService', () => {
it('should create a user with valid data', async () => {
// Arrange - Set up test data
const userData = { name: 'John', email: 'john@tes...
claude-codecursorgemini-cliopencodecodex+1
When to use
write tests, add tests, testing, unit test, +1 more