Agent Skills

Skills to foldery z instrukcjami, skryptami i zasobami, które Claude ładuje dynamicznie żeby lepiej wykonywać specjalistyczne zadania. Zamiast upychać wszystko w system prompt — progressive disclosure: agent dostaje dostęp do konkretnych instrukcji dopiero gdy zdecyduje (lub user zdecyduje), że ich potrzebuje.

Oryginalnie wprowadzone przez Anthropic dla Claude Code, teraz open standard wspierany przez Codex, OpenCode i inne harnessy.

Description

GitHub: anthropics/skills — publiczne repozytorium z example skills

Download or use

# W Claude Code — dodaj marketplace:
/plugin marketplace add anthropics/skills
 
# Instalacja bezpośrednia:
/plugin install document-skills@anthropic-agent-skills
/plugin install example-skills@anthropic-agent-skills

W Claude.ai — skills dostępne na paid plans. Via API — Skills API Quickstart.

Reasoning for

Skills rozwiązują problem instruction budget — każde irrelevant instruction to token, który agent musi przetworzyć bez pożytku. Zamiast ładować wszystko upfront, skills umożliwiają progressive disclosure wiedzy i narzędzi.

Struktura skilla

my-skill/
├── SKILL.md          # Główne instrukcje + YAML frontmatter
├── response_template.md  # Opcjonalne szablony
└── CLIs/             # Opcjonalne bundled tools

Minimalny SKILL.md:

---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Instructions here]

Kategorie dostępnych skills

  • Creative & Design — art, music, brand guidelines
  • Development & Technical — testing, MCP server generation, TDD
  • Enterprise & Communication — communications, branding
  • Document Skills — DOCX, PDF, PPTX, XLSX (source-available, power Claude’s document capabilities)

Bezpieczeństwo

Skill registries (ClawHub, skills.sh) mogą wykonywać arbitrary code — traktuj jak npm install random-package. Czytaj co instalujesz.

Alternatives considered

  • Wszystko w CLAUDE.md / AGENTS.md — nie skaluje siÄ™, blows instruction budget
  • MCP servers — lepsze do tools, nie do instrukcji
  • Custom system prompts — brak progressive disclosure

Resources


Template: tool