快速判断
一句判断
Anthropic 官方维护的通用能力包,覆盖 Office 文档、PDF、演示文稿、前端产出和 MCP 构建等高频场景。
Anthropic 官方 Skills 示例库,展示如何用指令、脚本和资源文件扩展 Claude 在特定任务上的能力。
读原文顺序
- 先读 README 开头,判断仓库解决的问题。
- 再看能力结构或包含内容,确认是否需要整体安装。
- 最后看安装、许可证和维护说明。
需要一次理解或安装 Anthropics Skills 仓库里的多个相关 skills。
同一仓库内的 skills 彼此有关联,适合作为一个能力包评估。
Anthropic 官方维护的通用能力包,覆盖 Office 文档、PDF、演示文稿、前端产出和 MCP 构建等高频场景。价值在官方质量背书和开箱即用;但定位是通用基础件,不针对具体垂直工作流做深,适合当作 Agent 的默认工具箱起点,而不是某个专业任务的完整方案。
策展备注: Anthropic 官方维护的通用能力包,覆盖 Office 文档、PDF、演示文稿、前端产出和 MCP 构建等高频场景。价值在官方质量背书和开箱即用;但定位是通用基础件,不针对具体垂直工作流做深,适合当作 Agent 的默认工具箱起点,而不是某个专业任务的完整方案。
Skills
注意: 这个仓库包含 Anthropic 为 Claude 实现的 skills。关于 Agent Skills 标准,请查看 agentskills.io。
Skills 是由指令、脚本和资源组成的文件夹,Claude 会按需动态加载它们,以提升特定任务上的表现。
Skills 会教 Claude 用可重复的方式完成具体任务:例如按公司品牌指南创作文档、按组织内部流程分析数据,或自动化个人任务。
更多信息可以查看:
- What are skills?
- Using skills in Claude
- How to create custom skills
- Equipping agents for the real world with Agent Skills
关于这个仓库
这个仓库展示 Claude skills 系统可以做到什么。
这些 skills 覆盖创意应用(艺术、音乐、设计)、技术任务(Web app 测试、MCP server 生成),以及企业工作流(沟通、品牌等)。每个 skill 都是自包含文件夹,并带有 SKILL.md,其中包含 Claude 使用的指令和元数据。
你可以浏览这些 skills,为自己的 skills 寻找灵感,或理解不同的组织模式和写法。仓库中许多 skills 是 Apache 2.0 开源。
仓库也包含支撑 Claude 文档能力的文档创建与编辑 skills:skills/docx、skills/pdf、skills/pptx、skills/xlsx。这些是 source-available,不是开源;Anthropic 将它们作为更复杂、且在生产 AI 应用中真实使用的 skills 参考分享给开发者。
免责声明
这些 skills 仅用于演示和教育目的。 虽然 Claude 中可能提供某些类似能力,但你从 Claude 获得的具体实现和行为可能与这些示例不同。
这些 skills 主要用于说明模式和可能性。在关键任务中依赖它们之前,请务必在自己的环境里充分测试。
Skill Sets
./skills:Creative & Design、Development & Technical、Enterprise & Communication、Document Skills 的示例。./spec:Agent Skills 规范。./template:Skill 模板。
在 Claude Code、Claude.ai 和 API 中尝试
Claude Code
可以在 Claude Code 中把该仓库注册为 Plugin marketplace:
/plugin marketplace add anthropics/skills
然后安装具体 skill set:
- 选择
Browse and install plugins。 - 选择
anthropic-agent-skills。 - 选择
document-skills或example-skills。 - 选择
Install now。
也可以直接安装:
/plugin install document-skills@anthropic-agent-skills
/plugin install example-skills@anthropic-agent-skills
安装后,只要在请求中提到对应 skill 即可使用。例如安装 document-skills 后,可以让 Claude Code 使用 PDF skill 提取某个 PDF 的表单字段。
Claude.ai
这些示例 skills 已面向 Claude.ai 付费计划提供。使用仓库中的 skill 或上传自定义 skill,请参考 Claude 帮助文档。
Claude API
Anthropic 的预构建 skills 和自定义 skill 上传可通过 Claude API 使用。更多信息见 Skills API Quickstart。
创建一个基础 Skill
Skill 很简单:一个包含 SKILL.md 的文件夹即可。SKILL.md 里包含 YAML frontmatter 和正文指令。
可以从仓库里的 template-skill 开始:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2
frontmatter 只要求两个字段:
name:skill 的唯一标识,使用小写和连字符。description:完整说明 skill 做什么,以及什么时候应该使用。
Markdown 正文包含 Claude 在 skill 激活时应遵循的指令、示例和指南。
Partner Skills
Skills 是教 Claude 更好使用特定软件的一种方式。Anthropic 可能会在这里展示优秀合作伙伴示例,例如 Notion Skills for Claude。
Note: This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see agentskills.io.
Skills
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's creating documents with your company's brand guidelines, analyzing data using your organization's specific workflows, or automating personal tasks.
For more information, check out:
- What are skills?
- Using skills in Claude
- How to create custom skills
- Equipping agents for the real world with Agent Skills
About This Repository
This repository contains skills that demonstrate what's possible with Claude's skills system. These skills range from creative applications (art, music, design) to technical tasks (testing web apps, MCP server generation) to enterprise workflows (communications, branding, etc.).
Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.
Many skills in this repo are open source (Apache 2.0). We've also included the document creation & editing skills that power Claude's document capabilities under the hood in the skills/docx, skills/pdf, skills/pptx, and skills/xlsx subfolders. These are source-available, not open source, but we wanted to share these with developers as a reference for more complex skills that are actively used in a production AI application.
Disclaimer
These skills are provided for demonstration and educational purposes only. While some of these capabilities may be available in Claude, the implementations and behaviors you receive from Claude may differ from what is shown in these skills. These skills are meant to illustrate patterns and possibilities. Always test skills thoroughly in your own environment before relying on them for critical tasks.
Skill Sets
- ./skills: Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills
- ./spec: The Agent Skills specification
- ./template: Skill template
Try in Claude Code, Claude.ai, and the API
Claude Code
You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
/plugin marketplace add anthropics/skills
Then, to install a specific set of skills:
- Select
Browse and install plugins - Select
anthropic-agent-skills - Select
document-skillsorexample-skills - Select
Install now
Alternatively, directly install either Plugin via:
/plugin install document-skills@anthropic-agent-skills
/plugin install example-skills@anthropic-agent-skills
After installing the plugin, you can use the skill by just mentioning it. For instance, if you install the document-skills plugin from the marketplace, you can ask Claude Code to do something like: "Use the PDF skill to extract the form fields from path/to/some-file.pdf"
Claude.ai
These example skills are all already available to paid plans in Claude.ai.
To use any skill from this repository or upload custom skills, follow the instructions in Using skills in Claude.
Claude API
You can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the Skills API Quickstart for more.
Creating a Basic Skill
Skills are simple to create - just a folder with a SKILL.md file containing YAML frontmatter and instructions. You can use the template-skill in this repository as a starting point:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2
The frontmatter requires only two fields:
name- A unique identifier for your skill (lowercase, hyphens for spaces)description- A complete description of what the skill does and when to use it
The markdown content below contains the instructions, examples, and guidelines that Claude will follow. For more details, see How to create custom skills.
Partner Skills
Skills are a great way to teach Claude how to get better at using specific pieces of software. As we see awesome example skills from partners, we may highlight some of them here:
- Notion - Notion Skills for Claude