A Claude Skill is a portable instruction package that teaches Claude how to do a specific task. The format was introduced by Anthropic to let users extend Claude Code, Claude Desktop, and Claude.ai with reusable capabilities. A skill typically contains prompt instructions that guide Claude's behavior, plus optional code helpers—Python or Node.js libraries—that perform concrete operations like generating files, calling APIs, or manipulating data. Skills install to the ~/.claude/skills/ directory and are discovered automatically by Claude Code when it starts.
When Claude Code loads, it scans ~/.claude/skills/ for subdirectories containing skill definitions. Each skill directory includes a prompt file that tells Claude when and how to use the skill, what parameters it accepts, and what outputs it produces. The prompt acts as a contract between the user and Claude: it defines the task boundary and expected behavior.
Some skills are prompt-only. These work entirely within Claude's context window and require no external dependencies. Other skills bundle executable code. For example, a PowerPoint generation skill might include Python scripts that use python-pptx or Node scripts that use pptxgenjs to construct .pptx files from structured data. When Claude decides to use such a skill, it runs the associated code in the user's environment, passing parameters extracted from the conversation.
The skill system is explicit: Claude does not silently invoke skills. It evaluates whether a user's request matches a loaded skill's described purpose, then either uses the skill or proceeds with its base capabilities. This design keeps the user in control and makes skill behavior inspectable.
The powerpoint.md directory catalogs skills for presentation and document generation. Below are five entries you can install today:
~/.claude/skills/.~/.claude/skills/. Some require additional steps like installing Python packages with pip or Node packages with npm. Each skill's page on powerpoint.md provides its exact install command.~/.claude/skills/ directory.