AGI Farm

WarnAudited by ClawScan on May 10, 2026.

Overview

AGI Farm is clear about building an AI team, but it also creates persistent background automation that can keep launching agents and using connected services.

Review this skill carefully before installing. It is not shown to exfiltrate data or hide behavior, but it is designed to create a long-running autonomous agent system. Start in dry-run/manual mode, inspect generated crons and LaunchAgents, restrict agent permissions and GitHub credentials, monitor costs, and keep the generated workspace files private.

Findings (6)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Agent sessions may keep starting in the background, consuming model quota and changing workspace state until the cron or LaunchAgent is disabled.

Why it was flagged

The included dispatcher is designed to run persistently and automatically in execute mode, launching agent work on a schedule.

Skill content
Cron (every 1 min, full-auto): * * * * * python3 ~/.openclaw/skills/agi-farm/auto-dispatch.py ... --execute
Recommendation

Install only if you want persistent automation. Before enabling setup, review the registered crons/LaunchAgents, set cost limits, and document a clear stop/uninstall procedure.

What this means

A generated or modified task/inbox entry can cause agents to run with whatever tools and permissions those OpenClaw agent profiles have.

Why it was flagged

The dispatcher directly invokes OpenClaw agent sessions from task state and detaches them as background processes.

Skill content
subprocess.Popen([OPENCLAW, "agent", "--agent", agent_id, "--message", msg], ... start_new_session=True)
Recommendation

Use dry-run mode first, inspect TASKS.json and inbox files before enabling --execute, and restrict agent tools/permissions to the minimum needed.

What this means

Any process or user able to write the workspace inbox/broadcast files could influence what agents do next.

Why it was flagged

The design uses shared files as the command channel between agents, but the artifacts do not describe sender identity checks, message authentication, or permission boundaries for those files.

Skill content
C->>I: Write task to agent inbox ... A->>I: Reads inbox ... A->>A: Executes task ... A->>O: Writes result to outbox
Recommendation

Keep the workspace private, review inbox/broadcast files before dispatch, and add origin metadata or approval checks for tasks created outside the orchestrator.

What this means

If enabled, the skill may create or update a GitHub repository under the user's authenticated account.

Why it was flagged

The skill can use the user's GitHub CLI authentication to create or push a bundle when the GitHub workflow is selected.

Skill content
`/agi-farm export` | Push bundle to GitHub ... `gh auth login`
Recommendation

Use a dedicated or least-privilege GitHub account/token and verify repository visibility before exporting.

What this means

Users must trust and inspect the packaged code and manually ensure the expected CLI tools and dependencies are present.

Why it was flagged

The registry metadata does not declare provenance or the runtime dependencies that the README and included scripts expect.

Skill content
Source: unknown; Homepage: none; Required binaries: none; No install spec — this is an instruction-only skill.
Recommendation

Verify the package source, inspect the included Python scripts before running setup, and prefer pinned/documented dependency installation.

What this means

Old or edited instructions in the generated workspace can affect future agent behavior.

Why it was flagged

The skill creates persistent persona and communication files that agents will reuse as context across tasks.

Skill content
SOUL.md personas, comms infrastructure (inboxes/outboxes/broadcast)
Recommendation

Review and periodically clean SOUL.md, inbox, outbox, and broadcast files, especially before using the team for sensitive work.