claudeers.
// Developer Tools

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…

// Developer Tools[ cli ][ api ][ desktop ][ mobile ][ claude ]#claude#claude-code#devtoolsMIT$open-sourceupdated 5 days ago

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.
// or clone
git clone https://github.com/codebygarv/Ai-skills

// compatibility

Platformscli, api, desktop, mobile
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageJavaScript

AI Skills Hub

A community-driven collection of reusable AI skills — for discovering, exploring, and reusing specialized agent capabilities.

visitors

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.

  1. Assumption: flag reads are cheap. At 10x traffic, this competes for connections with actual business queries — a flag check can degrade checkout.
  2. 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.
  3. 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/)

SkillDescription
GrillMeChallenges ideas, assumptions, architecture, and decisions instead of blindly agreeing.
Devil's AdvocateTakes the opposing position and identifies weaknesses in an idea or decision.
DeepThinkBreaks complicated problems into smaller reasoning steps and evaluates multiple approaches.
Decision MakerCompares multiple solutions and produces a structured recommendation based on trade-offs.
Requirements ExtractorConverts vague requirements into clear functional and technical requirements.

💻 Development (skills/development/)

SkillDescription
Code ReviewerReviews source code for bugs, readability, maintainability, performance, and best practices.
PR ReviewerPerforms a pull-request-style review and organizes findings by severity.
Bug HunterSearches code for potential bugs, edge cases, race conditions, and incorrect assumptions.
Refactor ExpertIdentifies unnecessarily complicated code and proposes cleaner implementations.
TypeScript GuardianFocuses on TypeScript safety, types, generics, any usage, interfaces, and type design.
API DesignerHelps design REST APIs, routes, request/response structures, validation, and conventions.
Database ArchitectReviews database schemas, relationships, indexes, constraints, and data modeling.
Security AuditorAnalyzes implementations for common security weaknesses and unsafe practices.
Performance AuditorLooks for performance bottlenecks in frontend, backend, database, and network code.
Dependency AuditorReviews package dependencies for bloat, outdated patterns, duplication, and risk.

🎨 UI / UX (skills/ui-ux/)

SkillDescription
UI AuditorReviews interfaces for visual consistency, spacing, hierarchy, and design-system compliance.
Responsive CheckerAnalyzes whether a UI behaves correctly across mobile, tablet, and desktop layouts.
Accessibility AuditorChecks interfaces against accessibility principles: keyboard nav, semantics, contrast, labels.
Design System GuardianDetects hardcoded colors, spacing, typography, and widths that should use design tokens.
UI Text FormatterImproves UI copy, capitalization, labels, headings, and message consistency.

📝 Documentation & Communication (skills/documentation/)

SkillDescription
Documentation WriterCreates structured technical documentation from code, requirements, or notes.
README BuilderCreates professional README files for GitHub projects.
Changelog GeneratorConverts commits or dev updates into clean release notes and changelogs.
Commit Message ExpertGenerates consistent, meaningful Git commit messages based on changes.
Status Update WriterConverts raw dev notes into professional daily/weekly project updates.

🧪 Quality & Testing (skills/testing/)

SkillDescription
Test GeneratorCreates meaningful unit, integration, and component tests.
Edge Case HunterFocuses on unusual inputs, boundary conditions, empty states, and failure states.
Test Case DesignerConverts requirements into structured manual and automated test cases.
Test Coverage AnalyzerRisk-ranks untested behaviors and flags tests that create false confidence.
Flaky Test DiagnoserDiagnoses why a test fails intermittently and fixes the root nondeterminism.

🚀 Project & Architecture (skills/architecture/)

SkillDescription
Architecture ReviewerReviews application architecture for scalability, coupling, and maintainability issues.
Project PlannerConverts an idea into a structured development plan with milestones and phases.
Migration PlannerPlans incremental, reversible migrations with rollback points and a point-of-no-return.
ADR WriterDocuments an architecture decision, the alternatives rejected, and the consequences accepted.
Tech Debt AssessorRanks technical debt by cost-of-delay vs. effort, including what's not worth fixing.

🔐 Security (skills/security/)

SkillDescription
Threat ModelerPerforms proactive, pre-implementation threat modeling (STRIDE-style) before a feature is built.
Secrets ScannerNarrowly scans code and config for hardcoded secrets, credentials, and tokens.
Auth Flow ReviewerDeep review of authentication, session, and SSO/OAuth flows specifically.
Compliance & Privacy ReviewerReviews PII handling, retention, and consent against common privacy-framework principles.
Incident Postmortem WriterStructures raw incident notes into a blameless postmortem with action items.

🚀 Productivity (skills/productivity/)

SkillDescription
Meeting Notes DistillerTurns raw meeting notes/transcripts into decisions and action items.
Task Breakdown AssistantBreaks a single ticket/task into concrete, sequenced subtasks.
Onboarding Guide GeneratorGenerates a new-engineer onboarding guide from a codebase's actual structure.
Retro FacilitatorStructures raw sprint retro notes into themes and concrete actions.
Interview Question GeneratorGenerates technical interview questions plus an evaluation rubric.

🔧 Utilities (skills/utilities/)

SkillDescription
Regex ExplainerExplains what a regex does in plain English, or builds one from a description.
Naming ConsultantSuggests consistent, well-reasoned names for variables, functions, and files.
Log Message ImproverImproves logging statements for observability — level, structure, and context.
Cron Expression TranslatorTranslates cron expressions to plain English and back.
Environment Config AuditorReviews .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/list CLI usable via npx github:codebygarv/Ai-skills ✅ — still to do: npm registry publish, update/remove commands, 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.

2 views
17 stars
unclaimed
updated 5 days ago

// embed badge

Ai-skills on Claudeers
[![Claudeers](https://claudeers.com/api/badge/ai-skills.svg)](https://claudeers.com/ai-skills)

// retro hit counter

Ai-skills hit counter
[![Hits](https://claudeers.com/api/counter/ai-skills.svg)](https://claudeers.com/ai-skills)

// reviews

// guestbook

0/500

// related in Developer Tools

🔓

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Curs…

// devtoolsaffaan-m/JavaScript240,305MIT[ claude ]
🔓

Use Garry Tan's exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA

// devtoolsgarrytan/TypeScript128,278MIT[ claude ]
🔓

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,…

// devtoolssafishamsi/Python109,277MIT[ claude ]
🔓

Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.

// devtoolsDietrichGebert/JavaScript104,762MIT[ claude ]
→ see how Ai-skills connects across the ecosystem