Claude Code Skills: Resources & Repos

Claude Code Skills: Resources & Repos

A curated list of resources for finding, creating, and managing Claude Code skills.

*Source: Claude Code Skills docs Anthropic Skills best practices linked repositories and directories below*

Official Documentation

Introduction & Advanced

code.claude.com/docs/en/skills

Best Practices

platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices

Essential for understanding how Anthropic expects tools to be structured and described.


Official Repository

Anthropic Skills

github.com/anthropics/skills ⭐ 46.9k

The primary source for official skills and implementation examples.


Community & Curated Lists

Awesome Claude Skills

github.com/ComposioHQ/awesome-claude-skills ⭐ 22.7k

Pre-built skills for third-party apps:

  • Slack
  • Gmail
  • GitHub
  • And more…

Frameworks & Methodologies

Obra Superpowers

github.com/wln/obra-superpowers ⭐ 31k

Focuses on the architectural side of giving AI “superpowers” through modular skills.


Skill Marketplaces

Skills MP

skillsmp.com

A directory with 70,000+ indexed skills.


Automation Tools

Skill Seekers

github.com/yusufkaraaslan/Skill_Seekers

Automatically converts into usable Skills:

  • Websites
  • Codebases
  • PDF files

HyperSkill

github.com/hyperbrowserai/hyperbrowser-app-examples/…/hyperskills

Auto-generates SKILL.md documentation from any web source. Built with Next.js, Hyperbrowser SDK, Serper API, and GPT-4o. Three modes:

Mode What It Does
Single Skill Input a topic or URL → generates one SKILL.md
Batch Mode Generate multiple skills at once
Skill Tree Generate a hierarchy of related skills

Useful for quickly turning existing documentation, API references, or tutorials into Claude Code skills without writing SKILL.md by hand.


Courses & Tutorials

Learn Claude Code — Build an AI Agent from Scratch

github.com/shareAI-lab/learn-claude-code | Interactive Platform: learn.shareai.run

A 12-lesson course that teaches Claude Code internals by building a complete AI coding agent (s_full.py) step by step. Each lesson builds on the previous one:

Section Topics
Foundation (1-3) Agent Loop basics, Bash Tool, Tool registration & scheduling
Intermediate (4-6) Sub-agent task decomposition, Skills dynamic loading, context compression, task persistence, async execution
Advanced (7-9) Multi-agent teams, custom inter-agent protocols, worktree isolation
Final Combine all 12 lessons into s_full.py — a complete AI coding agent

The interactive platform at learn.shareai.run provides a visual learning experience (recommended over just reading the repo). Chinese README available at README-zh.md.

Why this matters: After completing this course, you understand what Claude Code is actually doing under the hood — Agent Loop, Tool system, Skills, Subagents — not just how to use it. This maps directly to the Claude Certified Architect exam domains.

Anthropic Academy (Free)

anthropic.skilljar.com — 13 free courses including the 8.1-hour “Building with the Claude API” flagship course. See Claude Certified Architect entry for details.


The Nine Skill Types

A community taxonomy classifies Claude Code skills into nine categories:

# Type What It Does Example
1 API Expert Deep knowledge of a specific API/SDK Claude API skill, AWS SDK skill
2 Product Integration Connect Claude to external products Slack, GitHub, Jira skills
3 Tutorial & Guide Step-by-step learning workflows learn-claude-code, onboarding skills
4 Ecosystem Integrator Bridge multiple tools into unified workflows Gstack (25 skills), Superpowers
5 Code Guardian Quality enforcement, linting, security checks Code review, test runner skills
6 Code Orchestrator Multi-step build/deploy/ship workflows Ship, land-and-deploy skills
7 CLAUDE.md Assistant Manage and optimize CLAUDE.md files claude-md-management, revise-claude-md
8 Runbook (Operations) DevOps, incident response, monitoring Canary, careful, guard skills
9 Research Navigator Academic research, literature, analysis Academic-researcher, citation skills

Best Practices for Building Skills

Practice Detail
Start with SKILL.md Skills are not just Markdown — they’re assets, templates, file layouts, flexible structures
Phase-driven design Break skills into checkpointed phases, not one giant prompt
Mental model first Define the thinking pattern before the steps
Hook integration Use hooks for automatic verification, not prompt suggestions
Measure & iterate Most skills start as a few lines and evolve as edge cases appear

“Skills are powerful and flexible tools, but still early stage. Treat these as a collection of useful tips, not an authoritative guide. The best way to understand skills is to start, experiment, and see what works.”


How LearnAI Team Could Use This

  • Discover existing skills before building new ones — check marketplaces and community lists first.
  • Use the official skill creation docs and frameworks to build LearnAI-specific skills (wiki generation, course review, research synthesis).
  • Evaluate skills by the 9-type taxonomy to ensure the team has coverage across workflow needs.

Real-World Use Cases

  • Finding and installing research-focused skills (literature review, citation management, paper analysis).
  • Creating custom team skills for recurring workflows (wiki entry generation, exam auditing, slide creation).
  • Browsing community skill directories for inspiration before building from scratch.

Quick Reference

Resource Type Best For
Official Docs Documentation Learning the spec
anthropics/skills Repo Official examples
awesome-claude-skills Repo Pre-built integrations
obra-superpowers Repo Architecture patterns
skillsmp.com Marketplace Browsing 70k+ skills
Skill Seekers Tool Auto-generating skills from files
HyperSkill Tool Auto-generating SKILL.md from web sources
Learn Claude Code Course Building agents from scratch
Anthropic Academy Course Free CCA-F exam prep (13 courses)

Getting Started

  1. Read the official docs to understand skill structure
  2. Browse awesome-claude-skills for inspiration
  3. Check skillsmp.com if you need something specific
  4. Use Skill Seekers to convert existing resources into skills
  5. Publish your own skills to share with the community