
Ai-skills
A community-driven catalogue of 50 reusable AI agent skills for Claude Code , Antigravity, Cursor Ai , kimi , deepseek ,Mimo — code review, security auditin…
Install with your AI
Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.
Install and set up Ai-skills (git-clone project) into my current project. Found on https://claudeers.com/ai-skills Repo: https://github.com/codebygarv/Ai-skills Homepage/docs: — Detected install method: git-clone → git clone https://github.com/codebygarv/Ai-skills Category: devtools. Platforms: cli, api, desktop, mobile. Read the repo's README for exact setup and env vars, then install it and wire it into my project. Claudeers Health Verdict: unknown; community-verified: false. Confirm the source before running anything.
git clone https://github.com/codebygarv/Ai-skills
// compatibility
| Platforms | cli, api, desktop, mobile |
|---|---|
| Operating systems | — |
| AI compatibility | claude |
| License | MIT |
| Pricing | open-source |
| Language | JavaScript |
AI Skills Hub
A community-driven collection of reusable AI skills — for discovering, exploring, and reusing specialized agent capabilities.
npx github:codebygarv/Ai-skills add grill-me
That's it — one command drops a working skill into .claude/skills/grill-me/ in your project.
See it in action
GrillMe — challenges an idea instead of agreeing with it.
You: "Grill me on this: our new feature flag system stores flags as rows in the primary Postgres database, read on every request."
GrillMe: Every request now takes a read-path dependency on your primary database for something that's almost always the same answer for minutes at a time — you've turned a config lookup into a scaling bottleneck for your most critical path.
- Assumption: flag reads are cheap. At 10x traffic, this competes for connections with actual business queries — a flag check can degrade checkout.
- No caching layer. A single flag toggle now means every pod issues fresh reads with zero staleness tolerance, when 30 seconds of staleness would've been invisible.
- Alternative not addressed: a push-based cache or a dedicated flag service solves this entirely — why wasn't that considered?
Questions to answer before shipping this: What's your target read latency at peak, and does this design hit it with headroom?
Full transcript: skills/reasoning/grill-me/examples/example.md. 49 more skills below.
What is this?
AI Skills Hub is a centralized catalogue of reusable AI skills designed to extend the capabilities of AI coding agents, assistants, and developer workflows.
Instead of every developer re-writing the same instructions, prompts, and agent behaviors from scratch, you can browse this catalogue, find a skill that matches what you need, read what it does, and drop it into your own AI workflow.
Each skill is a self-contained package of instructions that teaches an AI agent how to perform one specific type of task consistently — for example:
- GrillMe → aggressively reviews, questions, and challenges an idea, implementation, architecture, or plan.
- UI Auditor → analyzes a UI implementation for design-system, responsiveness, accessibility, and consistency issues.
- PR Reviewer → reviews a pull request like a senior engineer and flags bugs, architectural problems, and maintainability issues.
- UI Text Formatter → detects poorly formatted UI text and improves capitalization, spacing, hierarchy, and readability.
Core Vision
Think of it like a package registry, but for AI agent skills:
AI Skills Hub
↓
Search / Explore Skills
↓
Find "PR Reviewer"
↓
Read Documentation
↓
Install / Copy Skill
↓
Use it with your AI Agent
The long-term goal is to make AI skills discoverable, reusable, shareable, version-controlled, community-driven, easy to install, easy to customize, and easy to contribute to.
What is an AI Skill?
An AI Skill is a structured set of instructions that gives an AI agent a specialized capability or behavior. A skill defines:
- What the AI should do
- When the AI should use the skill
- What information it should analyze
- What rules it should follow
- What output it should produce
- What it should avoid
- Examples of expected behavior
See docs/SKILL_SPEC.md for the full folder structure and quality standards every skill in this repo follows.
The Catalogue
50 skills across 9 categories.
🧠 Reasoning (skills/reasoning/)
| Skill | Description |
|---|---|
| GrillMe | Challenges ideas, assumptions, architecture, and decisions instead of blindly agreeing. |
| Devil's Advocate | Takes the opposing position and identifies weaknesses in an idea or decision. |
| DeepThink | Breaks complicated problems into smaller reasoning steps and evaluates multiple approaches. |
| Decision Maker | Compares multiple solutions and produces a structured recommendation based on trade-offs. |
| Requirements Extractor | Converts vague requirements into clear functional and technical requirements. |
💻 Development (skills/development/)
| Skill | Description |
|---|---|
| Code Reviewer | Reviews source code for bugs, readability, maintainability, performance, and best practices. |
| PR Reviewer | Performs a pull-request-style review and organizes findings by severity. |
| Bug Hunter | Searches code for potential bugs, edge cases, race conditions, and incorrect assumptions. |
| Refactor Expert | Identifies unnecessarily complicated code and proposes cleaner implementations. |
| TypeScript Guardian | Focuses on TypeScript safety, types, generics, any usage, interfaces, and type design. |
| API Designer | Helps design REST APIs, routes, request/response structures, validation, and conventions. |
| Database Architect | Reviews database schemas, relationships, indexes, constraints, and data modeling. |
| Security Auditor | Analyzes implementations for common security weaknesses and unsafe practices. |
| Performance Auditor | Looks for performance bottlenecks in frontend, backend, database, and network code. |
| Dependency Auditor | Reviews package dependencies for bloat, outdated patterns, duplication, and risk. |
🎨 UI / UX (skills/ui-ux/)
| Skill | Description |
|---|---|
| UI Auditor | Reviews interfaces for visual consistency, spacing, hierarchy, and design-system compliance. |
| Responsive Checker | Analyzes whether a UI behaves correctly across mobile, tablet, and desktop layouts. |
| Accessibility Auditor | Checks interfaces against accessibility principles: keyboard nav, semantics, contrast, labels. |
| Design System Guardian | Detects hardcoded colors, spacing, typography, and widths that should use design tokens. |
| UI Text Formatter | Improves UI copy, capitalization, labels, headings, and message consistency. |
📝 Documentation & Communication (skills/documentation/)
| Skill | Description |
|---|---|
| Documentation Writer | Creates structured technical documentation from code, requirements, or notes. |
| README Builder | Creates professional README files for GitHub projects. |
| Changelog Generator | Converts commits or dev updates into clean release notes and changelogs. |
| Commit Message Expert | Generates consistent, meaningful Git commit messages based on changes. |
| Status Update Writer | Converts raw dev notes into professional daily/weekly project updates. |
🧪 Quality & Testing (skills/testing/)
| Skill | Description |
|---|---|
| Test Generator | Creates meaningful unit, integration, and component tests. |
| Edge Case Hunter | Focuses on unusual inputs, boundary conditions, empty states, and failure states. |
| Test Case Designer | Converts requirements into structured manual and automated test cases. |
| Test Coverage Analyzer | Risk-ranks untested behaviors and flags tests that create false confidence. |
| Flaky Test Diagnoser | Diagnoses why a test fails intermittently and fixes the root nondeterminism. |
🚀 Project & Architecture (skills/architecture/)
| Skill | Description |
|---|---|
| Architecture Reviewer | Reviews application architecture for scalability, coupling, and maintainability issues. |
| Project Planner | Converts an idea into a structured development plan with milestones and phases. |
| Migration Planner | Plans incremental, reversible migrations with rollback points and a point-of-no-return. |
| ADR Writer | Documents an architecture decision, the alternatives rejected, and the consequences accepted. |
| Tech Debt Assessor | Ranks technical debt by cost-of-delay vs. effort, including what's not worth fixing. |
🔐 Security (skills/security/)
| Skill | Description |
|---|---|
| Threat Modeler | Performs proactive, pre-implementation threat modeling (STRIDE-style) before a feature is built. |
| Secrets Scanner | Narrowly scans code and config for hardcoded secrets, credentials, and tokens. |
| Auth Flow Reviewer | Deep review of authentication, session, and SSO/OAuth flows specifically. |
| Compliance & Privacy Reviewer | Reviews PII handling, retention, and consent against common privacy-framework principles. |
| Incident Postmortem Writer | Structures raw incident notes into a blameless postmortem with action items. |
🚀 Productivity (skills/productivity/)
| Skill | Description |
|---|---|
| Meeting Notes Distiller | Turns raw meeting notes/transcripts into decisions and action items. |
| Task Breakdown Assistant | Breaks a single ticket/task into concrete, sequenced subtasks. |
| Onboarding Guide Generator | Generates a new-engineer onboarding guide from a codebase's actual structure. |
| Retro Facilitator | Structures raw sprint retro notes into themes and concrete actions. |
| Interview Question Generator | Generates technical interview questions plus an evaluation rubric. |
🔧 Utilities (skills/utilities/)
| Skill | Description |
|---|---|
| Regex Explainer | Explains what a regex does in plain English, or builds one from a description. |
| Naming Consultant | Suggests consistent, well-reasoned names for variables, functions, and files. |
| Log Message Improver | Improves logging statements for observability — level, structure, and context. |
| Cron Expression Translator | Translates cron expressions to plain English and back. |
| Environment Config Auditor | Reviews .env/config files for consistency across environments. |
Standard Skill Structure
Every skill follows the same layout:
skills/<category>/<skill-name>/
├── SKILL.md # Instructions the AI agent actually reads (YAML frontmatter + body)
├── README.md # Human-facing docs: what it does, when to use it, examples
└── examples/
└── example.md # A worked example of the skill in action
Full spec: docs/SKILL_SPEC.md. Contribution steps: CONTRIBUTING.md.
Using a Skill
Option 1 — CLI (recommended): install directly from this repo with npx, no clone or npm publish required.
# install one skill
npx github:codebygarv/Ai-skills add grill-me
# install several at once
npx github:codebygarv/Ai-skills add pr-reviewer security-auditor
# see everything available
npx github:codebygarv/Ai-skills list
# install somewhere other than the default ./.claude/skills
npx github:codebygarv/Ai-skills add grill-me --target .ai/skills
By default this drops each skill into .claude/skills/<skill-name>/ in your current directory — Claude Code picks up skills from there automatically. Point --target elsewhere for other agents/conventions.
Option 2 — manual: browse the catalogue below, open a skill's README.md, and copy the skill's folder into your agent's skills directory yourself.
Cloned this repo locally instead? Run the same commands with node bin/ai-skills.js in place of npx github:codebygarv/Ai-skills.
Composing Skills
Skills are designed to be composable — stack them for deeper workflows:
GrillMe + Architecture Reviewer + Security Auditor = Deep Technical Review
Roadmap
- Phase 1 — Foundation: repo structure, skill spec, 50 skills across 9 categories, root docs, contribution guidelines, CI test suite.
- Phase 2 — Discovery: skill catalogue site, categories/tags/metadata, search, popularity indicators.
- [~] Phase 3 — Installation:
add/listCLI usable vianpx github:codebygarv/Ai-skills✅ — still to do: npm registry publish,update/removecommands, versioning. - Phase 4 — Community: community submissions, reviews, ratings, discussions, featured/trending skills.
Development
No dependencies — the CLI and tests use only the Node standard library (Node 18+).
npm test # run the test suite (Node's built-in runner)
npm run lint # validate every skill's structure and frontmatter
npm run check # both
Tests cover the CLI end-to-end (install, multi-install, --target, error paths, exit codes) and catalogue integrity — every skill matches docs/SKILL_SPEC.md, skill names are unique, and the README's catalogue links and skill counts stay in sync with what's actually on disk. Both run in CI on every push and PR.
Contributing
New skills, fixes, and improvements are welcome — see CONTRIBUTING.md for the process and quality bar.
Long-Term Vision
Instead of every developer maintaining their own private collection of prompts and agent instructions, they discover specialized, vetted skills from one shared ecosystem — the place you go whenever you think "I need my AI agent to be really good at this specific task."
// faq
What is Ai-skills?
A community-driven catalogue of 50 reusable AI agent skills for Claude Code , Antigravity, Cursor Ai , kimi , deepseek ,Mimo — code review, security auditing, architecture review, and more. Install any skill with one npx command.. It is open-source on GitHub.
Is Ai-skills free to use?
Ai-skills is open-source under the MIT license, so it is free to use.
What category does Ai-skills belong to?
Ai-skills is listed under devtools in the Claudeers registry of Claude-compatible tools.
// embed badge
[](https://claudeers.com/ai-skills)
// retro hit counter
[](https://claudeers.com/ai-skills)
// reviews
// guestbook
// related in Developer Tools
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Curs…
Use Garry Tan's exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA
AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…
Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.