mirror of
https://github.com/anthropics/skills
synced 2026-09-18 16:28:28 +00:00
Two changes to make the skill packageable as an uploaded custom skill, with no other content changes: - Rename: the skill folder, the SKILL.md frontmatter name, and the marketplace.json entry name and path. Skill names cannot contain the reserved words "claude" or "anthropic" (per the agent skills best-practices documentation). - Description: shortened from 1,176 to 992 characters to fit the 1,024-character limit that skill upload validation applies to the SKILL.md frontmatter description. The shortened text is the version tested internally.
74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "anthropic-agent-skills",
|
|
"owner": {
|
|
"name": "Keith Lazuka",
|
|
"email": "klazuka@anthropic.com"
|
|
},
|
|
"metadata": {
|
|
"description": "Anthropic example skills",
|
|
"version": "1.0.0"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "document-skills",
|
|
"description": "Collection of document processing suite including Excel, Word, PowerPoint, and PDF capabilities",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/xlsx",
|
|
"./skills/docx",
|
|
"./skills/pptx",
|
|
"./skills/pdf"
|
|
]
|
|
},
|
|
{
|
|
"name": "example-skills",
|
|
"description": "Collection of example skills demonstrating various capabilities including skill creation, MCP building, visual design, algorithmic art, internal communications, web testing, artifact building, Slack GIFs, and theme styling",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/algorithmic-art",
|
|
"./skills/brand-guidelines",
|
|
"./skills/canvas-design",
|
|
"./skills/doc-coauthoring",
|
|
"./skills/frontend-design",
|
|
"./skills/internal-comms",
|
|
"./skills/mcp-builder",
|
|
"./skills/skill-creator",
|
|
"./skills/slack-gif-creator",
|
|
"./skills/theme-factory",
|
|
"./skills/web-artifacts-builder",
|
|
"./skills/webapp-testing"
|
|
]
|
|
}
|
|
,
|
|
{
|
|
"name": "claude-api",
|
|
"description": "Claude API and SDK documentation skill for building LLM-powered applications",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/claude-api"
|
|
]
|
|
},
|
|
{
|
|
"name": "academy-guide",
|
|
"description": "Recommends relevant Claude Academy courses, tutorials, and use cases when users ask how to use Claude",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/academy-guide"
|
|
]
|
|
},
|
|
{
|
|
"name": "discernment-nudge",
|
|
"description": "Appends two or three short follow-up questions after a substantive answer to help users check key facts, probe the reasoning, and notice missing context",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/discernment-nudge"
|
|
]
|
|
}
|
|
]
|
|
}
|