with one click
cross-squad
Coordinating work across multiple Squad instances
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Coordinating work across multiple Squad instances
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Standard collaboration patterns for all squad agents — worktree awareness, decisions, cross-agent communication
Shared hard rules enforced across all squad agents
How to write comprehensive architectural proposals that drive alignment before code is written
Defensive CI/CD patterns: semver validation, token checks, retry logic, draft detection — earned from v0.8.22
Platform detection and adaptive spawning for CLI vs VS Code vs other surfaces
How to coordinate with squads on different machines using git as transport
| name | cross-squad |
| description | Coordinating work across multiple Squad instances |
| domain | orchestration |
| confidence | medium |
| source | manual |
| tools | [{"name":"squad-discover","description":"List known squads and their capabilities","when":"When you need to find which squad can handle a task"},{"name":"squad-delegate","description":"Create work in another squad's repository","when":"When a task belongs to another squad's domain"}] |
When an organization runs multiple Squad instances (e.g., platform-squad, frontend-squad, data-squad), those squads need to discover each other, share context, and hand off work across repository boundaries. This skill teaches agents how to coordinate across squads without creating tight coupling.
Cross-squad orchestration applies when:
Each squad publishes a .squad/manifest.json declaring its name, capabilities, and contact information. Squads discover each other through:
.squad/manifest.json in known org repos.squad/upstream.json are checked for manifestssquad-registry.json can list all squads in an org{
"name": "platform-squad",
"version": "1.0.0",
"description": "Platform infrastructure team",
"capabilities": ["kubernetes", "helm", "monitoring", "ci-cd"],
"contact": {
"repo": "org/platform",
"labels": ["squad:platform"]
},
"accepts": ["issues", "prs"],
"skills": ["helm-developer", "operator-developer", "pipeline-engineer"]
}
When delegating work, share only what the target squad needs:
Do NOT share:
gh issue create in the target repo with:
[cross-squad] <description>squad:cross-squad (or the squad's configured label)Track delegated work completion:
gh issue view# List all squads discoverable from upstreams and known repos
squad discover
# Output:
# platform-squad → org/platform (kubernetes, helm, monitoring)
# frontend-squad → org/frontend (react, nextjs, storybook)
# data-squad → org/data (spark, airflow, dbt)
# Delegate a task to the platform squad
squad delegate platform-squad "Add Prometheus metrics endpoint for the auth service"
# Creates issue in org/platform with cross-squad label and context
export default defineSquad({
manifest: {
name: 'platform-squad',
capabilities: ['kubernetes', 'helm'],
contact: { repo: 'org/platform', labels: ['squad:platform'] },
accepts: ['issues', 'prs'],
skills: ['helm-developer', 'operator-developer'],
},
});
.squad/ directory. Use issues and PRs as the communication protocol.