|
| 1 | +# Skills |
| 2 | + |
| 3 | +Skills are modular packages that extend Claude's capabilities with specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains—they transform Claude from a general-purpose assistant into a specialized agent equipped with procedural knowledge for particular tasks. |
| 4 | + |
| 5 | +## What Skills Provide |
| 6 | + |
| 7 | +- **Specialized Workflows** - Multi-step procedures for specific domains (e.g., creating plans, building frontends, processing documents) |
| 8 | +- **Tool Integrations** - Instructions for working with specific file formats like PDFs, DOCX, XLSX, or PPTX |
| 9 | +- **Domain Expertise** - Company-specific knowledge, schemas, business logic, and best practices |
| 10 | +- **Bundled Resources** - Scripts, reference materials, and templates for complex or repetitive tasks |
| 11 | + |
| 12 | +## Using Skills |
| 13 | + |
| 14 | +### Skill Selector Panel |
| 15 | + |
| 16 | +Click the **Skills icon** in the top toolbar to open the Skill Selector panel. This panel lets you control which skills are available during your conversations. |
| 17 | + |
| 18 | +**Global Controls:** |
| 19 | + |
| 20 | +| Button | Description | |
| 21 | +|--------|-------------| |
| 22 | +| **All Skills** | Include all available skills (green indicator) | |
| 23 | +| **No Skills** | Exclude all skills (fuchsia indicator) | |
| 24 | +| Custom selection | Include only specific skills you choose (blue indicator) | |
| 25 | + |
| 26 | +**Working with Skill Groups:** |
| 27 | + |
| 28 | +Skills are organized into groups based on their source location: |
| 29 | + |
| 30 | +- `~/.llms/.agents` - Your personal skills (editable) |
| 31 | +- `~/.claude/skills` - User-level global skills |
| 32 | +- `.claude/skills` - Project-level skills |
| 33 | + |
| 34 | +Each group shows a count of active skills (e.g., "3/5") and provides quick actions: |
| 35 | +- **all** - Enable all skills in the group |
| 36 | +- **none** - Disable all skills in the group |
| 37 | + |
| 38 | +Click individual skill names to toggle them on/off. Hover over a skill to see its description. |
| 39 | + |
| 40 | +### Skills Management Page |
| 41 | + |
| 42 | +Access the full skills management interface by clicking the **Skills icon** in the left sidebar. This page provides comprehensive skill management: |
| 43 | + |
| 44 | +**Left Sidebar:** |
| 45 | +- Search skills by name or description |
| 46 | +- Browse skills organized by group |
| 47 | +- Expand skills to see their file structure |
| 48 | +- Lock icon indicates read-only skills |
| 49 | + |
| 50 | +**Center Panel:** |
| 51 | +- View skill details (name, description, group, file count, location) |
| 52 | +- Browse and edit skill files |
| 53 | +- View file contents with syntax highlighting |
| 54 | + |
| 55 | +### Creating Skills |
| 56 | + |
| 57 | +1. Click **Create Skill** in the Skills Management page header |
| 58 | +2. Enter a skill name (lowercase letters, numbers, and hyphens only, max 40 characters) |
| 59 | +3. The new skill is created in your personal skills folder (`~/.llms/.agents`) |
| 60 | +4. A template `SKILL.md` file is generated automatically |
| 61 | + |
| 62 | +### Editing Skills |
| 63 | + |
| 64 | +Only skills in your home directory (`~/.llms/.agents`) can be edited. Read-only skills show a lock icon. |
| 65 | + |
| 66 | +**To edit a file:** |
| 67 | +1. Select a skill and click on a file to view it |
| 68 | +2. Click **Edit** to enter edit mode |
| 69 | +3. Make your changes in the text editor |
| 70 | +4. Click **Save** to save changes or **Cancel** to discard |
| 71 | + |
| 72 | +**To add a file:** |
| 73 | +1. Expand the skill in the sidebar |
| 74 | +2. Click **+ file** in the skill's file tree header |
| 75 | +3. Enter the relative file path (e.g., `scripts/helper.py`) |
| 76 | + |
| 77 | +**To delete a file:** |
| 78 | +1. Hover over a file in the tree |
| 79 | +2. Click the **×** button that appears |
| 80 | +3. Confirm deletion in the dialog |
| 81 | + |
| 82 | +Note: The `SKILL.md` file cannot be deleted directly—delete the entire skill instead. |
| 83 | + |
| 84 | +### Deleting Skills |
| 85 | + |
| 86 | +1. Expand the skill in the sidebar |
| 87 | +2. Click **delete** in the skill's header |
| 88 | +3. Confirm deletion in the dialog |
| 89 | + |
| 90 | +## Skill Structure |
| 91 | + |
| 92 | +Each skill consists of: |
| 93 | + |
| 94 | +``` |
| 95 | +skill-name/ |
| 96 | +├── SKILL.md # Required - Main instructions and metadata |
| 97 | +├── scripts/ # Optional - Executable code (Python, Bash, etc.) |
| 98 | +├── references/ # Optional - Documentation and reference material |
| 99 | +└── assets/ # Optional - Templates, images, fonts, boilerplate |
| 100 | +``` |
| 101 | + |
| 102 | +### SKILL.md Format |
| 103 | + |
| 104 | +The `SKILL.md` file contains: |
| 105 | + |
| 106 | +**Frontmatter (YAML):** |
| 107 | +```yaml |
| 108 | +--- |
| 109 | +name: my-skill |
| 110 | +description: What this skill does and when to use it |
| 111 | +--- |
| 112 | +``` |
| 113 | + |
| 114 | +**Body (Markdown):** |
| 115 | +Instructions and guidance for using the skill. |
| 116 | + |
| 117 | +## Common Use Cases |
| 118 | + |
| 119 | +### Document Processing |
| 120 | +Skills like `docx`, `pdf`, `xlsx`, and `pptx` provide specialized capabilities for working with office documents—creating, editing, extracting data, and preserving formatting. |
| 121 | + |
| 122 | +### Frontend Development |
| 123 | +The `frontend-design` skill helps create distinctive, production-grade web interfaces with high design quality. |
| 124 | + |
| 125 | +### Planning & Architecture |
| 126 | +The `create-plan` skill generates concise, actionable plans for coding tasks with clear scope and action items. |
| 127 | + |
| 128 | +### Creating New Skills |
| 129 | +The `skill-creator` skill guides you through building effective skills with proper structure and best practices. |
| 130 | + |
| 131 | +### Internal Communications |
| 132 | +Skills for writing status reports, leadership updates, FAQs, and other internal documents in company-preferred formats. |
| 133 | + |
| 134 | +### Testing & Validation |
| 135 | +The `webapp-testing` skill enables interaction with local web applications using Playwright for frontend verification and debugging. |
| 136 | + |
| 137 | +## How Claude Uses Skills |
| 138 | + |
| 139 | +When skills are enabled: |
| 140 | + |
| 141 | +1. Claude sees the name and description of all available skills |
| 142 | +2. When a task matches a skill's description, Claude reads the skill's full instructions |
| 143 | +3. Claude follows the skill's guidance, using any bundled scripts, references, or assets as needed |
| 144 | +4. Skills can reference additional files that Claude reads only when necessary |
| 145 | + |
| 146 | +This progressive loading ensures skills provide specialized capabilities without overwhelming the conversation context. |
| 147 | + |
| 148 | +## Tips |
| 149 | + |
| 150 | +- **Enable relevant skills** - Only include skills that match your current task to keep conversations focused |
| 151 | +- **Check the indicator** - The top toolbar icon shows your current skill status (green=all, blue=custom, fuchsia=none) |
| 152 | +- **Use skill groups** - Quickly enable/disable related skills together using group controls |
| 153 | +- **Create project skills** - Build skills specific to your project's workflows, schemas, and conventions |
| 154 | +- **Start with examples** - When creating new skills, look at existing skills like `create-plan` for structure guidance |
0 commit comments