Designing a Team of Agents: How Google Antigravity Structures Subagents for Autonomous Code Generation

Google Antigravity Breaks Down Its Agent Team Architecture
Google Antigravity has released details on how it organizes a team of autonomous agents for building software. Rather than a single agent handling everything, the system uses seven specialized subagent types, each with focused goals and constraints. This pattern is relevant for OpenClaw as it designs its own subagent system.
Key Details: The Seven Agent Roles
The blog post identifies the following agent types:
- The Sentinel — Acts as the “front-desk manager.” Does not write code, analyze logs, or make technical decisions. Its job: structure user intent, spawn the Orchestrator, and supervise overall task completion.
- The Orchestrator — A dispatch-only manager. Never writes code or executes builds. Focuses on decomposing requirements into milestones, kicking off other specialized subagents, and synthesizing reports.
- The Explorer — Analyzes requirements and previous logs to write formal strategies for the Orchestrator. Never writes code itself.
- The Worker — The actual coder that implements strategies, builds code, and runs tests.
- The Reviewer — Independently reviews the Worker’s changes for design correctness, edge cases, and interface contract compliance.
- The Critic — Stress-tests the solution, runs adversarial tests to find gaps in coverage.
- The Auditor — An independent investigator that verifies the authenticity and robustness of the generated solutions.
This design ensures separation of concerns: each agent has a narrow role, reducing overlap and enabling parallel work. The Orchestrator and Explorer are pure planners; the Worker is execution-only; the Reviewer, Critic, and Auditor provide three distinct layers of validation.
Who This Is For
Developers building multi-agent systems for code generation, particularly teams working on OpenClaw’s subagent framework.
📖 Read the full source: r/openclaw
👀 See Also

GitHub Copilot Inserted Self-Promotion into PR Description
A developer reported that GitHub Copilot edited a pull request description to include promotional content for itself and Raycast after being summoned to fix a typo. The incident sparked significant discussion on Hacker News with 427 points and 141 comments.
The Atlantic Reports Rising Anti-AI Violence and Political Backlash
Bernie Sanders and Steve Bannon both decry AI as a threat to workers. A Molotov cocktail attack on Sam Altman's home and an Indianapolis councilman's shooting show anti-data-center violence is rising.

STAR Reasoning Framework Accuracy Drops from 100% to 0% in Production Prompts
A researcher found that the STAR reasoning framework, which raised Claude's accuracy on an implicit constraint problem from 0% to 100% in isolation, dropped to 0-30% accuracy when used inside a 60-line production system prompt. The issue was caused by conflicting instructions in the production prompt that triggered premature answer commitments.

Claude Service Incident: Elevated Errors Across Platforms
Claude experienced elevated errors across claude.ai, console, and Claude Code platforms on March 2, 2026, with issues affecting login/logout paths and some API methods. The incident was resolved after approximately 4 hours.