Help us improve
Share bugs, ideas, or general feedback.
From looplia
Loads looplia skill catalog from ~/.looplia/registry/skill-catalog.json for discovering skills, listing capabilities, and build workflows. Formats data for skill-capability-matcher or instructs sync if missing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/looplia:registry-loaderhaikuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load the skill catalog for workflow building and skill discovery.
Share bugs, ideas, or general feedback.
Load the skill catalog for workflow building and skill discovery.
Provides fast access to the skill catalog for the build pipeline.
Uses the pre-compiled ~/.looplia/registry/skill-catalog.json instead of runtime scanning.
~/.looplia/registry/skill-catalog.jsonlooplia registry syncRead the skill catalog file:
cat ~/.looplia/registry/skill-catalog.json
Or use the Read tool to access the file directly.
The skill catalog contains:
{
"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
}
}
}
Transform the skill catalog into the format expected by skill-capability-matcher:
{
"plugins": [
{
"name": "looplia-writer",
"path": "~/.looplia/looplia-writer",
"skills": [
{
"name": "media-reviewer",
"description": "Deep content analysis (structure, themes, narrative)",
"tools": ["Read", "Grep", "Glob"],
"model": "haiku",
"capabilities": ["content-analysis", "media-processing"],
"installed": true
}
]
}
],
"summary": {
"totalPlugins": 2,
"totalSkills": 14,
"installedSkills": 14,
"availableSkills": 0
}
}
{
"plugins": [
{
"name": "string",
"path": "string",
"skills": [
{
"name": "string",
"description": "string",
"tools": ["string"],
"model": "string",
"capabilities": ["string"],
"installed": "boolean"
}
]
}
],
"summary": {
"totalPlugins": "number",
"totalSkills": "number",
"installedSkills": "number",
"availableSkills": "number"
}
}
| Aspect | plugin-registry-scanner | registry-loader (v0.7.0) |
|---|---|---|
| Speed | Scans filesystem at runtime | Reads pre-compiled JSON |
| Sources | Local only | Official + third-party |
| Installation Status | Not tracked | Included in output |
| Third-party Skills | Not discovered | Included from remote registries |
This skill is typically invoked as the first step in workflow building:
looplia registry synclooplia build commandinstalled: false until installed via looplia skill addnpx claudepluginhub memorysaver/looplia-core --plugin looplia-coreLists all installed skills grouped by source (project, personal, plugin), showing which plugin each belongs to with keyword-style descriptions.
Matches user requirements to skills in a registry, scores capability alignment, and recommends prioritized workflow sequences with step IDs, missions, and data flows.
Manages Claude Code skills: lists existing ones via script, improves for optimal auto-activation, creates new from prompts or spec files.