Overview
A searchable marketplace of 20+ production-ready workflow templates.
The AutoFlow catalog is a searchable collection of production-ready Agent Builder workflow templates. Browse by category, filter by pattern or tier, view detailed workflow cards, and fork templates to customize for your use case.
At a Glance
| Metric | Value |
|---|---|
| Total templates | 20 |
| Categories | 5 (Document Processing, Intelligence, Data Analysis, Communication, General) |
| Tiers | 3 (Tier 0: Beginner, Tier 1: Intermediate, Tier 2: Advanced) |
| Patterns | 8 (simple_qa, extract_format, multi_step, batch_processing, conditional, classification, transform_chain, self_improving) |
Categories
Document Processing
Parse, summarize, and analyze documents — meeting notes, contracts, reports.
Intelligence
Classification, routing, threat intel digests, SITREPs, and After Action Reports.
Data Analysis
JSON extraction, schema analysis, batch processing, validation, and report generation.
Communication
Presentations, email drafts, FAQs, and templated content generation.
General
Text summarization, self-review writing, and multi-purpose workflows.
Template Cards
Every template includes rich metadata:
- Name and description — What the workflow does
- Category and tags — For discovery and filtering
- Tier and complexity — Beginner, intermediate, or advanced
- Pattern — The workflow architecture pattern used
- Use cases — Concrete scenarios where this template applies
- Node count and types — What building blocks it uses
- Quality score — Automated 5-dimension quality assessment
- Input/output specs — What it expects and produces
Quality Scoring
Templates are scored on 5 dimensions (each 1-5):
| Dimension | What It Measures |
|---|---|
| Correctness | Does the workflow structure solve the stated use case? |
| Completeness | Are all necessary nodes and edges present? |
| Format Validity | Is the JSON fully valid per the Agent Builder schema? |
| Efficiency | Minimal nodes, smart routing, no redundancy? |
| Reusability | Can it be adapted for similar tasks with minimal changes? |
The composite quality_score is the average of all 5 dimensions.
Quick Start
# List everything
python -m autoflow --catalog
# Search
python -m autoflow --search "email"
# View details
python -m autoflow --card email_draft
# Fork and customize
python -m autoflow --fork email_draft --fork-as my_email_workflow