Skip to content
Agentic Levels

Everything starts here.

GuestLocal progress only
PreferencesSign in
01Start with one taskBest first move for beginners.02Check your LevelMeasure where you are.03Score an AI resultFind the habit to practice first.04Return to Your WorkScores, links, and checkpoints.
Start here

Begin

HomeThe main entry point.New to AIStart with one useful task.
Know where you are

Measure

Check your LevelUse this after you have tried AI.Fluency ScoreScore an AI result you can review.
Build the habit

Learn

LevelsLessonsTracks
Find the reference

Library

PromptsReferenceResourcesCompare Tools
Turn it into work

Apply

Your Next MoveChoose what AI should change next.Tool SetupGet the tools ready.
Come back later

Return

Your WorkScores, links, and checkpoints.My PathContinue from your level.Updates
Site

Site

PricingAboutFAQ & FeedbackPreferences

© 2026 Fuentes Studio

Privacy·Terms
yourCouncil
Ready to help
✦

What do you want to understand?

Ask anything about what you're learning.

← Resources

How to use Anthropic Skills Library

Anthropic's official skill library, includes production document-creation skills, the Agent Skills spec, and a plugin marketplace installable directly in Claude Code.

When you need a new capability in Claude Code, the first question is whether one already exists. The official library is the authoritative answer, and it includes more than just Claude Code skills. The document creation skills that power Claude.ai's native docx, pdf, pptx, and xlsx export capabilities are source-available here. The formal Agent Skills specification shows you how skills work across Claude Code, Claude.ai, and the Claude API. Install the entire library as a plugin marketplace with one command.

L3L4L5
Before you startClaude Code must be installed. Know how to install a skill with `claude skill install`, run `claude skill --help` to see available commands.

Steps

01

Browse the official skills list

Open the repo and read the top-level README. It lists every published skill with a one-line description. Confirm the capability you want is not already here before writing anything custom.

02

Install a skill and run it on a real task immediately

Pick a skill relevant to your current project, install it, and use it on something real right away. Skills that live only in the 'installed' state teach you nothing. Watching it run on your actual code is the fastest way to understand it.

Install and run
claude skill install [SKILL_NAME] # In a Claude Code session: /[SKILL_NAME] [YOUR_TASK]
[SKILL_NAME]Name of the skill from the library e.g. code-review
[YOUR_TASK]A task for the skill e.g. Review the authentication logic in src/lib/auth.ts
03

Read the SKILL.md to understand the structure

Every official skill has a SKILL.md that defines its trigger conditions, what it does, and what it returns. This file is the contract between the skill and the Claude Code runtime, and the template you follow when writing your own.

Ask Claude to explain the skill structure
Read the SKILL.md for the [SKILL_NAME] skill in the Anthropic skills library. Explain: 1. What triggers this skill? 2. What does it do step by step? 3. What does it return? 4. What would I change to adapt this pattern for a custom skill?
[SKILL_NAME]Skill name from the library e.g. code-review
04

Draft a custom skill based on an official template

If the library does not have what you need, copy an official skill as your starting point. Rewrite the SKILL.md for your use case, adapt the implementation. Starting from a known-good pattern is faster and produces skills that behave consistently.

Ask Claude to scaffold a custom skill
Using [REFERENCE_SKILL] from the Anthropic skills library as a template, create a new skill called [NEW_SKILL_NAME] that does: [SKILL_DESCRIPTION] Generate the complete folder structure and SKILL.md. Keep trigger conditions and output format consistent with Anthropic conventions.
[REFERENCE_SKILL]Official skill to use as template e.g. code-review
[NEW_SKILL_NAME]Name for your custom skill e.g. db-schema-review
[SKILL_DESCRIPTION]What your skill does e.g. Reviews SQL schema files for normalization issues, missing indexes, naming inconsistencies

How do you know it worked?

  • You installed at least one official skill and ran it on a real file in your project.
  • You can describe the three sections of a SKILL.md from memory.
  • You checked the official library before writing any custom skill.
  • If you wrote a custom skill, its SKILL.md follows official conventions.

If something looks off

Installing skills you will never use
Every installed skill adds to the context Claude Code loads at session start. Install only skills you plan to use. Remove unused ones with `claude skill uninstall`.
Writing custom skills before checking the library
The official library grows regularly. Check it before starting any custom skill work.
Trigger conditions that are too broad
'Any file' is not a trigger condition. 'A TypeScript file with exported async functions' is. Vague triggers fire when you do not want them to.

Skills & Commands Reference

The official Anthropic skill lifecycle, install, study, and build from reference.

Command / SkillWhat it doesWhen to use it
claude skill install [name]Install a skill from the official library into your Claude Code configAdding a capability you found in the library before writing anything custom
claude skill uninstall [name]Remove a skill, keeps session context leanAny skill you installed but no longer use: each one adds to session startup overhead
claude skill listShow all installed skills and their trigger conditionsAuditing what's active before starting a session with a narrow scope
SKILL.mdThe skill contract: trigger conditions, what it does, and what it returnsRead this for any official skill before using it; use it as your template for custom skills
/[skill-name] [task]Invoke an installed skill in a Claude Code sessionWhen the task falls within the skill's declared trigger domain
~/.claude/skills/advancedLocal directory where installed skills live, editable markdown filesCustomizing an official skill for your stack or debugging unexpected behavior
/plugin marketplace add anthropics/skillsRegister the Anthropic skills repo as a plugin marketplace sourceOne-time setup, enables installing any official skill via /plugin install
/plugin install document-skills@anthropic-agent-skillsInstall the production docx/pdf/pptx/xlsx document creation skillsWhen you need Claude to generate formatted documents, not just text

See also

  • skill-creator: build and evaluate custom skills with grading agents

Was this helpful?

← Back to ResourcesView on GitHub