Skip to content

Skill Registry

The Skill Registry is a shadcn/ui-inspired system for discovering and installing AI skills from curated marketplaces. Skills are modular AI capabilities that can be composed into workflows.

The registry system enables:

  • Skill Discovery — Browse and search available skills from multiple sources
  • On-demand Installation — Install only the skills you need via JIT (just-in-time) cloning
  • Version Management — Update skills independently from the core CLI
  • Selective Loading — Declare required skills per workflow to reduce context usage

ConceptWhat it isCommandWhen to use
SourceA GitHub repo containing many skills (marketplace)looplia registry add <url>Access a whole collection of skills
SkillA single modular AI capabilitylooplia skill add <name>Install a specific skill

Think of it like package managers:

  • Source = Adding a new npm registry or apt repository
  • Skill = Installing a specific package from available registries
  1. Sources are configured (default: Anthropic + ComposioHQ)
  2. Skills from all sources appear in the catalog
  3. Install individual skills as needed:
Terminal window
# See all available skills from all sources
looplia skill list --available
# Install just what you need
looplia skill add xlsx
looplia skill add frontend-design

Looplia ships with two official marketplace sources:

Anthropic Skills

Official skills from Anthropic including document processing, design tools, and productivity utilities.

Browse skills on GitHub

ComposioHQ Skills

Community-curated skills for brand guidelines, media creation, and more.

Browse skills on GitHub


Workflows can declare which skills they need using the skills: field in frontmatter:

---
name: document-processor
skills:
- xlsx
- pdf
- docx
steps:
- 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