GitHub
github.com › anthropics › skills
GitHub - anthropics/skills: Public repository for Agent Skills
1 week ago - Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches. Many skills in this repo are open source (Apache 2.0).
Starred by 29.6K users
Forked by 2.7K users
Languages Python 83.9% | JavaScript 9.4% | HTML 4.3% | Shell 2.4%
Reddit
reddit.com › r/claudeai › i created a collection of claude skills
r/ClaudeAI on Reddit: I created a collection of Claude Skills
October 17, 2025 -
Hey everyone.
I have compiled a curated list of all known Claude Skills (both official ones from Anthropic and community-built projects found across GitHub).
Each skill has a clear description and a link to its repository, so you can plug them directly into your Claude setup or use them as templates to create your own.
Check it out:
https://github.com/BehiSecc/awesome-claude-skills
I created a collection of Claude Skills
404 for most links in your list. More on reddit.com
Now that we're one week into the Claude Skills, what are some of the most interesting use cases you've had for them so far?
I have been working on a skill that keeps SpecKit updated in my projects. It is getting close to a v1.0. https://github.com/NotMyself/claude-win11-speckit-update-skill More on reddit.com
The Busy Person's Intro to Claude Skills (a feature that might be bigger than MCP)
Both SKILL.md and CLAUDE.md are case sensitive. The key features of skills are that they are progressively disclosed. With SKILLS.md, Claude loads only the YAML front matter into the context window to let Claude know that a skill is available and when to invoke it. When invoked, the main SKILL.md file is loaded into context window. That SKILL.md file can have references to other files in a reference folder which are also loaded on as needed basis. You may have testing skill with a mocking API reference that is only need when…. You guessed it, mocking APIs. The SKILL.md should contain a link to the reference and indicate when to use those references. This allows you increase the amount of context available to your agent while only loading what is needed in your context window and any given time. If you were to put all of that information into your CLAUDE.md file it would be incredibly bloated. You would fill the context window more quickly, and but through API calls or limits more quickly. Now my primary CLAUDE.md has just project non-negotiables (maintain backwards compatibility whenever possible, certain important architectural decisions, more of a focus on what to never do) and then some reminders to use some skills. Claude sometimes forgets to invoke a skill so i have a section in Claude with some reminders, saying YOU MUST use “accessibility” skill designing and when testing UI components. Rules are new and also helpful for this. They are always loaded into the context window but they have a path string which accepts glob. so you could for example have a rule applied to JavaScript which specified to always use your JavaScript rule, which would force Claude to invoke skills more reliably. More on reddit.com
I’ve been tracking what people are building with Claude Skills since launch - here’s the wildest stuff I’ve found (with links)
Can we ban the term production ready? Also it’s kinda like having Claude auto pick the correct project for a task which is where people would’ve put this type of custom instructioning and acc it’s useful. More on reddit.com
How often are skills updated?
Our scraper regularly syncs with GitHub to fetch the latest skills and updates. When a skill repository is updated on GitHub, the changes will appear on SkillsMP shortly after our next sync. You can see the last update timestamp on each skill card. We recommend checking back regularly for new skills and improvements to existing ones.
skillsmp.com
skillsmp.com › home
Agent Skills Marketplace - Claude, Codex & ChatGPT Skills | SkillsMP
What are Agent Skills?
Agent Skills are modular capabilities that extend AI coding assistants. Each skill consists of a SKILL.md file with instructions, plus optional scripts and templates. In December 2025, Anthropic released the Agent Skills specification as an open standard, and OpenAI adopted the same format for Codex CLI and ChatGPT. Skills are model-invoked—the AI automatically decides when to use them based on context.
skillsmp.com
skillsmp.com › home
Agent Skills Marketplace - Claude, Codex & ChatGPT Skills | SkillsMP
How do skills differ from slash commands?
Skills are model-invoked—Claude automatically decides when to use them based on context. Slash commands are user-invoked—you explicitly type the command to trigger them. Skills enable more intelligent, context-aware automation in your workflows.
skillsmp.com
skillsmp.com › home
Agent Skills Marketplace - Claude, Codex & ChatGPT Skills | SkillsMP
Videos
21:37
7 CLAUDE CODE Skills Every Beginner NEEDS To Master - YouTube
27:21
Claude Code Skills just Built me an AI Agent Team (2026 Guide) ...
23:32
Claude Skills Explained in 23 Minutes - YouTube
12:57
I Was Using Claude Skills Wrong... The Ultimate System - YouTube
r/ClaudeAI on Reddit: Claude can now use Skills
17:23
Claude Code just Built me an AI Agent Team (Claude Code + Skills ...
GitHub
github.com › travisvn › awesome-claude-skills
GitHub - travisvn/awesome-claude-skills: A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code
October 18, 2025 - obra/superpowers - Core skills library for Claude Code with 20+ battle-tested skills including TDD, debugging, and collaboration patterns · Features /brainstorm, /write-plan, /execute-plan commands and skills-search tool · superpowers-skills - Community-editable skills repository
Starred by 3.9K users
Forked by 249 users
SkillsMP
skillsmp.com › home
Agent Skills Marketplace - Claude, Codex & ChatGPT Skills | SkillsMP
November 11, 2025 - * For Claude Code: Add to ~/.claude/skills/ (personal) or .claude/skills/ (project). For OpenAI Codex CLI: Add to ~/.codex/skills/. Both use the same SKILL.md format. Clone the GitHub repository and copy the skill folder to your chosen directory.
GitHub
github.com › ComposioHQ › awesome-claude-skills
GitHub - ComposioHQ/awesome-claude-skills: A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
October 29, 2025 - A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows - ComposioHQ/awesome-claude-skills
Starred by 12.8K users
Forked by 1.4K users
Languages Python 92.0% | JavaScript 6.1% | Shell 1.9%
YouTube
youtube.com › watch
Claude Code Skills: Automate Everything You Do - YouTube
🤖 Download my FREE Claude Code cheat sheet with keyboard shortcuts, custom setup, and power-user workflows:https://github.com/bhancockio/claude-code-cheat-s...
Published October 28, 2025
Claude
code.claude.com › docs › en › skills
Agent Skills - Claude Code Docs
4 days ago - Project Skills: Commit .claude/skills/ to version control. Anyone who clones the repository gets the Skills.
DevelopersIO
dev.classmethod.jp › en › articles › claude-code-skills-subagent-plugin-guide
Creating a Claude Code Plugin and sharing it with your team | DevelopersIO
November 27, 2025 - database-migration-plugin/ ├── .claude-plugin/ │ └── plugin.json # Plugin manifest ├── .mcp.json # MCP Server configuration ├── agents/ │ └── migration-planner.md # Subagent ├── commands/ │ └── migrate.md # Slash Command ├── skills/ │ └── migration-best-practices/ │ └── SKILL.md # Skill ├── hooks/ │ └── hooks.json # Hook configuration └── scripts/ └── migration-check.sh # Hook script · Upload the created plugin to GitHub. After creating a repository on GitHub, follow the steps to push it. This comp
GitHub
github.com › simonw › claude-skills
GitHub - simonw/claude-skills: The contents of /mnt/skills in Claude's code interpreter environment
Starred by 896 users
Forked by 128 users