mirror of
https://github.com/anthropics/skills
synced 2026-09-19 09:15:18 +00:00
Opt-in skill that recommends matching Claude Academy (academy.claude.com) courses, tutorials, and use cases when a user asks how to use Claude or a Claude product. Reads the live catalog at academy.claude.com/assets/data/catalog.json at runtime rather than embedding a snapshot, so recommendations never go stale; when the catalog cannot be fetched it names no specific item and points to the relevant Academy product hub or the resources library instead. Only recommends on a strong match and never invents Academy content.
65 lines
1.8 KiB
JSON
65 lines
1.8 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": "claude-academy-guide",
|
|
"description": "Recommends relevant Claude Academy courses, tutorials, and use cases when users ask how to use Claude",
|
|
"source": "./",
|
|
"strict": false,
|
|
"skills": [
|
|
"./skills/claude-academy-guide"
|
|
]
|
|
}
|
|
]
|
|
}
|