Browse Skills ยท 10 AI Agents ยท 100 Prompt Codes ยท Launch Your Tool ยท Website
Claude Code skills are .md instruction files that teach Claude Code exactly how to perform specific tasks โ with real commands, working code, and technology-specific pitfalls.
Without a skill, Claude gives you generic advice. With a skill, it gives you production-ready code.
# Install any skill in 2 seconds
mkdir -p ~/.claude/skills
curl -o ~/.claude/skills/docker-compose.md https://clskills.in/skills/docker/docker-compose.md
# Done. Claude Code now knows Docker Compose best practices.Most "AI prompts" are vague one-liners. Every skill here has:
- Expert role โ not "you are a helpful assistant", but "you are a senior DevOps engineer"
- Prerequisite checks โ what to verify before starting
- Step-by-step instructions โ real commands, real API calls, not pseudocode
- Working code โ 25-40 lines, copy-paste ready
- Specific pitfalls โ things that actually go wrong with that exact technology
Example: Two Factor Auth skill
You are a security engineer implementing two-factor authentication.
## What to check first
- Verify speakeasy or otplib is installed: npm list speakeasy
- Confirm database has twoFactorSecret, twoFactorEnabled, backupCodes columns
- Check JWT secret or session store is configured
## Steps
1. Install packages: npm install speakeasy qrcode
2. Create 2FA setup endpoint using speakeasy.generateSecret() + qrcode.toDataURL()
3. Create verification endpoint with speakeasy.totp.verify()
4. Generate 8-10 backup codes, store hashed in database
5. Add 2FA check middleware on protected routes
6. Create backup code redemption endpoint
7. Add "remember this device" with 30-day cookie
8. Add disable 2FA endpoint requiring password + valid TOTP
## Code
[35 lines of working Express.js implementation]
## Pitfalls
- Never log TOTP secrets โ they're equivalent to passwords
- Always hash backup codes with bcrypt before storing
- Use 30-second window for TOTP verification, not 60Frontend: React, Vue, Angular, Svelte, Next.js, Tailwind, CSS Architecture
Backend: Node.js, Python, Go, Rust, Java, GraphQL, REST APIs, gRPC
DevOps: Docker, Kubernetes, CI/CD, Terraform, Ansible, Nginx
Cloud: AWS, GCP, Azure, Serverless, Edge Functions, CDN
Databases: PostgreSQL, MongoDB, Redis, Elasticsearch, Prisma, Drizzle
Testing: Unit, Integration, E2E, React Testing Library, Playwright, Jest
Security: Auth, OAuth, JWT, CORS, CSP, Pen Testing, Secrets Management
And more: AI/ML, Mobile, Desktop, CLI Tools, Browser Extensions, Web3, Payments, Email, PDF, Search, Monitoring, Architecture, Migration...
# 1. Create skills directory
mkdir -p ~/.claude/skills
# 2. Download any skill
curl -o ~/.claude/skills/react-testing.md https://clskills.in/skills/testing/react-testing.md
# 3. Use Claude Code as normal โ it automatically reads the skill
claude "write tests for my UserProfile component"git clone https://github.com/Samarth0211/claude-skills-hub.git
cd claude-skills-hub
npm install
npm run dev
# Open http://localhost:3000| Feature | Description |
|---|---|
| Fuzzy Search | Find skills instantly with autocomplete |
| Command Palette | Press Cmd+K to search from anywhere |
| One-Click Download | Download .md files directly |
| Bulk Download | Add to cart, download as ZIP |
| Collections | 30 curated bundles (AI Engineer, DevOps, SaaS Starter, etc.) |
| Dark/Light Theme | System-aware with manual toggle |
| Mobile Responsive | Works on all devices |
| SEO Optimized | Sitemap, JSON-LD, Open Graph |
| Community Submissions | Submit your own skills |
| Layer | Technology |
|---|---|
| Framework | Next.js (App Router) |
| Language | TypeScript |
| Styling | Tailwind CSS + shadcn/ui |
| Search | Fuse.js |
| Animations | Framer Motion |
| Resend | |
| Downloads | JSZip + FileSaver.js |
| Hosting | Vercel |
We welcome contributions! Here's how:
- Share a skill โ Submit on the website
- Request a skill โ Open an issue
- Report a bug โ Open an issue
- Submit code โ Fork โ Branch โ PR
- Join the community โ r/ClaudeCodeSkills
If this project helps you, please star it โ it helps others discover it too.
Built by Samarth Bhamare โ AI Software Engineer building tools for developers.
