v0.3 · Updated 2026-05-22 · A-to-Z guide

Everything Claude,
in one place.

The pro reference for working with Claude across every surface — skills, MCP servers, plugins, slash commands, hooks, the API, and the 4.x model family. Built for engineers who ship.

0skills indexed
0MCP servers
0guide pages
0Claude surfaces
📄 pdf 🎨 figma-use 🔒 security-review
Features / Bento · 6 cols × 2 rows
Concept

What is a Claude Skill?

A portable, model-agnostic capability bundle. Three pieces, one folder.

SKILL.md is the contract

YAML frontmatter says when the skill loads. Markdown body says what to do. That's the whole interface — no SDK, no compile step, no runtime.

--- name: my-skill description: Trigger when… ---

Bundled assets

Scripts, templates, schemas, reference docs — anything Claude reads or executes while the skill is active. Loaded lazily.

Progressive disclosure

Only the description is always loaded. Body + bundled files pulled only when the skill triggers.

1 Description always loaded
2 Body loaded on trigger
3 Files opened on demand

Cross-surface

Same folder works in Claude Code, API, claude.ai, and desktop.

Scoped tools

allowed-tools caps what a skill can do. Safer by default.

Composable

Skills stack. One prompt can light up many at once.

Install / Surfaces · Grid 2×2
Install

Install on any Claude surface

Skills work in Claude Code (CLI + IDE), the Claude API, claude.ai, and the desktop apps.

CLI

Claude Code

Drop a skill folder into ~/.claude/skills/ (user) or .claude/skills/ (project). Restart the session — Claude auto-discovers it.

# user-wide
git clone https://github.com/anthropics/skills ~/.claude/skills-src
cp -r ~/.claude/skills-src/document-skills/pdf ~/.claude/skills/
Full Claude Code instructions →
API

Claude API

Use the code_execution tool plus the Skills container. Upload skill folders to the Files API and reference them in your request.

# Anthropic SDK
client.beta.messages.create(
  model="claude-opus-4-7",
  betas=["skills-2025-10-02"],
  container={"skills": ["pdf", "xlsx"]},
  ...
)
Full API instructions →
WEB

claude.ai

Settings → Capabilities → Skills. Toggle the official Anthropic skills (PDF, Word, Excel, PowerPoint) or upload a custom one as a folder.

Walkthrough with screenshots →
MCP

via Plugins / MCP

Some skills ship as part of a Claude Code plugin or MCP server (e.g., Figma, Playwright). Install via the plugin marketplace or claude plugin install.

Plugin install guide →