Pattern
Explore → plan → implement → verify
The strongest shared pattern is to separate exploration, planning, implementation, and verification rather than letting the agent jump directly into code.
- Anthropic Claude Code best practices — Explicitly recommends explore → plan → implement → commit and stresses verification.
- Superpowers — Methodology forces clarifying questions, design, planning, TDD, and review.
- AB Method — Insists on grilling requirements and running each mission through TDD.
Pattern
Parallel subagents work best with isolation and explicit roles
The ecosystem increasingly assumes multiple subagents or agent sessions, but the successful projects isolate work by role, workspace, or gate to reduce drift and collisions.
- AgentSys — Single-responsibility agents, phase gates, and persistent workflow state.
- Claude Code Agents — Audit, fix, test, browser QA, and release roles are explicitly separated.
- CCPM — Uses GitHub issues and worktrees to split parallel execution into traceable units.
- Claude Squad — Uses tmux + git worktrees so each task gets its own isolated workspace.
Pattern
Context and observability are first-class concerns
As users run longer sessions and more agents, context consumption, session continuity, and activity visibility become operational requirements rather than nice-to-haves.
- Anthropic Claude Code best practices — Calls context window management the central constraint.
- Claude HUD — Visualizes context health, tool activity, agents, and todos.
- claude-code-tools — Adds session management, search, session repair, and terminal automation.
Pattern
Quality gates are shifting from advice to enforcement
The ecosystem is moving beyond remember to test toward hooks, checks, and preflight systems that constrain what the agent can get away with.
- Anthropic Claude Code best practices — States that giving Claude a way to verify its work is the highest-leverage move.
- TDD Guard — Blocks actions that violate TDD sequence.
- Claude Code Agents — Includes test-runner, test-writer, and browser QA agents.