Getting Started with Agent Skills
Agent Skills are modular capabilities that extend Claude Code's functionality. Unlike simple prompts, skills are persistent, reusable, and can include code, documentation, and resources.
What Makes Skills Different from Prompts?
| Aspect | Prompts | Skills |
|--------|---------|--------|
| Persistence | One-time use | Persistent across sessions |
| Structure | Plain text | Folder with SKILL.md + resources |
| Reusability | Copy-paste each time | Install once, use forever |
| Complexity | Limited | Can include code, configs, data |
Your First Skill Installation
Let's install a skill from the registry:
mkdir -p ~/.claude/skills/awesomeskills/deploying-to-production
curl -L https://raw.githubusercontent.com/littleben/awesomeAgentskills/main/deploying-to-production/SKILL.md > ~/.claude/skills/awesomeskills/deploying-to-production/SKILL.md
Verifying Installation
After installation, Claude Code will automatically detect the skill. You can verify by asking:
"What skills do you have available?"
Next Steps