travisvn/awesome-claude-skills

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code

License:UnknownLanguage:N/A5.1k322
agentic-codinganthropicawesomeawesome-listawesome-listsClaudeclaude-aiclaude-codeclaude-desktopclaude-skillsclaudeskills

Deep Analysis

精选 Claude Skills 资源列表,涵盖官方技能、文档处理、设计创意等多个分类。

Recommended

Core Features

官方技能

docx、pdf、pptx、xlsx 等官方文档技能

分类整理

按文档、设计、开发等分类整理

使用指南

详细的安装和使用说明

渐进披露

解释技能的渐进式加载架构

Technical Implementation

Architecture:Awesome List 模式
Execution Flow:
Web 安装

Claude.ai 设置中启用 Skills

CLI 安装

/plugin marketplace add 命令

API 使用

通过 /v1/skills 端点调用

Key Components:
Progressive Disclosure分层加载减少 token
Skills APIClaude API 技能端点
Highlights
  • 详细的技能工作原理说明
  • 覆盖多平台:Web、CLI、API
  • 分类清晰:官方、文档、设计
  • 持续更新维护
Use Cases
  • 发现和学习 Claude Skills
  • 了解技能工作原理
  • 找到特定领域的技能
Limitations
  • 资源列表而非工具
  • 需要自行评估技能质量
Tech Stack
MarkdownGitHub

Awesome Claude Skills

Awesome Claude Skills

Awesome
Last Updated
PRs Welcome

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows

Claude Skills teach Claude how to perform tasks in a repeatable way

They are specialized folders containing instructions, scripts, and resources that Claude dynamically discovers and loads when relevant to tasks.

How Skills Work

Skills employ a progressive disclosure architecture for efficiency:

  1. Metadata loading (~100 tokens): Claude scans available Skills to identify relevant matches
  2. Full instructions (<5k tokens): Load when Claude determines the Skill applies
  3. Bundled resources: Files and executable code load only as needed

This design allows multiple Skills to remain available without overwhelming Claude's context window.

🚀 Getting Started

Claude.ai Web Interface

  1. Go to Settings > Capabilities
  2. Enable Skills toggle
  3. Browse available skills or upload custom skills
  4. For Team/Enterprise: Admin must enable Skills organization-wide first

Claude Code CLI

# Install skills from marketplace
/plugin marketplace add anthropics/skills

# Or install from local directory
/plugin add /path/to/skill-directory

Claude API

Skills are accessible via the /v1/skills API endpoint. See the Skills API documentation for detailed integration examples.

import anthropic

client = anthropic.Client(api_key="your-api-key")
# See API docs for full implementation details

🎯 Official Skills

Document Skills

Skills for working with complex file formats:

  • docx - Create, edit, and analyze Word documents with support for tracked changes, comments, formatting preservation, and text extraction
  • pdf - Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms
  • pptx - Create, edit, and analyze PowerPoint presentations with support for layouts, templates, charts, and automated slide generation
  • xlsx - Create, edit, and analyze Excel spreadsheets with support for formulas, formatting, data analysis, and visualization

Design & Creative

  • algorithmic-art - Create generative art using p5.js with seeded randomness, flow fields, and particle systems
  • canvas-design - Design beautiful visual art in .png and .pdf formats using design philosophies
  • slack-gif-creator - Create animated GIFs optimized for Slack's size constraints

Development

  • frontend-design - Instructs Claude to avoid "AI slop" or generic aesthetics and to make bold design decisions. Works very well for React & Tailwind.
  • artifacts-builder - Build complex claude.ai HTML artifacts using React, Tailwind CSS, and shadcn/ui components
  • mcp-builder - Guide for creating high-quality MCP servers to integrate external APIs and services
  • webapp-testing - Test local web applications using Playwright for UI verification and debugging

Communication

  • brand-guidelines - Apply Anthropic's official brand colors and typography to artifacts
  • internal-comms - Write internal communications like status reports, newsletters, and FAQs

Skill Creation

  • skill-creator - Interactive skill creation tool that guides you through building new skills with Q&A

🌟 Community Skills

[!Warning]
Skills can execute arbitrary code in Claude's environment.

See Security & Best Practices for more information

Collections & Libraries

  • 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
    • Blog: Superpowers - Author's overview by Jesse Vincent
    • Installation: /plugin marketplace add obra/superpowers-marketplace
  • obra/superpowers-lab - Experimental skills for Claude Code Superpowers (see above)

    • Uses new techniques that are still being refined and tested (i.e. skills here may change over time)
    • Blog post about its development
    • Install from superpowers-marketplace plugin

