Skills are named, reusable agentic workflows that you can trigger by name. They’re like macros for Claude — encapsulating multi-step processes so you can run them repeatedly without re-describing the steps.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/killlowkey/claude-code/llms.txt
Use this file to discover all available pages before exploring further.
What skills are
A skill is a prompt or workflow definition that Claude executes viaSkillTool. Skills can:
- Encode your team’s specific conventions
- Automate repetitive multi-step tasks
- Wrap complex instructions into a single invocation
Running a skill
Managing skills
The/skills command provides a management UI:
- List all available skills (built-in and custom)
- Add a new skill
- Edit an existing skill
- Delete a skill
Bundled skills
Claude Code ships with built-in skills for common workflows. These are stored insrc/skills/bundled/ and cover tasks like code review, documentation generation, and testing patterns.
Creating a custom skill
Skills are stored in~/.claude/skills/. Create a new .md file describing the workflow:
~/.claude/skills/add-error-handling.md. It’s immediately available:
MCP-based skills
Skills can also be loaded from MCP servers viamcpSkillBuilders.ts. This lets teams share skills through a central MCP server.