skills/agent-teams/SKILL.md
Experimental Agent Teams orchestration — run CC_GodMode agents as parallel teammates with SharedTaskList coordination (requires CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1)
npx skillsauth add cubetribe/claudecode_godmode-on agent-teamsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Status: Experimental — requires
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1When to use: Large features where multiple agents can work truly in parallel
Agent Teams allow multiple Claude Code instances to coordinate through a SharedTaskList. Instead of the Orchestrator calling agents sequentially via Task tool, teammates work independently and pick up tasks from a shared queue.
Add to your environment or settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
| Teammate | Role | Model | Isolation | |----------|------|-------|----------| | Architect | Design & planning | opus | — | | Builder | Implementation | sonnet | worktree | | Validator | Code quality | sonnet | worktree | | Tester | UX quality | sonnet | worktree | | Scribe | Documentation | haiku | — |
Recommended team size: 3–5 teammates for optimal coordination.
Tasks follow this lifecycle:
pending → in_progress → completed
→ failed
blockedBy arrays{
"tasks": [
{"id": "1", "name": "Design auth module", "assignee": "architect", "status": "completed"},
{"id": "2", "name": "Implement auth API", "assignee": "builder", "blockedBy": ["1"], "status": "in_progress"},
{"id": "3", "name": "Implement auth UI", "assignee": "builder", "blockedBy": ["1"], "status": "in_progress"},
{"id": "4", "name": "Validate auth code", "assignee": "validator", "blockedBy": ["2", "3"], "status": "pending"},
{"id": "5", "name": "Test auth UX", "assignee": "tester", "blockedBy": ["2", "3"], "status": "pending"}
]
}
| Hook | Purpose | Exit Code 2 |
|------|---------|-------------|
| TeammateIdle | Fires when teammate about to go idle | Teammate continues working |
| TaskCompleted | Fires when task marked complete | Prevents completion, sends feedback |
| Scenario | Use Agent Teams? | |----------|------------------| | Large feature with independent modules | YES | | Multiple parallel investigations | YES | | Small bug fix | NO — overhead not worth it | | API change (strict sequence required) | NO — sequential workflow needed | | Research task | NO — single agent sufficient |
blockedBydevelopment
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.