💥
Anti-Patterns: Workflow
Architectural mistakes in how agents are structured — monolithic prompts, infinite loops, unnecessary complexity, and unchecked delegation.
4 patterns
God Prompt
🚫Basic
Cramming an entire complex task into a single monolithic prompt, expecting the LLM to handle everything at once.
Infinite Loop
🚫Intermediate
Agent enters an unbounded execution cycle — retrying failed actions, oscillating between states, or generating plans it never completes.
Over-Orchestration
🚫Intermediate
Using a multi-agent system when a simple prompt chain or single agent would suffice — adding architectural complexity without proportional benefit.
Blind Delegation
🚫Intermediate
A supervisor agent delegates to sub-agents without verifying their output, trusting results uncritically.