Back to Skills

registry-loader

verified
View on GitHub

Marketplace

looplia

memorysaver/looplia-core

Plugin

looplia-core

development

Repository

memorysaver/looplia-core
11stars

plugins/looplia-core/skills/registry-loader/SKILL.md

Last Verified

January 14, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/memorysaver/looplia-core/blob/main/plugins/looplia-core/skills/registry-loader/SKILL.md -a claude-code --skill registry-loader

Installation paths:

Claude
.claude/skills/registry-loader/
Powered by add-skill CLI

Instructions

# Registry Loader

Load the skill catalog for workflow building and skill discovery.

## Purpose

Provides fast access to the skill catalog for the build pipeline.
Uses the pre-compiled `~/.looplia/registry/skill-catalog.json` instead of runtime scanning.

## Behavior

1. Read the skill catalog from `~/.looplia/registry/skill-catalog.json`
2. If catalog doesn't exist, return empty registry with instructions to run `looplia registry sync`
3. Return catalog data for skill-capability-matcher

## Process

### 1. Load Skill Catalog

Read the skill catalog file:

```bash
cat ~/.looplia/registry/skill-catalog.json
```

Or use the Read tool to access the file directly.

### 2. Parse Catalog Data

The skill catalog contains:

```json
{
  "compiledAt": "2026-01-04T12:00:00Z",
  "version": "1.0.0",
  "sources": [
    {
      "id": "official",
      "type": "official",
      "url": "https://github.com/memorysaver/looplia-core/releases/latest/download/registry.json",
      "enabled": true,
      "priority": 100
    }
  ],
  "skills": [
    {
      "name": "media-reviewer",
      "title": "Media Reviewer",
      "description": "Deep content analysis (structure, themes, narrative)",
      "plugin": "looplia-writer",
      "category": "analysis",
      "capabilities": ["content-analysis", "media-processing"],
      "tools": ["Read", "Grep", "Glob"],
      "model": "claude-haiku-4-5-20251001",
      "source": "local",
      "sourceType": "builtin",
      "installed": true,
      "installedPath": "/home/user/.looplia/looplia-writer/skills/media-reviewer"
    }
  ],
  "summary": {
    "totalSkills": 14,
    "byCategory": {
      "analysis": 3,
      "generation": 2,
      "assembly": 2,
      "validation": 1,
      "search": 1,
      "orchestration": 3,
      "utility": 2
    },
    "bySource": {
      "local": 14
    }
  }
}
```

### 3. Format for skill-capability-matcher

Transform the skill catalog into the format expected by skill-capability-matcher:

```json
{
  "plugins": [
    

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
3464 chars