antfarm-workflows

antfarm-workflows is a skill for Claude Code from snarktank/antfarm. It costs 52 tokens per session (1,032 once invoked), scanned A, original, MIT.

A multi-agent workflow system for OpenClaw, where specialised agents handle stages of software work. It provides pipelines for new features, bug fixes and security audits, coordinated through scheduled jobs and a shared SQLite database.

In plain words
What is it for?
Use it to install and run feature-development, bug-fixing or security-audit workflows. It also provides commands for uninstalling them and managing the related agents, schedules, database and dashboard.
Why use it?
It divides a large coding task into organised stages such as planning, implementation, verification, testing and review. This gives each stage a defined place in the workflow instead of relying on one agent to do everything.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit Use it to install and run feature-development, bug-fixing or security-audit workflows. It also provides commands for uninstalling them and managing the related agents, schedules, database and dashboard.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/snarktank/antfarm/antfarm-workflows
About the project

Antfarm is a workflow tool for OpenClaw that coordinates specialized AI agents, such as planners, developers, testers, verifiers, and reviewers, to complete software tasks together. It is used for repeatable feature development, security audits, and bug fixes that produce tested pull requests. The catalogue add-on provides Antfarm-related agent instructions and skills.

snarktank/antfarm · 2,499 stars · on GitHub · antfarm.cool

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add snarktank/antfarm --skill antfarm-workflows
Clone the repo
git clone --depth 1 https://github.com/snarktank/antfarm

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for antfarm-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/snarktank/antfarm/antfarm-workflows/github.svg)](https://agentmods.dev/skills/snarktank/antfarm/antfarm-workflows)
Your own site
<a href="https://agentmods.dev/skills/snarktank/antfarm/antfarm-workflows"><img src="https://agentmods.dev/badge/skills/snarktank/antfarm/antfarm-workflows/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for antfarm-workflows

Your own site · 80×15
<a href="https://agentmods.dev/skills/snarktank/antfarm/antfarm-workflows"><img src="https://agentmods.dev/badge/skills/snarktank/antfarm/antfarm-workflows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,032 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.01032
Opus 5 $0.00026 $0.00516
Sonnet 5 $0.00010 $0.00206
Haiku 4.5 $0.00005 $0.00103

Measured 11d ago against content hash 728c718581c6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

antfarm-workflows scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/antfarm-workflows/SKILL.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Antfarm

Multi-agent workflow pipelines on OpenClaw. Each workflow is a sequence of specialized agents (planner, developer, verifier, tester, reviewer) that execute autonomously via cron jobs polling a shared SQLite database.

All CLI commands use the full path to avoid PATH issues:

node ~/.openclaw/workspace/antfarm/dist/cli/cli.js <command>

Shorthand used below: antfarm-cli means node ~/.openclaw/workspace/antfarm/dist/cli/cli.js.

Workflows

Workflow Pipeline Use for
feature-dev plan -> setup -> develop (stories) -> verify -> test -> PR -> review New features, refactors
bug-fix triage -> investigate -> setup -> fix -> verify -> PR Bug reports with reproduction steps
security-audit scan -> prioritize -> setup -> fix -> verify -> test -> PR Codebase security review

Core Commands

# Install all workflows (creates agents + starts dashboard)
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js install

# Full uninstall (workflows, agents, crons, DB, dashboard)
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js uninstall [--force]

# Start a run
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js workflow run <workflow-id> "<detailed task with acceptance criteria>"

# Check a run
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js workflow status "<task or run-id prefix>"

# List all runs
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js workflow runs

# Resume a failed run from the failed step
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js workflow resume <run-id>

# View logs
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js logs [lines]

# Dashboard
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js dashboard [start] [--port N]
node ~/.openclaw/workspace/antfarm/dist/cli/cli.js dashboard stop

Before Starting a Run

The task string is the contract between you and the agents. A vague task produces bad results.

Always include in the task string:

  1. What to build/fix (specific, not vague)
  2. Key technical details and constraints
  3. Acceptance criteria (checkboxes)

Read the full file on GitHub · 102 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 102 lines · 52 tokens per session scan A 728c718581c6

Subscribe to this mod's changes

antfarm-workflows is a skill published in the GitHub repository snarktank/antfarm (2,499 stars, last pushed 6mo ago), licensed MIT. It adds 52 tokens to every session and 1,032 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens