looplia skill
The skill command installs and manages individual skills from the catalog.
looplia skill <subcommand>Subcommands
Section titled “Subcommands”Install a skill from the catalog to your workspace.
looplia skill add <name>Examples:
looplia skill add xlsxlooplia skill add frontend-designsearch
Section titled “search”Search the skills.sh registry for skills matching your query.
looplia skill search <query>Examples:
looplia skill search "pdf"looplia skill search "excel spreadsheet"In interactive mode (TTY), you’ll be prompted to select skills to install:
Found 3 skill(s):
───────────────────────────────────────────────────────────────────────── # NAME OWNER/REPO DESCRIPTION───────────────────────────────────────────────────────────────────────── 1 pdf anthropics/skills PDF manipulation... 2 xlsx anthropics/skills Excel processing... 3 docx anthropics/skills Word documents...─────────────────────────────────────────────────────────────────────────
Enter number(s) to install (comma-separated), or 'q' to quit: 1,2List skills in your workspace.
# List installed skillslooplia skill list
# List all available skills from cataloglooplia skill list --availableDisplay detailed information about a skill including its source, description, and usage.
looplia skill info <name>Example:
looplia skill info xlsxremove
Section titled “remove”Remove an installed skill from your workspace.
looplia skill remove <name>update
Section titled “update”Update a third-party skill by pulling the latest changes from its source repository.
looplia skill update <name>Quick Reference
Section titled “Quick Reference”| Command | Description |
|---|---|
looplia skill add <name> | Install a skill |
looplia skill search <query> | Search skills.sh registry |
looplia skill list | List installed skills |
looplia skill list --available | List all available skills |
looplia skill info <name> | Show skill details |
looplia skill remove <name> | Uninstall a skill |
looplia skill update <name> | Update a skill |
Workflow Skills Declaration
Section titled “Workflow Skills Declaration”Workflows can declare which skills they need using the skills: field in frontmatter:
---name: document-processorskills: - xlsx - pdf - docxsteps: - skill: xlsx input: file: "{input.spreadsheet}"---When you declare skills in your workflow:
- Only declared skills are loaded into the Claude Code context
- Core skills are always loaded automatically
- This reduces context window usage significantly
See Also
Section titled “See Also”- Skill Registry Overview — Core concepts
- Marketplace & Plugins — Architecture details
- Bootstrap Process — How initialization works
- registry — Manage skill sources