Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By memorysaver
Build, list, and execute agentic workflows as Markdown files: generate pipelines from natural language by matching skills in a registry, orchestrate multi-step executions with subagents, and validate JSON outputs using TypeScript scripts via bun.
Scaffold a new workflow definition
Build a looplia workflow from natural language. Create looplia pipeline, generate workflow automation.
List available Looplia workflows
Execute a looplia workflow on content. Run looplia pipeline, start workflow automation.
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.
This skill should be used when matching user requirements to available skills from a compiled registry. It receives a skill registry (from registry-loader) and user requirements, then scores each skill based on capability alignment, producing prioritized matches with confidence scores. Triggers: "match skills to requirements", "find relevant skills for workflow", "which skill handles X", "score skill capabilities", "/build" (after registry load), "find skills for this task", "match my requirements to skills". Second step in looplia workflow building pipeline: takes user requirements and skill registry, recommends skill sequences with missions. Designs one workflow step → one skill-executor → multiple skills orchestration pattern.
This skill should be used when the user wants to execute a looplia workflow, run workflow steps, or process a workflow.md file. Use when someone says "run the looplia workflow", "execute this looplia pipeline", "/run writing-kit", "start the looplia automation", or "process these workflow steps". Architecture: One workflow step triggers one general-purpose subagent call, which then invokes skills to accomplish the step's mission. Each step = separate context window. Handles sandbox management, per-step orchestration, and validation state tracking. v0.6.9: Unified general-purpose subagent strategy for all providers (context offload).
This skill should be used when the user wants to create a new looplia workflow, generate a workflow definition file, or compose workflow steps from skill recommendations. Use when someone says "create a looplia workflow", "generate workflow.md", "compose workflow steps", "build me an automation pipeline", or "/build" (final step). Final step in looplia workflow building: transforms skill recommendations into valid v0.7.0 workflow YAML/Markdown files. Each step uses skill: + mission: syntax, following the one workflow step → one skill-executor → multiple skills architecture. v0.7.0: Generates explicit `skills:` declaration for selective plugin loading. v0.6.3: Supports input-less workflows using input-less capable skills (e.g., search).
This skill should be used when the user wants to validate a looplia workflow output, check if an artifact meets validation criteria, or debug validation failures. Use when someone says "validate this looplia output", "check if the workflow output is valid", "verify the artifact JSON", or "debug why validation failed". Runs deterministic validation scripts against JSON artifacts. Primarily used for manual retry/debugging since automatic validation is handled by PostToolUse hooks. Part of looplia's one step → one skill-executor → multiple skills architecture.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Skills-first agentic workflow CLI — compose AI skills and workflows for any task.
Looplia Core is an agentic workflow platform powered by the Claude Agent SDK. It provides a skills-first architecture where workflows declare which skill to execute and provide natural language missions, letting Claude determine the best approach.
Current focus: Content writing workflows (summarization, idea generation, writing kit construction)
Vision: A universal CLI for AI-powered workflows — one tool, many domains, powered by composable skills.
┌─────────────────────────────────────────────────────────────────────────────┐
│ CLI Commands │
│ └─ looplia init → Initialize workspace + install marketplace skills │
│ └─ looplia run → Execute workflow on content │
│ └─ looplia build → Build workflow from natural language │
│ └─ looplia registry → Manage skill registry sources │
│ └─ looplia skill → Install and manage individual skills │
│ └─ looplia config → Manage user profile │
└─────────────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ Workflow-as-Markdown + Per-Step Orchestration │
│ • Workflow definitions (workflows/*.md with YAML frontmatter) │
│ • Each step: skill: + mission: syntax │
│ • One step → one skill-executor call → multiple skills execution │
│ • Validation-driven completion (validation.json) │
└─────────────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ Two-Plugin Model + Skill Registry │
│ ┌─────────────────────────────┬───────────────────────────────────────────┐│
│ │ looplia-core │ looplia-writer ││
│ │ (Infrastructure) │ (Domain) ││
│ ├─────────────────────────────┼───────────────────────────────────────────┤│
│ │ • CLAUDE.md (entry point) │ • workflows/writing-kit.md ││
│ │ • commands/run.md, build.md │ • skills/media-reviewer/ ││
│ │ • skills/workflow-executor/ │ • skills/idea-synthesis/ ││
│ │ • skills/workflow-validator/│ • skills/writing-kit-assembler/ ││
│ │ • skills/registry-loader/ │ • user-profile.json ││
│ │ • hooks (TypeScript v0.7.4) │ ││
│ └─────────────────────────────┴───────────────────────────────────────────┘│
│ ┌─────────────────────────────────────────────────────────────────────────┐│
│ │ Skill Registry System (v0.7.0) ││
│ │ • ~/.looplia/registry/skill-catalog.json (compiled from all sources) ││
│ │ • ~/.looplia/plugins/ (third-party skills from marketplaces) ││
│ │ • Default sources: Anthropic (42+ skills), ComposioHQ (29+ skills) ││
│ └─────────────────────────────────────────────────────────────────────────┘│
└─────────────────────────────────────────────────────────────────────────────┘
sandbox/{id}/inputs/outputs/logs/--sandbox-id# 1. Install dependencies
bun install
# 2. Build the project
bun run build
# 3. Initialize workspace (creates ~/.looplia/ with plugins)
bun run apps/cli/dist/index.js init --yes
Writing domain plugin - Content analysis, idea generation, and writing-kit workflow
Per-feature development lifecycle: design, launch, build, wrap.
Skills for setting up and aligning project-level agent layouts across Claude Code, Codex, and Pi Agent.
npx claudepluginhub memorysaver/looplia-core --plugin looplia-coreDesign complex n8n workflows with AI assistance - loops, branching, error handling
Multi-agent workflow orchestration via YAML. Ships the conductor skill so the assistant can validate, run, debug, and author workflow files for the conductor CLI.
Auto-improving AI sub-agents that learn from their mistakes across sessions
Genesis (Forerunner) - AI-Powered Executive Director Automation Platform. Analyze organizational responsibilities, score automation potential with 6-factor algorithm, generate LangGraph workflows, and deploy 11 specialized agents for trade associations and nonprofits.
Workflow development tools
Generate n8n automation workflows from natural language descriptions