AIAny
AI Agent2025
Icon for item

Anthropic / skills

Folders pairing a SKILL.md (YAML metadata plus instructions) with optional scripts that Claude loads on demand to handle specific tasks. Bundles document skills (PDF, DOCX, PPTX, XLSX), a spec, and a starter template for authoring your own.

Introduction

The bottleneck for capable agents was rarely raw reasoning — it was loading domain-specific procedure into context without bloating every prompt. Skills answer that with progressive disclosure: Claude sees only a one-line name and description until a task actually matches, then pulls in the full folder of instructions, scripts, and assets. This repository is Anthropic's reference collection plus the open specification for that format.

What Sets It Apart
  • A skill is just a folder. The minimum is a SKILL.md with YAML frontmatter (name, description) and Markdown instructions — no SDK, no runtime. That makes skills diffable, reviewable, and versionable like any other code.
  • Loaded by relevance, not always-on. Only the metadata stays resident; the body and bundled scripts load when the task warrants, so dozens of skills cost almost no baseline tokens.
  • One format, three surfaces. The same folder works in Claude Code (as a plugin), on Claude.ai, and through the Skills API — authored once, run wherever Claude runs.
  • Real document skills. The PDF, DOCX, PPTX, and XLSX skills here are the same capability behind Claude's file creation, not toy demos.
Great Fit / Look Elsewhere

Great fit if you want to encode a repeatable workflow — brand-compliant docs, an internal review checklist, a data pipeline — and have Claude apply it consistently without re-explaining each time; the template/ and spec/ folders give you a clean starting point. Look elsewhere if you need deterministic guarantees: skills are instructions Claude chooses to follow, not enforced code paths, and the document skills ship as demonstrations you should test before trusting on critical work.

Information

  • Websitegithub.com
  • AuthorsAnthropic
  • Published date2025/09/22

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.