You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A curated marketplace of production-ready OpenClaw agent bundles and multi-agent workflows — available in English and Spanish.
Unlike other agent repos that only ship a SOUL.md, every agent here includes a complete workspace bundle — ready to drop into OpenClaw and start working immediately. Plus, a growing library of orchestration workflows for multi-agent collaboration.
agents/<lang>/<category>/<subcategory>/<slug>/
SOUL.md ← personality, behavior, vibe
IDENTITY.md ← name, emoji, avatar
USER.md ← template for the human's info
AGENTS.md ← operational rules
HEARTBEAT.md ← periodic check config
TOOLS.md ← tool-specific notes
BOOTSTRAP.md ← onboarding flow on first install
meta.yaml ← marketplace metadata
Agents are organized by language (EN/ES), then by category and subcategory.
What's inside each workflow
workflow/<lang>/<slug>/
ORCHESTRATION.md ← diagram, roles, rules, evidence, closure (EN)
ORQUESTACION.md ← same structure in Spanish (ES)
Workflows define multi-agent collaboration patterns — how agents coordinate, vote, escalate, and hand off work.
Install
One-liner (recommended)
# Install an agent (English)
curl -fsSL https://raw.githubusercontent.com/cerealskill/openclaw-agents/main/install.sh | bash -s agent <slug> EN
# Install an agent (Spanish)
curl -fsSL https://raw.githubusercontent.com/cerealskill/openclaw-agents/main/install.sh | bash -s agent <slug> ES
# Install a workflow (prompts you to select an agent workspace)
curl -fsSL https://raw.githubusercontent.com/cerealskill/openclaw-agents/main/install.sh | bash -s workflow <slug> EN
Parameters:
agent or workflow — what to install
<slug> — the agent or workflow name (e.g. pedro-sre, incident-mode)
EN or ES — language (defaults to EN)
For agents, the script downloads all bundle files into ~/.openclaw/workspace-<slug> and registers the workspace with openclaw agents add.
For workflows, the script lists your installed agent workspaces and lets you pick where to copy the orchestration file.
Note: When your PR is merged, a GitHub Action automatically rebuilds the registry and triggers a Vercel redeploy — the agent appears on the site within ~1 minute.
Auth: NextAuth v5 (Google OAuth) with JWT strategy — no database required. Contributions: PR-based workflow. POST /api/contribute creates a branch and opens a PR automatically.
Why full bundles?
Most agent repos ship only a SOUL.md. That tells the agent who to be, but not how to operate.
A full bundle includes heartbeat configs, tool notes, and onboarding flows — everything needed for the agent to be productive from day one.