@nini_incrypto_: 想白嫖大厂官方的 Agent 构建方案? Anthropic 官方直接把 Claude 如何学习新技能的底层机密给开源啦! 这个叫 anthropic/skills 的官方仓库一上线就彻底刷屏。现在不需要写复杂的提示词,也不需要微调模型,…
摘要
Anthropic 开源了 skills 仓库,允许用户通过结构化 Markdown 指令定义 Claude 的行为,无需复杂提示词或微调,涵盖创意、技术、企业等多种技能集。
查看缓存全文
缓存时间: 2026/06/12 08:58
想白嫖大厂官方的 Agent 构建方案?
Anthropic 官方直接把 Claude 如何学习新技能的底层机密给开源啦!
这个叫 anthropic/skills 的官方仓库一上线就彻底刷屏。现在不需要写复杂的提示词,也不需要微调模型,就能定义 AI 的行为。
所谓的Skills,其实就是包含了结构化 Markdown 指令的文件夹,Claude 会动态加载它们:
-
创意与技术:涵盖艺术、音乐设计,以及 Web 应用测试和 MCP 服务生成。
-
企业与文档:包含日常工作流,甚至连驱动 Claude 自动创建 docx、pdf、xlsx 文件的核心代码都在里面。
-
生态联动:这套机制全面打通了 Claude Code、付费订阅版和 API,连 Notion 都已经率先适配。
它的运作极简:建个文件夹,扔进带 yaml 描述的 Markdown 文件,Claude 就会在需要时自动调用。
anthropics/skills
Source: https://github.com/anthropics/skills
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
相似文章
@mylifcc: Anthropic 6月3日发布重磅博客《Lessons from building Claude Code: How we use skills》,总结了一下a社对于skill的理解: Skills 到底是什么?(核心概念澄清) 不是:…
Anthropic发布博客解释Claude Code中Skills的概念:Skills是一个包含指令、脚本、参考资料等内容的文件夹,Agent可渐进式披露上下文以减少幻觉和token浪费。
@max_ai_max: https://x.com/max_ai_max/status/2060221653259547069
本文分享了编写一个真正可用的Claude Skill的实践指南,涵盖运行机制、目录骨架、frontmatter写作、迭代方法等,帮助开发者高效构建和调试自定义技能。
@FakeMaidenMaker: 卧槽,Anthropic 官方把 Claude 的使用教程全开源了! GitHub 4.4 万+ stars,Anthropic 官方亲自维护的 Claude Cookbooks。 RAG,Tool Use,多模态,提示词缓存等等技巧,全…
Anthropic 官方开源了 Claude 的使用教程 cookbooks,包含 RAG、Tool Use、多模态等高级技巧的 Jupyter Notebook 示例,开发者可直接复制使用。
@rohit4verse:Anthropic团队正在使用外部人员无法访问的内部Claude Code技能。验证。技能化。消除重复。技术债务……
声称Anthropic内部团队使用不对外公开的专属Claude Code技能进行任务自动化,并附带了如何搭建类似内部工具的操作指南。
anthropics/skills
Anthropic 开源了一个“技能”仓库——包含可复用的指令、脚本和资源,能够动态增强 Claude 在特定任务上的表现,涵盖创意、技术和企业工作流程。