| name | agentic-workflow-guide |
| description | Design, review, and improve agent workflows & agent using SSOT, SRP, Fail Fast principles. Supports Prompt Chaining, Parallelization, Orchestrator-Workers patterns. |
Agentic Workflow Guide
A comprehensive guide for designing, reviewing, and improving agent workflows based on proven design principles.
When to Use
- New Workflow Design - Define agent roles, responsibilities, and execution order
- Workflow Review - Detect issues by checking against design principles
- Pattern Selection - Choose the right workflow pattern for your task
- Quality Improvement - Iteratively refine workflows step by step
- Scaffolding - Generate workflow directory structures and templates
- Long-Horizon Tasks - Manage context for multi-hour agent sessions
Core Principles
โ See references/design-principles.md for details
| Tier | Principles | Focus |
|---|
| Tier 1: Essential | SSOT, SRP, Simplicity First, Fail Fast, Iterative Refinement, Feedback Loop | Must-have for any workflow |
| Tier 2: Quality | Transparency, Gate/Checkpoint, DRY, ISP, Idempotency | Recommended for production |
| Tier 3: Scale | Human-in-the-Loop, KISS, Loose Coupling, Graceful Degradation | Advanced patterns |
Anthropic's Key Insight:
"Start with simple prompts, optimize them with comprehensive evaluation, and add multi-step agentic systems only when simpler solutions fall short."
Workflow Patterns
โ See references/workflow-patterns.md for details
Pattern Selection Guide
What's the nature of the task?
โโ Sequential processing needed โโโ Prompt Chaining
โโ Multiple independent tasks โโโโโ Parallelization
โโ Dynamic task decomposition โโโโโ Orchestrator-Workers
โโ Until quality criteria met โโโโโ Evaluator-Optimizer
โโ Processing varies by input โโโโโ Routing
Pattern Overview
| Pattern | Use Case | Iterative Level |
|---|
| Prompt Chaining | Sequential with validation | โญโญโญ |
| Routing | Classify โ route to specialists | โญโญ |
| Parallelization | Execute independent tasks together | โญโญ |
| Orchestrator-Workers | Dynamic decomposition โ workers | โญโญโญ |
| Evaluator-Optimizer | Generate โ evaluate โ improve loop | โญโญโญโญโญ |
Design Workflow
Step 1: Requirements Gathering
## Workflow Design Interview
1. **Goal**: What do you want to achieve?
2. **Task Decomposition**: What subtasks can this be broken into?
3. **Dependencies**: Are there ordering dependencies between tasks?
4. **Parallelism**: Which tasks can run independently?
5. **Quality Criteria**: What defines success/failure?
6. **Error Handling**: How should failures be handled?
Step 2: Pattern Selection
Choose the optimal pattern based on requirements:
| Condition | Recommended Pattern |
|---|
| Tasks have clear ordering | Prompt Chaining |
| Tasks are independent | Parallelization |
| Number of tasks is dynamic | Orchestrator-Workers |
| Repeat until quality criteria met | Evaluator-Optimizer |
| Processing varies by input type | Routing |
Step 3: Create Design Diagram
Visualize with Mermaid:
graph TD
A[Start] --> B{Task Classification}
B -->|Type A| C[Agent 1]
B -->|Type B| D[Agent 2]
C --> E[Reviewer]
D --> E
E -->|OK| F[End]
E -->|NG| G[Feedback]
G --> C
G --> D
Step 4: Principle Check
Validate design against principles (use review checklist)
Step 5: Implement & Iterate
Build small โ verify โ get feedback โ improve
Review Checklist
โ See references/review-checklist.md for complete checklist (includes anti-patterns)
Quick Check (5 items)
- [ ] Is each agent focused on a single responsibility? (SRP)
- [ ] Can errors be detected and stopped immediately? (Fail Fast)
- [ ] Is it divided into small steps? (Iterative)
- [ ] Can results be verified at each step? (Feedback Loop)
- [ ] Are related files (references, scripts) simple and minimal? (DRY)
Context Engineering
โ See references/context-engineering.md for details
For long-running agents, manage context as a finite resource:
| Technique | When to Use |
|---|
| Compaction | Context window 70%+ full |
| Structured Note-taking | Multi-hour tasks with milestones |
| Sub-agent Architectures | Complex research, parallel exploration |
| Just-in-Time Retrieval | Large codebases, dynamic data |
Key Insight:
"Context must be treated as a finite resource with diminishing marginal returns." โ Anthropic
Scaffold Workflow
Automatically generate workflow directory structures.
Usage
python scripts/scaffold_workflow.py my-workflow
python scripts/scaffold_workflow.py code-review --pattern evaluator-optimizer
python scripts/scaffold_workflow.py data-pipeline --pattern orchestrator-workers --path ./projects
python scripts/scaffold_workflow.py --list-patterns
Available Patterns
| Pattern | Description |
|---|
basic | Basic workflow structure |
prompt-chaining | Sequential processing pattern |
parallelization | Parallel processing pattern |
orchestrator-workers | Orchestrator + workers pattern |
evaluator-optimizer | Evaluation-improvement loop |
routing | Routing pattern |
Generated Structure
my-workflow/
โโโ Agent.md # Workflow overview & agent list
โโโ README.md # Usage guide
โโโ .github/
โ โโโ copilot-instructions.md # GitHub Copilot instructions
โ โโโ instructions/ # File-pattern-specific rules
โ โโโ workflow.instructions.md
โ โโโ agents.instructions.md
โ โโโ prompts.instructions.md
โโโ agents/ # Agent definitions
โโโ prompts/ # Prompt templates
โ โโโ system_prompt.md
โ โโโ task_prompt.md
โ โโโ error_handling_prompt.md
โโโ docs/ # Design documentation
โ โโโ design.md
โ โโโ review_notes.md
โโโ config/ # Configuration files
Resources
References