mcpbeat Sign in

Claude Skills

The open format is called Agent Skills and works in Claude Code, Codex, Cursor and other agents — most people know it as Claude Skills.

Every Agent Skill we could find on GitHub, deduplicated by content. 79 354 files from 1 739 authors, of which 61 713 are unique — the rest is the same skill repackaged into someone else's repository. For each one: what it weighs in tokens, whether it ships runnable scripts, and which MCP servers it needs.

61 713
unique skills
out of 79 354 files found on GitHub
17 641
are copies
same content, someone else's repository
1 738
tokens, median
what a typical skill costs you in context
7 879
name collisions
two skills with one name cannot sit side by side

3 601–3 660 of 61 713

page 61 of 1 029
API Contract Design
by ComeOnOliver
×1

Design APIs using schema-first approach with OpenAPI/Swagger. Use when creating new APIs, documenting existing ones, or when frontend/backend teams need to work in parallel. Covers OpenAPI spec, validation, and code generation.

9k tokens
Changelog Generator
by ComeOnOliver
×1

Generate user-friendly release notes from git commits. Use this when preparing releases, writing changelogs, or summarizing development progress.

4k tokens
CI Pipeline Setup
by ComeOnOliver
×1

Set up CI/CD pipelines with GitHub Actions. Use when creating new projects, adding automation, or when manual verification becomes bottleneck. Covers lint, test, build, deploy automation.

5k tokens
Code Review
by ComeOnOliver
×1

Complete code review workflow for both requesting and receiving reviews. Use when creating PRs, reviewing code, or responding to feedback.

3k tokens
D3 Viz
by ComeOnOliver
×1

Create interactive data visualizations using D3.js. Use this when creating charts, graphs, network diagrams, geographic visualizations, or custom SVG-based data visualization.

4k tokens
Database Migration
by ComeOnOliver
×1

Manage database schema changes with version control. Use when modifying DB schema, adding tables/columns, or setting up new projects. Covers Prisma, Drizzle, and migration best practices.

6k tokens
Dependency Security
by ComeOnOliver
×1

Enforce dependency security scanning and SBOM generation. Use when adding dependencies, reviewing package.json, or during security audits. Covers OWASP dependency check, npm audit, and supply chain security.

5k tokens
Dispatching Parallel Agents
by ComeOnOliver
×1

Use when facing 3+ independent failures that can be investigated without shared state or dependencies. Dispatches multiple Claude agents to investigate and fix independent problems concurrently.

4k tokens
Error Handling
by ComeOnOliver
×1

Enforce proper error handling patterns. Use when writing async code, API calls, or user-facing features. Covers try-catch, error boundaries, graceful degradation, and user feedback.

6k tokens
Executing Plans
by ComeOnOliver
×1

Execute plan in batches with review checkpoints. Use when partner provides a complete implementation plan to execute with controlled batches and architect review between batches.

4k tokens
Git Workflow
by ComeOnOliver
×1

Complete Git workflow from conventional commits to pre-completion verification. Use for all Git operations including commits, branches, and releases.

3k tokens
Line Limit
by ComeOnOliver
×1

Enforce file line count limits (200 recommended, 300 max) for CODE IMPLEMENTATION files only. Use this when reviewing code, creating files, or when files exceed line limits and need modularization.

6k tokens
Ml Antipattern Validator
by ComeOnOliver
×1

Prevents 30+ critical AI/ML mistakes including data leakage, evaluation errors, training pitfalls, and deployment issues. Use when working with ML training, testing, model evaluation, or deployment.

20k tokens scripts
No Hardcoding
by ComeOnOliver
×1

Forbid hardcoded values in code. Use this when reviewing code, writing new features, or when magic numbers/strings are detected. Enforces constants, env variables, and config files.

4k tokens
Performance Vitals
by ComeOnOliver
×1

Enforce Core Web Vitals optimization. Use when building user-facing features, reviewing performance, or when Lighthouse scores drop. Covers LCP, FID/INP, CLS, and optimization techniques.

6k tokens
Planning
by ComeOnOliver
×1

Transform ideas into actionable implementation plans. Combines Socratic questioning for requirements discovery with detailed task breakdown for zero-context engineers. Use before any feature development.

3k tokens
Project Structure
by ComeOnOliver
×1

Organize project folders following industry best practices. Use when setting up new projects, reorganizing codebases, or when folder structure becomes messy. Covers Next.js, Bulletproof React, and FSD patterns.

6k tokens
Prompt Engineering
by ComeOnOliver
×1

Advanced prompt engineering techniques for optimal AI responses. Use this when crafting prompts, optimizing AI interactions, or designing system prompts for applications.

3k tokens
Readme For Developers
by ComeOnOliver
×1

Write developer-oriented README as onboarding documentation. Use when creating/updating README, setting up new projects, or when new developers need to understand the codebase quickly. README = Entry point + Architecture overview + Working agreement.

6k tokens
Report Writing
by ComeOnOliver
×1

작업 완료 후 상세 리포트 문서를 작성. 변경 이력, 영향도 분석, 검증 결과를 문서화할 때 사용. 파일명 규칙 YYYY-MM-DD-<제목>-report.md

