Workflows
Starter Templates 20 production-ready workflow templates across 5 categories and 3 tiers.
AutoFlow ships with 20 starter templates in workflows/starter_templates/. These serve as few-shot references for the generator and as ready-to-use starting points in the catalog. All templates use v2 format with UUID IDs, slugs, and key fields (see Schema Validation for details).
Tier Complexity Description Tier 0 Beginner Simple 2-3 node workflows for common tasks Tier 1 Intermediate 4-6 node workflows with conditionals or loops Tier 2 Advanced 6+ node workflows with decision trees, transforms, and multi-branch routing
Template Tier Pattern Description parse_then_summarize0 multi_step Read a document and produce a summary meeting_notes1 extract_format Extract action items and decisions from meeting transcripts contract_review2 multi_step Analyze contracts for key clauses, risks, and obligations
Template Tier Pattern Description classify_then_route1 classification Classify input and route to specialized handlers classification1 classification Multi-category classification with confidence scoring sitrep_generator2 multi_step Generate situation reports from multiple intelligence sources threat_intel_digest2 multi_step Process threat intelligence feeds into actionable digests aar_generator2 multi_step Generate After Action Reports from event data
Template Tier Pattern Description json_extract0 extract_format Extract structured data from JSON documents excel_schema1 extract_format Analyze Excel files and extract schema information extract_then_format1 extract_format Extract data and reformat into a target structure batch_processing1 batch_processing Process multiple items with iteration data_validator1 conditional Validate data against rules with pass/fail routing report_generator2 multi_step Generate comprehensive reports from multiple data sources
Template Tier Pattern Description ppt_outline0 simple_qa Generate presentation outlines from a topic email_draft0 simple_qa Draft professional emails from bullet points ppt_with_template1 multi_step Generate presentations following a specific template format faq_generator1 extract_format Generate FAQ documents from source material
Template Tier Pattern Description text_summary0 simple_qa Summarize text input concisely self_review_writer2 self_improving Generate, evaluate, and iteratively improve written content
python -m autoflow --catalog
python -m autoflow --catalog --filter-category intelligence
python -m autoflow --catalog --filter-tier 2
python -m autoflow --search "classification"
python -m autoflow --card classification
python -m autoflow --fork classification --fork-as my_classifier
python -m autoflow --modify-slug my_classifier --modify-node intake --set-temperature 0.0
See the Catalog section for full details on browsing, forking, and customizing templates.