mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
Optimized agent grouping to process multiple layouts per agent: - Changed from one-layout-per-agent to max-10-layouts-per-agent - Grouped by target × style for better efficiency - Reduced agent count from O(T×S×L) to O(T×S×⌈L/10⌉) - Shared token loading within agent (read once, use for all layouts) - Enforced target isolation (different targets use different agents) Benefits: - Reduced agent overhead by ~83% in typical scenarios - Minimized redundant token reads - Maintained parallel execution capability (max 6 concurrent agents) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>