4k tokens
Safe Edit
by ComeOnOliver
×1

Automatically backs up files, saves diffs, uses agents/skills, and ensures modular code (<200 lines) before any implementation. Use this skill for ALL code changes to ensure safe, reversible, and clean implementations.

11k tokens
Skill Creator
by ComeOnOliver
×1

Guide for creating new Claude skills. Use this when creating a new skill, updating existing skills, or learning best practices for skill development.

4k tokens
Skill Management
by ComeOnOliver
×1

Create, update, test, and manage Agent Skills. Use when creating new skills, debugging existing ones, or organizing skill libraries. Based on official Claude Code documentation.

5k tokens
Software Architecture
by ComeOnOliver
×1

Clean Architecture and SOLID principles guide. Use this when designing systems, reviewing architecture, or making structural decisions.

4k tokens
Structured Logging
by ComeOnOliver
×1

Implement JSON-based structured logging for observability. Use when setting up logging, debugging production issues, or preparing for log aggregation (ELK, Datadog). Covers log levels, context, and best practices.

6k tokens
Subagent Driven Development
by ComeOnOliver
×1

Use when executing implementation plans with independent tasks in the current session. Dispatches fresh subagent for each task with code review between tasks.

4k tokens
Systematic Debugging
by ComeOnOliver
×1

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes. Four-phase framework ensuring understanding before attempting solutions.

3k tokens
Testing Strategy
by ComeOnOliver
×1

Comprehensive testing workflow combining TDD, real implementations (no mocking), and E2E testing. Use when implementing features, writing tests, or setting up test infrastructure.

3k tokens
Triforce Sync Check
by ComeOnOliver
×1

Verify 3-Mirror skill sync consistency across .public/skills, .codex/skills, and .claude/skills. Use after skill changes, before commits, or for CI validation.

4k tokens
Typescript Strict
by ComeOnOliver
×1

Enforce TypeScript strict mode and type safety. Use when setting up projects, reviewing code, or when type errors are ignored. Covers strict flags, no-any rules, and type inference best practices.

5k tokens
Using Git Worktrees
by ComeOnOliver
×1

Create isolated git worktrees with smart directory selection and safety verification. Use this when starting feature work that needs isolation, parallel development, or safe experimentation.

4k tokens
Virtual Environment
by ComeOnOliver
×1

Check and create virtual environments for projects that need them. Use when starting Python/Node projects, or when dependency isolation is needed. Activates for Python, Node.js, and similar ecosystems.

4k tokens
Youtube Transcript
by ComeOnOliver
×1

Download and process YouTube video transcripts using yt-dlp. Use this when extracting subtitles, creating summaries from videos, or processing video content.

3k tokens
Htmx Skill
by ComeOnOliver
×1

Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question.

91k tokens scripts
Post
by ComeOnOliver
×1
66 tokens
Htmx Skill
by ComeOnOliver
×1

Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question.

123 tokens
AI Runtime Memory
by ComeOnOliver
×1

AI Runtime分层记忆系统,支持SQL风格的事件查询、时间线管理,以及记忆的智能固化和检索,用于项目历史追踪和经验传承

23k tokens scripts zh
External Tools Skill
by ComeOnOliver
×1

外部CLI工具装备系统,支持10+个成熟CLI工具的深度整合,包括fzf、ripgrep、jq等,提供模糊搜索、代码查找、JSON处理等高级功能

967 tokens zh
AI Runtime Toolkit
by ComeOnOliver
×1

AI Runtime工具装备系统,支持8个内部专业工具和10+个外部CLI工具的整合管理,提供工具发现、执行和配置功能,遵循整合优于创造的设计理念

50k tokens scripts zh
Ast Grep
by ComeOnOliver
×1

语法感知的代码搜索、linting 和重写工具。支持基于 AST 的结构化代码搜索和批量代码转换。

7k tokens zh
Codeconscious Identity
by ComeOnOliver
×1

CodeConscious认知主体性AI助手的核心身份定义和操作命令系统,提供/runtime.*系列命令用于探索、学习、思考、规划和执行,支持宪法治理和记忆管理

62k tokens zh
Context7
by ComeOnOliver
×1

Search GitHub issues, pull requests, and discussions across any repository. Activates when researching external dependencies (whisper.cpp, NAudio), looking for similar bugs, or finding implementation examples.

5k tokens
Exa
by ComeOnOliver
×1

使用 Exa.ai API 进行高质量的互联网搜索。需要 EXA_API_KEY 环境变量。

3k tokens scripts zh
Improve Skill
by ComeOnOliver
×1

Analyze coding agent session transcripts to improve existing skills or create new ones. Use when asked to improve a skill based on a session, or extract a new skill from session history.

6k tokens scripts
Knowledge Base
by ComeOnOliver
×1

专业的知识库管理系统,旨在解决“知识诅咒”和认知偏差问题。通过显式化隐性知识、扫描代码提取领域概念、整合行业最佳实践,构建结构化的 Markdown 知识库。

14k tokens scripts zh
Project Planner
by ComeOnOliver
×1

