Botfarm
Description
Bot farm: autonomous Linear ticket dispatcher for Claude Code agents
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Botfarm
**[botfarm.run](https://botfarm.run)**
Autonomous Linear ticket dispatcher for Claude Code agents.
Botfarm polls your Linear board for "Todo" tickets, dispatches them to Claude Code agent workers running in parallel git worktrees, and manages the full pipeline: implement → review → fix → PR checks → merge.
Dashboard


Prerequisites
System Requirements
- Python 3.12+
- Node.js 18+ (Linear MCP tools are launched via
npx) - git
- 4 GB+ RAM recommended (2 GB is marginal with Claude Code running)
Claude Code
Install using the standalone installer:
curl -fsSL https://claude.ai/install.sh | bash
**Note:** Use `| bash`, not `| sh` — the latter fails on Ubuntu.
**Important:** The installer places `claude` in `~/.local/bin`, which may not be in your PATH. Add it now — without this step, `botfarm run` will fail with "claude not found":
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
**Node.js** is required — Linear MCP tools are launched via `npx` at runtime.
GitHub CLI
**Ubuntu 24.04:** The official apt repository may have GPG key issues. Use a direct `.deb` install instead:
GH_VERSION=$(curl -s https://api.github.com/repos/cli/cli/releases/latest | grep '"tag_name"' | sed 's/.*v//' | sed 's/".*//')
curl -fsSL "https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.deb" -o /tmp/gh.deb
sudo dpkg -i /tmp/gh.deb
**Other systems:** Follow the [official instructions](https://github.com/cli/cli#installation).
Then authenticate:
gh auth login
Select the **SSH** protocol when prompted. This automatically generates and uploads an SSH key — no manual `ssh-keygen` needed.
GitHub SSH Host Key
On fresh machines, add GitHub's host key before cloning repos:
ssh-keyscan github.com >>
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11