Dev skills for AI coding assistants. Install these globally to make them available across all projects.
Clone this repo to your local skills directory:
git clone https://github.com/15MariamS/claude-skills.git ~/.claude/skills/claudeThat's it! Skills are now available in all your projects.
Generates comprehensive handover documents for development sessions.
Usage: Type /handover in any conversation to create a HANDOVER.md file documenting:
- What you worked on
- What got done / didn't work
- Key decisions made
- Lessons learned & gotchas
- Next steps
- Important files
- Open questions
When to use: End of coding sessions, before handing off work, or when context switching between features.
59 performance optimization rules from Vercel Engineering covering:
- Eliminating async waterfalls (CRITICAL)
- Bundle size optimization (CRITICAL)
- Server-side performance (HIGH)
- Client-side data fetching
- Re-render optimization
- Rendering performance
- JavaScript performance
- Advanced patterns
Usage: Automatically applied when writing React/Next.js code. Reference specific rules in ~/.claude/skills/claude/vercel-react-best-practices/rules/
Learn more: Introducing React Best Practices - Vercel Blog
Clean up AI-generated code patterns before committing. Created by Eric Zakariasson.
Usage: Type /deslop to remove AI-introduced slop from your branch:
- Excessive comments inconsistent with the codebase
- Unnecessary defensive checks or try/catch blocks
- Type casts to
anythat bypass proper typing - Style inconsistencies with the existing file
When to use: Before creating PRs, after AI pair programming sessions, or when code review mentions "AI slop"
Enhance your AI coding workflow with Context7 - a Model Context Protocol (MCP) server that provides additional context capabilities for AI coding assistants.
To get the latest skill updates:
cd ~/.claude/skills/claude
git pullTo add or improve skills:
- Fork this repo
- Add/modify skills in their respective directories
- Create a PR for review
- After merge, update your local installation with
git pull
claude/
├── deslop/
│ └── SKILL.md
├── handover/
│ └── SKILL.md
└── vercel-react-best-practices/
├── SKILL.md
├── metadata.json
├── README.md
└── rules/ (59 optimization rules)