From forge
Builds Forge agent job runner from Go source at ~/projects/forge, installs binary, starts daemon, verifies config, and runs test job. Use to set up Forge initially.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forge:setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build, install, and verify the Forge agent job runner.
Build, install, and verify the Forge agent job runner.
command -v forge && forge version
If found and working, skip to Step 4.
The forge source lives at ~/projects/forge.
cd ~/projects/forge && go build -o forge ./cmd/forge
Ask the user where to install. Common options:
~/.local/bin/forge (user-local, usually on PATH)/usr/local/bin/forge (system-wide, needs sudo)~/projects/forge/ and add to PATHcp ~/projects/forge/forge ~/.local/bin/forge
Verify:
forge version
if [[ -f ~/.forge/forge.pid ]]; then
PID=$(cat ~/.forge/forge.pid | tr -d '[:space:]')
if kill -0 "$PID" 2>/dev/null; then
echo "Daemon running (pid $PID)"
else
echo "Stale PID file - daemon not running"
fi
else
echo "Daemon not running"
fi
nohup forge daemon > ~/.forge/daemon.log 2>&1 &
sleep 1
forge list
cat ~/.forge/config.yaml 2>/dev/null || echo "No config - using defaults (agent: claude, model: sonnet, timeout: 10m)"
forge run --agent claude --model haiku "Say hello in one sentence"
Summarize:
forge_submit, forge_status, forge_output, forge_listnpx claudepluginhub zate/cc-plugins --plugin forgeScaffolds a file-based multi-agent orchestration system (approval gate, task re-entry, topology) for Claude Code, Codex, or Antigravity using a deterministic generator.
Wraps Claude Code as a daemon (launchd/systemd) to keep running after terminal closes. Required for HTTP bridge, webhooks, and scheduled tasks to run 24/7.
Create, run, and iterate on single AgenticFlow AI agents via `af agent create/update/run/delete` CLI, --patch updates, schema inspection for fields like mcp_clients/response_format, model/code configs. For support bots or task agents without orchestration.