スキル一覧に戻る
memorysaver

registry-loader

by memorysaver

Universal agentic workflow CLI — compose AI agents and skills for any task.

10🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: registry-loader description: | Load the skill catalog for workflow building. This skill should be used when discovering available looplia skills or listing what capabilities are available. Use when someone says "what looplia skills are installed", "list available skills", "/build", "what can looplia do", or "show me all looplia capabilities".

v0.7.0: Replaces plugin-registry-scanner with skill catalog for faster access. Auto-syncs from all sources on every build to ensure freshest skill catalog. tools: Read model: haiku

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:

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

Or use the Read tool to access the file directly.

2. Parse Catalog Data

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
    }
  }
}

3. Format for skill-capability-matcher

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
  }
}

Output Schema

{
  "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"
  }
}

Advantages over plugin-registry-scanner

Aspectplugin-registry-scannerregistry-loader (v0.7.0)
SpeedScans filesystem at runtimeReads pre-compiled JSON
SourcesLocal onlyOfficial + third-party
Installation StatusNot trackedIncluded in output
Third-party SkillsNot discoveredIncluded from remote registries

Usage

This skill is typically invoked as the first step in workflow building:

  1. Load skill catalog (this skill)
  2. Pass catalog to skill-capability-matcher
  3. Use matched skills in workflow-schema-composer

Notes

  • If skill catalog doesn't exist, advise user to run looplia registry sync
  • Catalog is auto-synced on every looplia build command
  • Includes installation status for each skill
  • Third-party skills may show installed: false until installed via looplia skill add

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です