Skip to content

kasimmj/claude-skills-mega

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


The largest curated, production-ready library of Claude Code Skills. Install in one command. Use anywhere Claude runs.

What are Skills? β€’ Install β€’ Skills Catalog β€’ Build Your Own


πŸ€– What are Claude Skills?

Claude Skills are reusable instructions + scripts that extend what Claude Code can do. They are auto-discovered, lazy-loaded, and composable. Think of them as plugins for your AI agent.

A skill is a folder with:

  • SKILL.md β€” frontmatter (name, description, triggers) + instructions
  • Optional helper scripts/templates
  • Optional reference files

When the user's request matches a skill's triggers, Claude loads it and follows its instructions.


πŸš€ Why This Repo?

There are skills scattered everywhere β€” gists, blogs, private repos. This is the canonical, curated, tested collection.

  • βœ… All skills follow the same standards (clean frontmatter, real triggers, no LLM-fluff)
  • βœ… Production-ready β€” used in real engineering workflows
  • βœ… One-line install for the whole bundle or per-skill
  • βœ… Open for contributions with a strict review checklist

πŸ“¦ Installation

Install the whole collection

curl -fsSL https://raw.githubusercontent.com/kasimmj/claude-skills-mega/main/scripts/install.sh | bash

Install a single skill

./scripts/install.sh security-audit

Manual install

git clone https://github.com/kasimmj/claude-skills-mega
cp -r claude-skills-mega/skills/<name> ~/.claude/skills/

πŸ“š Skills Catalog

Skill Trigger phrase What it does
πŸ›‘οΈ security-audit "audit security", "find vulns" OWASP-style security scan of the current diff or repo
πŸ—„οΈ db-migrate "create migration", "alter table" Safe SQL migration generator with up/down + rollback checks
🌐 api-mock "mock this API", "create stub" Generates an Express/FastAPI mock server from an OpenAPI spec
🌍 i18n-translate "translate strings", "add Arabic" Extracts and translates UI strings across locale files
πŸ“œ license-check "check licenses", "scan deps" Inventories all dependency licenses; flags incompatible ones
πŸ“ changelog-gen "generate changelog", "release notes" Builds a clean CHANGELOG from conventional commits

🎯 More coming. See ROADMAP.md for the full pipeline.


🧱 Skill Format

Every skill is a folder containing a SKILL.md with frontmatter:

---
name: security-audit
description: Run an OWASP-style security audit on changed files or the whole repo
triggers:
  - "audit security"
  - "find vulnerabilities"
  - "check for OWASP"
license: MIT
author: Kasim Mohammed
---

# Security Audit

When invoked, you should:
1. Identify the scope (current diff vs full repo)
2. Scan for the OWASP Top 10 patterns: ...

The frontmatter is parsed by Claude Code to register the skill. The body is the instructions Claude follows when the skill activates.


πŸ§ͺ Build Your Own

./scripts/scaffold.sh my-new-skill
# Creates skills/my-new-skill/SKILL.md with a starter template

Then run the linter:

./scripts/lint.sh skills/my-new-skill

If it passes, open a PR β€” see CONTRIBUTING.md for the review checklist.


βœ… Contribution Standards

We reject low-effort skills. To be merged, your skill must:

  1. Solve a real, repeatable problem (not "make code better")
  2. Have specific triggers (5+ unambiguous phrases)
  3. Be lazy-loaded (no eager file reads unless triggered)
  4. Include at least one example in the body
  5. Pass the linter (./scripts/lint.sh)
  6. Document failure modes (when NOT to use)
  7. Be tested manually before submission

πŸ“œ License

MIT Β© 2026 Kasim Mohammed + contributors.

Individual skills may carry their own license β€” see SKILL.md.


Star ⭐ to follow the collection as it grows.

About

πŸ€– The ultimate curated collection of production-ready Claude Code skills with a framework to build your own.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages