# Workflow Patterns

> 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.

- Skill: `tomevault-io/workflow-patterns-4` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/workflow-patterns-4`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/workflow-patterns-4/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/workflow-patterns-4

---


# 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](workflow-industry-finance.md)             | Payment processing, fraud detection, risk assessment, compliance, trade settlement |
| Healthcare    | [workflow-industry-healthcare](workflow-industry-healthcare.md)       | Patient data, clinical decision support, insurance claims, HIPAA compliance        |
| Logistics     | [workflow-industry-logistics](workflow-industry-logistics.md)         | Order fulfillment, route optimization, shipment tracking, warehouse automation     |
| Manufacturing | [workflow-industry-manufacturing](workflow-industry-manufacturing.md) | Production planning, quality control, equipment monitoring, defect tracking        |
| Retail        | [workflow-industry-retail](workflow-industry-retail.md)               | Order processing, inventory, pricing optimization, returns processing              |

## Common Use Case Patterns

| Pattern            | File                                                                  | Key Use Cases                                                          |
| ------------------ | --------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| AI Document        | [workflow-pattern-ai-document](workflow-pattern-ai-document.md)       | Classification, entity extraction, OCR, form processing                |
| API Integration    | [workflow-pattern-api](workflow-pattern-api.md)                       | API orchestration, retry logic, rate limiting, error handling          |
| Business Rules     | [workflow-pattern-business-rules](workflow-pattern-business-rules.md) | Rule evaluation, decision tables, approval workflows                   |
| Cyclic             | [workflow-pattern-cyclic](workflow-pattern-cyclic.md)                 | Iterative processing, feedback loops, state machines, convergence      |
| Data Processing    | [workflow-pattern-data](workflow-pattern-data.md)                     | Validation, enrichment, aggregation, normalization                     |
| ETL                | [workflow-pattern-etl](workflow-pattern-etl.md)                       | Extraction, transformation, loading, incremental updates               |
| File Processing    | [workflow-pattern-file](workflow-pattern-file.md)                     | Bulk processing, monitoring, transformation, archive management        |
| Project Management | [workflow-pattern-project-mgmt](workflow-pattern-project-mgmt.md)     | Task automation, status tracking, resource allocation, approvals       |
| RAG                | [workflow-pattern-rag](workflow-pattern-rag.md)                       | Document indexing, vector search, context retrieval, answer generation |
| Security           | [workflow-pattern-security](workflow-pattern-security.md)             | Access control, audit logging, threat detection, incident response     |

## Quick Patterns

### ETL Workflow

```python
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

```python
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

- **[01-core-sdk](../../01-core-sdk/SKILL.md)** - Core workflow creation
- **[06-cheatsheets](../cheatsheets/SKILL.md)** - Pattern quick reference
- **[08-nodes-reference](../08-nodes-reference/SKILL.md)** - Node reference
- **[02-dataflow](../../02-dataflow/SKILL.md)** - Database workflows
- **[03-nexus](../../03-nexus/SKILL.md)** - Workflow deployment
- **[17-gold-standards](../../17-gold-standards/SKILL.md)** - Best practices

## Support

- `pattern-expert` - Workflow pattern selection and design
- `decide-framework` skill - Architecture decisions
- `testing-specialist` - Pattern testing strategies

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/integrum-global) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

