Skip to content

What is a Skill?

Concept

A Skill is a specialized capability module in Claude Code. Each Skill is deeply optimized for a specific task domain, with built-in best practices, workflows, and domain expertise.

Think of it this way:

  • Claude Code itself = a full-stack software engineer
  • Skill = a "professional certification" in a specific domain — when activated, Claude works to the highest standards of that domain

What Problem Do Skills Solve?

In daily development, many tasks follow fixed workflows and require domain knowledge:

  • Bug debugging follows a "reproduce → narrow → hypothesize → verify → fix" loop
  • TDD follows a "red → green → refactor" loop
  • Issue triage requires a state-machine-driven process

Without Skills, you'd need to manually describe these workflows every time. With Skills, a single /diagnose command switches Claude Code into professional debugging mode.

Types of Skills

1. Built-in Skills

Claude Code ships with 20+ official Skills:

CategorySkillsDescription
Dev Workflowdiagnose, tdd, prototypeDebugging, test-driven development, prototyping
Project Mgmttriage, to-issues, to-prdIssue triage, task breakdown, PRD generation
Code Qualityreview, simplify, security-reviewCode review, simplification, security audit
Docs & Knowledgegrill-with-docs, init, improve-codebase-architectureDoc review, project init, architecture improvement
Dev Toolswrite-a-skill, claude-api, update-configSkill authoring, API development, config management
Productivitycaveman, loop, handoffCompact mode, recurring tasks, session handoff

2. Custom Skills

You can create your own Skills using the write-a-skill Skill. Custom Skills can:

  • Encapsulate team-specific workflows
  • Integrate internal tools and APIs
  • Codify project-specific best practices

Skill vs. Normal Conversation

Normal ChatWith Skill
WorkflowMust describe each timeAuto-loaded
Domain KnowledgeRelies on general model knowledgeBuilt-in expert guidance
ConsistencyMay vary each timeStandardized output
EfficiencyNeeds multiple clarification roundsOne-shot precision

Next Steps