This skill should be used when the user wants to discover available looplia skills, scan installed plugins, or list what capabilities are available. Use when someone says "what looplia skills are installed", "list available skills", "scan plugins", "/build", "what can looplia do", or "show me all looplia capabilities". First step in looplia workflow building: scans plugins/*/skills/*/SKILL.md to build a registry of available skills. Part of the skills-first architecture where one workflow step invokes one skill-executor to orchestrate multiple skills.
/plugin marketplace add memorysaver/looplia-core/plugin install memorysaver-looplia-plugins-looplia-core@memorysaver/looplia-coreThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/scan-plugins.tstest/scan-plugins.test.tsDiscover and catalog all skills from installed looplia plugins.
Scan the plugins/*/skills/*/SKILL.md directory structure to build a registry of available skills with their capabilities.
bun plugins/looplia-core/skills/plugin-registry-scanner/scripts/scan-plugins.ts
This deterministic script returns a JSON registry of all discovered skills.
The script output contains:
{
"plugins": [
{
"name": "looplia-writer",
"path": "plugins/looplia-writer",
"skills": [
{
"name": "media-reviewer",
"description": "Deep content analysis (structure, themes, narrative)",
"tools": ["Read", "Grep", "Glob"],
"model": "haiku",
"capabilities": ["content analysis", "theme extraction", "quote identification"]
}
]
}
],
"summary": {
"totalPlugins": 2,
"totalSkills": 7
}
}
If capability inference is needed beyond what the script provides, analyze skill descriptions to extract:
{
"plugins": [
{
"name": "string",
"path": "string",
"skills": [
{
"name": "string",
"description": "string",
"tools": ["string"],
"model": "string",
"capabilities": ["string"]
}
]
}
],
"summary": {
"totalPlugins": "number",
"totalSkills": "number"
}
}
This skill is typically invoked as the first step in workflow building:
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.