Individual Skills

These will be broken down into categories once there are enough community skills available to list

Skill Description
ios-simulator-skill iOS app building, navigation, and testing through automation
ffuf-web-fuzzing Expert guidance for ffuf web fuzzing during penetration testing, including authenticated fuzzing with raw requests, auto-calibration, and result analysis
playwright-skill General-purpose browser automation using Playwright
claude-d3js-skill Visualizations in d3.js
claude-scientific-skills Comprehensive collection of ready-to-use scientific skills, including working with specialized scientific libraries and databases
web-asset-generator Generates web assets like favicons, app icons, and social media images
loki-mode Multi-agent autonomous startup system - orchestrates 37 AI agents across 6 swarms to build, deploy, and operate a complete startup from PRD to revenue

More community skills coming soon! Submit a PR to add your skill.

Tools

✏️ Creating Your First Skill

Step-by-Step Guide

Method 1: Use skill-creator (Recommended)

The easiest way to create a skill is to use the built-in skill-creator:

  1. Enable the skill-creator skill in Claude
  2. Ask Claude: "Use the skill-creator to help me build a skill for [your task]"
  3. Answer the interactive questions about your workflow
  4. Claude generates the complete skill structure for you

Method 2: Manual Creation

  1. Create folder structure:

    my-skill/
    ├── SKILL.md          # Main skill file with frontmatter
    ├── scripts/          # Optional executable scripts
    │   └── helper.py
    └── resources/        # Optional supporting files
        └── template.json
    
  2. Create SKILL.md with frontmatter:

    ---
    name: my-skill
    description: Brief description for skill discovery (keep concise)
    ---
    
    # Detailed Instructions
    
    Claude will read these instructions when the skill is activated.
    
    ## Usage
    Explain how to use this skill...
    
    ## Examples
    Provide clear examples...
    
  3. Add executable scripts (optional):

    • Python, JavaScript, or other scripts Claude can execute
    • Reference them in your SKILL.md instructions
  4. Test locally:

    • Install the skill in Claude Code or Claude Desktop
    • Test with relevant tasks
    • Iterate and refine
  5. Share:

    • Publish to GitHub
    • Submit to this awesome list via PR
    • Share with your team via git repos or internal distribution

Best Practices

  • Keep descriptions concise - The frontmatter description is used for skill discovery
  • Use clear, actionable instructions - Write instructions as if for a human collaborator
  • Include examples - Show specific examples in your SKILL.md
  • Version your skills - Use git tags for version management
  • Document dependencies - List any prerequisites or required packages
  • Test thoroughly - Verify your skill works across different scenarios

📚 Official Documentation & Resources

Getting Started

Documentation

  • [Claude Skills Annou
    ... (内容已截断)
Highly Recommended
agents

wshobson/agents

wshobson

Intelligent automation and multi-agent orchestration for Claude Code

The most comprehensive Claude Code plugin ecosystem, covering full-stack development scenarios with a three-tier model strategy balancing performance and cost.

25.6k2.8k3 days ago
Highly Recommended
awesome-claude-skills

ComposioHQ/awesome-claude-skills

ComposioHQ

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows

The most comprehensive Claude Skills resource list; connect-apps is a killer feature.

19.9k2.0k3 days ago
Recommended
oh-my-opencode

code-yeongyu/oh-my-opencode

code-yeongyu

The Best Agent Harness. Meet Sisyphus: The Batteries-Included Agent that codes like you.

Powerful multi-agent coding tool, but note OAuth limitations.

17.5k1.2k3 days ago
Highly Recommended
ui-ux-pro-max-skill

nextlevelbuilder/ui-ux-pro-max-skill

nextlevelbuilder

An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms

Essential for designers; comprehensive UI/UX knowledge base.

15.3k1.5k3 days ago
Recommended
claude-mem

thedotmack/claude-mem

thedotmack

A Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sessions.

A practical solution for Claude's memory issues.

14.0k9143 days ago
Highly Recommended
planning-with-files

OthmanAdi/planning-with-files

OthmanAdi

Claude Code skill implementing Manus-style persistent markdown planning — the workflow pattern behind the $2B acquisition.

Context engineering best practices; an open-source implementation of Manus mode.

9.3k8113 days ago