Comprehensive project planning and documentation generator for software projects. Creates structured requirements documents, system design documents, and task breakdown plans with implementation tracking. Use when starting a new project, defining specifications, creating technical designs, or breaking down complex systems into implementable tasks. Supports user story format, acceptance criteria, component design, API specifications, and hierarchical task decomposition with requirement traceability.

33k tokens scripts
SVG Logo Generator
by ComeOnOliver
×1

Generate high-quality, minimalistic, and geometric SVG logos using Python scripts. Use this skill when users need to create logos, icons, or visual identities with geometric primitives (circles, rects, paths) and specific color schemes. Applies generative design principles with standardized workflows for scalable SVG output.

3k tokens
System Design
by ComeOnOliver
×1

Use when designing, architecting, or planning a new system from requirements or ideas - transforms concepts into navigable design catalog using EventStorming methodology, Mermaid diagrams, and progressive elaboration through 5 phases (Requirements, Big Picture, Processes, Data/Flows, Integration)

7k tokens
Tavily Search Free
by ComeOnOliver
×1

Use Tavily Search API for optimized, real-time web search results for RAG. A pre-configured, cost-effective search tool.

16k tokens scripts zh
Tmux
by ComeOnOliver
×1

Remote control tmux sessions for interactive CLIs, background tasks, and services. Supports sub-tasks, long-running processes, and service management with session persistence and automatic cleanup.

11k tokens scripts
Web Browser
by ComeOnOliver
×1

Allows to interact with web pages by performing actions such as clicking buttons, filling out forms, and navigating links. It works by remote controlling Google Chrome or Chromium browsers using the Chrome DevTools Protocol (CDP). When Claude needs to browse the web, it can use this skill to do so.

11k tokens scripts
Workhub
by ComeOnOliver
×1

工作文档枢纽,强制执行 SSOT(Single Source of Truth)原则,管理 `docs/` 目录下的架构决策、设计文档、Issues(任务规划)、PRs(变更记录)。支持 GitHub 协作开发模式。

12k tokens scripts zh
Ambiguous Question Guide
by ComeOnOliver
×1

判断政务服务问题是否模糊,识别缺失要素(主语、证照名称、具体环节),生成精准的政务服务引导语。当用户提出不完整的办事问题或需要引导用户提供更多信息时使用。

11k tokens zh
Brainstorming
by ComeOnOliver
×1

Use when creating or developing anything, before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, and incremental validation

5k tokens
Dispatching Parallel Agents
by ComeOnOliver
×1

Use when facing 3+ independent failures that can be investigated without shared state or dependencies - dispatches multiple Claude agents to investigate and fix independent problems concurrently

5k tokens
Executing Plans
by ComeOnOliver
×1

Use when partner provides a complete implementation plan to execute in controlled batches with review checkpoints - loads plan, reviews critically, executes tasks in batches, reports for review between batches

3k tokens
Professional Senior Chrome Extension Architect Developer
by ComeOnOliver
×1

Verwandelt den Agenten in einen professionellen MV3-Architekten und Entwickler mit Fokus auf AI-Integration, Sicherheit, Performance, Testing und Publishing-Compliance.

19k tokens scripts
Requesting Code Review
by ComeOnOliver
×1

Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches code-reviewer subagent to review implementation against plan or requirements before proceeding

5k tokens
Root Cause Tracing
by ComeOnOliver
×1

Use when errors occur deep in execution and you need to trace back to find the original trigger - systematically traces bugs backward through call stack, adding instrumentation when needed, to identify source of invalid data or incorrect behavior

6k tokens scripts
Sharing Skills
by ComeOnOliver
×1

Use when you've developed a broadly useful skill and want to contribute it upstream via pull request - guides process of branching, committing, pushing, and creating PR to contribute skills back to upstream repository

4k tokens

Claude Skills — questions

Answers built from the skills we actually parsed.

What is a Claude Skill?
A folder with a SKILL.md file: instructions that teach an agent to do one thing well, optionally with scripts and reference files alongside. The format is open and called Agent Skills — Claude Code, Codex and other agents read the same files. It is not a program you run; it is knowledge the agent loads when the task calls for it.
How is a skill different from an MCP server?
A server gives the agent new abilities — it connects to something and exposes tools. A skill gives the agent knowledge: how to use what it already has. They combine, and often literally: 11 329 of the skills here declare which MCP servers they need to work.
Why are there fewer skills here than in other catalogues?
Because we deduplicate by content. Of 79 354 files found on GitHub, 61 713 are unique — the rest is the same skill copied into someone else's repository, word for word. Catalogues that count files rather than skills show every copy as a separate entry.
What does the token count mean?
A skill is loaded into the model's context when it is used, so its size is a running cost on every request that touches it. We measure the whole folder, not just SKILL.md: one official skill is 377 tokens, another drags 83 files of fonts behind it.
How do I install a skill?
Copy the skill folder into ~/.claude/skills for personal use, or into .claude/skills inside a project. The agent picks it up by the name in the SKILL.md header — which is worth checking: 7 879 skills here share a name with another skill, and two of them cannot sit side by side.