antfarm

star 0

Multi-agent workflows for OpenClaw. Use when building complex features that benefit from plan → implement → verify → test → review cycles.

vibekit-apps By vibekit-apps schedule Updated 2/10/2026

name: antfarm description: Multi-agent workflows for OpenClaw. Use when building complex features that benefit from plan → implement → verify → test → review cycles.

Antfarm + VibeKit

Use Antfarm for sophisticated multi-agent development, VibeKit for deployment.

When to Use

  • Complex features needing multiple implementation steps
  • Security audits with automated fixes
  • Bug fixes requiring investigation and regression tests
  • Any task benefiting from verification gates

Setup

# Install antfarm (requires OpenClaw locally)
npx antfarm install

# Run a feature workflow
antfarm workflow run feature-dev "Add user authentication with OAuth"

# Check status
antfarm workflow status "OAuth"

Workflows

Workflow Agents Use Case
feature-dev 7 Feature requests → tested PR
security-audit 7 Vulnerability scan → fix PR
bug-fix 6 Bug report → fix with regression test

With VibeKit

Option 1: Antfarm develops, VibeKit deploys

# Antfarm creates the PR
antfarm workflow run feature-dev "Add Stripe checkout"

# VibeKit deploys when PR merges
curl -X POST https://vibekit.bot/api/v1/task \
  -H "Authorization: Bearer $VIBEKIT_KEY" \
  -d '{"prompt": "Deploy latest from main", "repo": "user/app"}'

Option 2: VibeKit for quick iterations, Antfarm for complex features

  • Simple UI changes → VibeKit (instant)
  • New auth system → Antfarm (thorough)

How It Works

plan → setup → implement → verify → test → PR → review
  │       │         │         │        │      │       │
  └───────┴─────────┴─────────┴────────┴──────┴───────┘
              Each agent = fresh context
              Failed steps retry automatically
              Nothing ships without review

Requirements

  • Node.js >= 22
  • OpenClaw running locally
  • gh CLI for PR creation

Resources

Install via CLI
npx skills add https://github.com/vibekit-apps/skills-registry --skill antfarm
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator
vibekit-apps
vibekit-apps Explore all skills →