Agent skill · AI & Agents

af

Agent Farm CLI quick reference. Use when running af commands to check correct syntax, subcommands, and flags. Prevents guessing at command names.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill af --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent/af/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Agent Farm Quick Reference ## Tower (Dashboard Server) ```bash af tower start # Start Tower on port 4100 af tower stop # Stop Tower af tower log # Tail Tower logs af tower status # Check if Tower is running ``` There is NO `af tower restart` — use `af tower stop && af tower start`. ## Dashboard ```bash af dash start # Start architect dashboard for current project af dash stop # Stop dashboard for current project af dash open # Open dashboard in browser ``` ## Builder Management ```bash af spawn -p 0003 # Spawn builder for spec (strict mode, default) af spawn --soft -p 0003 # Spawn builder (soft mode) af spawn --issue 42 # Spawn builder for a bugfix af spawn -p 0003 --resume # Resume builder in existing worktree af status # Check all builder status af cleanup --project 0003 # Clean up builder worktree (safe) af cleanup --project 0003 -f # Force cleanup ``` ### Resuming Builders When a builder's Claude process dies but the worktree and porch state survive, use `--resume` to restart it without recreating the worktree: ```bash af spawn -p 0003 --resume ``` This reuses the existing `.builders/0003` worktree, creates a fresh terminal session registered with the Tower (so it appears in

What's inside
Steps it walks through
  1. Tower (Dashboard Server)
  2. Dashboard
  3. Builder Management
  4. Resuming Builders
  5. Utility
  6. Configuration
  7. Pre-Spawn Checklist
  8. Common Mistakes
Ships with 1 file
  • metadata.json
Commands it runs
af tower start             # Start Tower on port 4100
af tower stop              # Stop Tower
af tower log               # Tail Tower logs
af tower status            # Check if Tower is running
af dash start              # Start architect dashboard for current project
af dash stop               # Stop dashboard for current project
af dash open               # Open dashboard in browser
af spawn -p 0003           # Spawn builder for spec (strict mode, default)
af spawn --soft -p 0003    # Spawn builder (soft mode)
af spawn --issue 42        # Spawn builder for a bugfix
More from claude-skill-registry
All skills →
About this skill
What does the af skill do?

Agent Farm CLI quick reference. Use when running af commands to check correct syntax, subcommands, and flags. Prevents guessing at command names.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill af --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going