Agent Patterns
SkillCommunicationThis skill gives your AI the message formats needed to run several agents side by side. Once added, your AI can write the requests that launch new agents, produce structured status reports, and set shared rules for how agents communicate during a sprint.
Available today. Use it from your connected AI after setup.
No other account needed.
After adding it, ask your AI to launch a new agent or produce a status report for the agents already running. It will handle the message formats for you.
Then ask your AI: use the Agent Patterns skill
What your AI can do with it
- Launch several agents at once by writing spawn request messages
- Generate structured status reports on each agent
- Set shared rules for how agents communicate within a sprint
- Coordinate multiple agents working on the same task
What this skill tells your AI
The instructions your AI receives, as published by aaaaqwq/agi-super-team in skills/agent-patterns/SKILL.md and read by ahel’s review.
Coordinate multi-agent workflows using structured communication protocols. Covers spawn requests, status reports, and inter-agent messaging within the sprint system.
Spawn Request Format
When launching a parallel agent, use this structure:
## SPAWN REQUEST
- **Agent ID**: <unique-id>
- **Role**: <role-name>
- **Task**: <one-line description>
- **Context**: <relevant files or state>
- **Expected Output**: <deliverable format>
- **Timeout**: <max duration>
Agent Report Format
Each agent reports back using:
## AGENT REPORT
- **Agent ID**: <id>
- **Status**: completed | failed | blocked
- **Summary**: <one-line result>
- **Output**: <deliverable or file path>
- **Issues**: <blockers or warnings, if any>
- **Duration**: <time taken>
Coordination Workflow
- Define tasks — break work into independent units suitable for parallel execution
- Spawn agents — send SPAWN REQUEST for each task with clear context
- Monitor status — track agent reports as they complete
- Handle failures — retry failed agents or reassign blocked tasks
- Merge results — combine agent outputs into final deliverable, resolving conflicts
Communication Rules
- Agents communicate through structured reports, not free-form text
- Each message includes agent ID for traceability
- Blocked agents must report immediately rather than waiting silently
- The coordinator agent reviews all reports before merging
Error Handling
See references/errors.md for common failure modes and recovery steps.
Examples
See references/examples.md for complete spawn-and-report workflows.
Signals
- GitHub stars
- 92
- Forks
- 23
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
agent-patterns- Source
- github.com/aaaaqwq/agi-super-team