AI patterns that ship.
Start with the smallest useful shape: a direct agent, a grounded answer, a workflow, or a review gate. Add orchestration only when the product risk asks for it.
RAG & Source-Grounded Q&A
Build retrieval-augmented generation systems where the agent searches, reads, cites, and validates sources — all with typed output schemas.
- Search and read are explicit tool calls.
- The answer carries citations and confidence.
- Unsupported claims are rejected before publish.
Human-in-the-Loop Review
When proposed changes should not be applied until a human approves them. The proposal agent drafts; the workflow owns the gate.
- No mutation before approval.
- Approve, revise, and reject are separate paths.
- Every decision leaves an OTel trace and log entry.
Triage & Routing
Classify incoming requests, assign priority and ownership, and route to the right downstream handler — all with narrow, typed outputs.
- Classification produces narrow JSON fields.
- Routing policy consumes fields, not prose.
- Escalation is just another typed route.
Parallel Agents
Fan-out to multiple specialized agents for code review, risk analysis, test generation, and documentation — then synthesize results into a single coherent output.
- Each branch has its own instructions and tools.
- The workflow owns fan-out and fan-in.
- Synthesis returns one typed result.
Plan, Reason,Reflect, Judge
When correctness matters more than raw speed, use a structured workflow to plan, retrieve, reason, reflect, judge, and publish.
- Each phase is named and traceable.
- Reflection and judging are explicit steps.
- Publishing happens only after readiness checks.
The loop is intentional: every generated answer can become evidence for what should be updated next.
Living Wiki
A self-updating knowledge base that combines direct Q&A, ingest workflows, decision memos, architecture reviews, and continuous audit — all with human review gates.
- Ingest turns sources into grounded references.
- Q&A uses citations instead of memory guesses.
- Audit work feeds reviewed maintenance.
Add memory and context.
Learn how agents remember across sessions, runs, and users without turning memory into hidden business truth.