Skill Pack
AI agent patterns with Trigger.dev - orchestration, parallelization, routing, evaluator-optimizer, and human-in-the-loop. Use when building LLM-powered tasks that need parallel workers, approval gates, tool calling, or multi-step agent workflows.
Works With
Keywords
Design patterns for building LLM-powered agents with durable execution, parallel processing, and human oversight.
A central orchestrator dispatches work to specialized worker agents. Each worker handles one domain (research, writing, analysis) and returns structured results.
An evaluator scores output quality and loops back to the generator with feedback until quality thresholds are met.
Classifies incoming requests and routes to the appropriate specialized handler. Useful for multi-intent systems.
Run multiple workers simultaneously for independent sub-tasks. Collect and merge results when all complete.
Pause execution at critical decision points and request human approval before proceeding. Essential for high-stakes operations.
Equip agents with tools (database queries, API calls, calculations) and let the LLM decide when to use them based on the task.