From claude-commands
Runs pre-spawn checks for Agent Orchestrator worker dispatch including GitHub rate limits, tmux sessions, and task context. Blocks spawns based on configurable thresholds.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:ao-spawn-gateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Pre-spawn checklist for AO worker dispatch. Run this before approving any new worker spawn.
Pre-spawn checklist for AO worker dispatch. Run this before approving any new worker spawn.
gh api rate_limit
tmux list-sessions | wc -l
# Verify there is a concrete task / PR / issue context
~/bin/ao status --project agent-orchestrator
~/bin/ao session ls
graphql.remaining < 200 → BLOCK spawn. Warn user and use REST fallback for urgent operations.graphql.remaining < 100 → REST fallback exclusively (no GraphQL calls).core.remaining < 500 → defer non-critical reads/polls.> 15 → BLOCK spawn until capacity drops.# Create PR
gh api repos/jleechanorg/agent-orchestrator/pulls --method POST \
-f title='[agento] ...' -f head='branch-name' -f base='main' -f body='...'
# Comment on PR
gh api repos/jleechanorg/agent-orchestrator/issues/<PR_NUMBER>/comments --method POST \
-f body='...'
# Get PR details
gh api repos/jleechanorg/agent-orchestrator/pulls/<PR_NUMBER>
When approving spawn, include:
If blocked, include the exact blocker and retry trigger.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsGuides PR automation and multi-agent orchestration workflows using tmux sessions and A2A communication. Includes cross-org PR monitoring and agent dispatch for fix/analysis tasks.
Manages agent execution with task decomposition, two-stage review, and batch sizing. Enforces isolation, verification, and human checkpoints to prevent runaway parallelization.
Framework for long-running, multi-session autonomous agent tasks with progress checkpointing, failure recovery, and task dependency management. Maintains append-only progress logs and checkpoint files for recovery across context window resets.