Skip to content

Looplia

Skills-first agentic workflow automation for Human and AI Agents.
Powered by Claude Agent SDK.
looplia
$ bunx looplia init
# Initialize workspace with AI skills
$ bunx looplia run writing-kit —file article.md
# Transform content into a structured writing kit

Why Looplia?

A new approach to AI workflows — skills as first-class citizens, not rigid code.

Skills-First Architecture

Workflows declare skills + missions in natural language. Claude determines the best approach. No rigid agent definitions required.

Workflow-as-Markdown

Define workflows in readable YAML frontmatter + Markdown. Version control friendly, human-readable, easy to share and modify.

Build with AI

Describe what you want in plain English. looplia build generates a complete workflow definition automatically.

Sandbox Isolation

Each run creates an isolated sandbox with inputs, outputs, and logs. Pause and resume anytime with —sandbox-id.

How It Works

Skills-first architecture for intelligent workflow automation

Universal Executor

A single skill-executor handles ALL workflow steps. Every step uses the same pattern: skill: + mission:. No per-skill wrapper agents needed.

🧩

Plugin Architecture

Two plugin types work together: looplia-core (infrastructure skills) and looplia-writer (domain skills). Each skill defines its own JSON output schema.

Validation System

Hook-based validation tracks completion per step via validation.json. Sandbox isolation enables pause and resume with full execution context.

Workflow Executor Architecture - showing Universal Skill-Executor loading looplia-core and looplia-writer plugins, with sandbox validation

Writing Kit: Human Engagement in Action

See how domain skills transform content into creative fuel for writers. Each step produces structured output that the next step builds upon.

media-reviewer

Deep Analysis

Extracts themes, quotes, and key concepts from source material. Identifies patterns and relationships in the content.

→ summary.json

No more re-watching or re-reading to find that perfect quote

idea-synthesis

Creative Ideation

Generates creative hooks, writing angles, and thought-provoking questions. Builds on the analysis to spark ideas.

→ ideas.json

A brainstorming partner that never runs dry

writing-kit-assembler

Kit Assembly

Combines analysis and ideas into an actionable writing brief with outlines, angles, and source references.

→ writing-kit.json

Your creative brief, ready to inspire

workflows/writing-kit.md
---
name: writing-kit
version: 1.1.0
description: Transform content into a comprehensive writing kit
steps:
# Step 1: Deep content analysis
- id: summary
skill: media-reviewer
mission: |
Deep analysis of content to extract key themes.
Extract minimum 3 verbatim quotes, at least 5 key points.
input: ${{ sandbox }}/inputs/content.md
output: ${{ sandbox }}/outputs/summary.json
# Step 2: Creative ideation (depends on analysis)
- id: ideas
skill: idea-synthesis
mission: Generate creative hooks, angles, and questions.
needs: [summary]
input: ${{ steps.summary.output }}
output: ${{ sandbox }}/outputs/ideas.json
# Step 3: Assemble the writing kit (final deliverable)
- id: writing-kit
skill: writing-kit-assembler
mission: Combine insights into an actionable writing brief.
needs: [summary, ideas]
input:
summary: ${{ steps.summary.output }}
ideas: ${{ steps.ideas.output }}
output: ${{ sandbox }}/outputs/writing-kit.json
final: true
---
Not replacing writers, empowering them.

Looplia handles the research grunt work so humans can focus on what they do best: crafting compelling narratives.

Multi-Provider Support

Choose your AI provider. Switch models with a single command.

Terminal window
export ANTHROPIC_API_KEY=sk-ant-...
looplia run writing-kit --file article.md

16+ Model Presets

Anthropic Claude (Haiku, Sonnet), Google Gemini, OpenAI GPT, xAI Grok, DeepSeek, and more via ZenMux.

Cost Optimization

Switch between providers based on cost, speed, or capability requirements per workflow.

Get Started

From zero to first workflow in under 5 minutes.