Kailash Workflows - Industry Patterns & Templates
Production-ready workflow patterns and templates for industry-specific use cases and common application patterns.
Industry-Specific Patterns
| Industry |
File |
Key Use Cases |
| Finance |
workflow-industry-finance |
Payment processing, fraud detection, risk assessment, compliance, trade settlement |
| Healthcare |
workflow-industry-healthcare |
Patient data, clinical decision support, insurance claims, HIPAA compliance |
| Logistics |
workflow-industry-logistics |
Order fulfillment, route optimization, shipment tracking, warehouse automation |
| Manufacturing |
workflow-industry-manufacturing |
Production planning, quality control, equipment monitoring, defect tracking |
| Retail |
workflow-industry-retail |
Order processing, inventory, pricing optimization, returns processing |
Common Use Case Patterns
| Pattern |
File |
Key Use Cases |
| AI Document |
workflow-pattern-ai-document |
Classification, entity extraction, OCR, form processing |
| API Integration |
workflow-pattern-api |
API orchestration, retry logic, rate limiting, error handling |
| Business Rules |
workflow-pattern-business-rules |
Rule evaluation, decision tables, approval workflows |
| Cyclic |
workflow-pattern-cyclic |
Iterative processing, feedback loops, state machines, convergence |
| Data Processing |
workflow-pattern-data |
Validation, enrichment, aggregation, normalization |
| ETL |
workflow-pattern-etl |
Extraction, transformation, loading, incremental updates |
| File Processing |
workflow-pattern-file |
Bulk processing, monitoring, transformation, archive management |
| Project Management |
workflow-pattern-project-mgmt |
Task automation, status tracking, resource allocation, approvals |
| RAG |
workflow-pattern-rag |
Document indexing, vector search, context retrieval, answer generation |
| Security |
workflow-pattern-security |
Access control, audit logging, threat detection, incident response |
Quick Patterns
ETL Workflow
workflow.add_node("Extract", "extract", {"source": "..."})
workflow.add_node("Transform", "transform", {"logic": "..."})
workflow.add_node("Load", "load", {"destination": "..."})
workflow.add_connection("extract", "data", "transform", "input")
workflow.add_connection("transform", "output", "load", "data")
RAG Workflow
workflow.add_node("Embed", "embed", {"model": "text-embedding-ada-002"})
workflow.add_node("Search", "search", {"index": "vectors"})
workflow.add_node("Generate", "generate", {"model": os.environ["LLM_MODEL"]})
Pattern Structure
Each sub-file includes: overview, architecture, nodes used, configuration, example code, best practices, testing strategies.
CRITICAL Warnings
| Rule |
Reason |
| NEVER hardcode secrets |
Use environment variables |
| ALWAYS validate inputs |
At workflow boundaries |
| NEVER skip error handling |
Required in production |
Related Skills
Support
pattern-expert - Workflow pattern selection and design
decide-framework skill - Architecture decisions
testing-specialist - Pattern testing strategies
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: workflow-patterns-43description: Industry-specific workflow patterns and templates for finance, healthcare, logistics, manufacturing, retail, and common use cases like AI document processing, API integration, business rules, ETL, RAG, security, and project management. Use when asking about 'workflow examples', 'workflow templates', 'industry workflows', 'finance workflows', 'healthcare workflows', 'logistics workflows', 'manufacturing workflows', 'retail workflows', 'ETL workflows', 'RAG workflows', 'API workflows', 'document processing', 'business rules', or 'workflow patterns'. Use when this capability is needed.4---56# Kailash Workflows - Industry Patterns & Templates78Production-ready workflow patterns and templates for industry-specific use cases and common application patterns.910## Industry-Specific Patterns1112| Industry | File | Key Use Cases |13| ------------- | --------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |14| Finance | [workflow-industry-finance](workflow-industry-finance.md) | Payment processing, fraud detection, risk assessment, compliance, trade settlement |15| Healthcare | [workflow-industry-healthcare](workflow-industry-healthcare.md) | Patient data, clinical decision support, insurance claims, HIPAA compliance |16| Logistics | [workflow-industry-logistics](workflow-industry-logistics.md) | Order fulfillment, route optimization, shipment tracking, warehouse automation |17| Manufacturing | [workflow-industry-manufacturing](workflow-industry-manufacturing.md) | Production planning, quality control, equipment monitoring, defect tracking |18| Retail | [workflow-industry-retail](workflow-industry-retail.md) | Order processing, inventory, pricing optimization, returns processing |1920## Common Use Case Patterns2122| Pattern | File | Key Use Cases |23| ------------------ | --------------------------------------------------------------------- | ---------------------------------------------------------------------- |24| AI Document | [workflow-pattern-ai-document](workflow-pattern-ai-document.md) | Classification, entity extraction, OCR, form processing |25| API Integration | [workflow-pattern-api](workflow-pattern-api.md) | API orchestration, retry logic, rate limiting, error handling |26| Business Rules | [workflow-pattern-business-rules](workflow-pattern-business-rules.md) | Rule evaluation, decision tables, approval workflows |27| Cyclic | [workflow-pattern-cyclic](workflow-pattern-cyclic.md) | Iterative processing, feedback loops, state machines, convergence |28| Data Processing | [workflow-pattern-data](workflow-pattern-data.md) | Validation, enrichment, aggregation, normalization |29| ETL | [workflow-pattern-etl](workflow-pattern-etl.md) | Extraction, transformation, loading, incremental updates |30| File Processing | [workflow-pattern-file](workflow-pattern-file.md) | Bulk processing, monitoring, transformation, archive management |31| Project Management | [workflow-pattern-project-mgmt](workflow-pattern-project-mgmt.md) | Task automation, status tracking, resource allocation, approvals |32| RAG | [workflow-pattern-rag](workflow-pattern-rag.md) | Document indexing, vector search, context retrieval, answer generation |33| Security | [workflow-pattern-security](workflow-pattern-security.md) | Access control, audit logging, threat detection, incident response |3435## Quick Patterns3637### ETL Workflow3839```python40workflow.add_node("Extract", "extract", {"source": "..."})41workflow.add_node("Transform", "transform", {"logic": "..."})42workflow.add_node("Load", "load", {"destination": "..."})43workflow.add_connection("extract", "data", "transform", "input")44workflow.add_connection("transform", "output", "load", "data")45```4647### RAG Workflow4849```python50workflow.add_node("Embed", "embed", {"model": "text-embedding-ada-002"})51workflow.add_node("Search", "search", {"index": "vectors"})52workflow.add_node("Generate", "generate", {"model": os.environ["LLM_MODEL"]})53```5455## Pattern Structure5657Each sub-file includes: overview, architecture, nodes used, configuration, example code, best practices, testing strategies.5859## CRITICAL Warnings6061| Rule | Reason |62| ------------------------- | ------------------------- |63| NEVER hardcode secrets | Use environment variables |64| ALWAYS validate inputs | At workflow boundaries |65| NEVER skip error handling | Required in production |6667## Related Skills6869- **[01-core-sdk](../../01-core-sdk/SKILL.md)** - Core workflow creation70- **[06-cheatsheets](../cheatsheets/SKILL.md)** - Pattern quick reference71- **[08-nodes-reference](../08-nodes-reference/SKILL.md)** - Node reference72- **[02-dataflow](../../02-dataflow/SKILL.md)** - Database workflows73- **[03-nexus](../../03-nexus/SKILL.md)** - Workflow deployment74- **[17-gold-standards](../../17-gold-standards/SKILL.md)** - Best practices7576## Support7778- `pattern-expert` - Workflow pattern selection and design79- `decide-framework` skill - Architecture decisions80- `testing-specialist` - Pattern testing strategies8182---83> Converted and distributed by [TomeVault](https://tomevault.io/claim/integrum-global) — claim your Tome and manage your conversions.84<!-- tomevault:4.0:skill_md:2026-04-13 -->