workflow-patterns

Provide industry workflow patterns and templates for finance, healthcare, and ETL.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Integrum-Global/new_project_template --skill workflow-patterns
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-patterns
Source: https://github.com/Integrum-Global/new_project_template/tree/main/.claude/skills/09-workflow-patterns
Command: npx skills add https://github.com/Integrum-Global/new_project_template --skill workflow-patterns

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires kailash.

What problem does it solve?

Designing efficient workflows for diverse business needs can be time-consuming. This Skill provides a comprehensive library of proven Kailash SDK workflow patterns, covering various industries and use cases, enabling you to quickly implement solutions for AI, data processing, ETL, security, and more.

Core Features & Use Cases

  • Industry-Specific Workflows: Examples for finance, healthcare, logistics, manufacturing, and retail.
  • Common Use Case Patterns: Templates for AI document processing, API integration, business rules, cyclic processes, and RAG systems.
  • Use Case: You need to automate a data ingestion and transformation process for a retail application. This Skill provides an ETL workflow pattern that you can adapt, saving significant development time.

Quick Start

Example: Basic ETL Workflow Pattern

from kailash.workflow.builder import WorkflowBuilder workflow = WorkflowBuilder() workflow.add_node("CSVReaderNode", "extract", {"file_path": "input.csv"}) workflow.add_node("PythonCodeNode", "transform", {"code": "result = data"}) workflow.add_node("CSVWriterNode", "load", {"file_path": "output.csv"}) workflow.add_connection("extract", "data", "transform", "data") workflow.add_connection("transform", "result", "load", "data")

runtime.execute(workflow.build())

Frequently Asked Questions about workflow-patterns

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate an ETL workflow for data processing?

ETL workflows extract, transform, and load data through connected stages. This Skill provides production-ready ETL patterns you can customize for retail, finance, healthcare, and other domains, with templates for CSV reading, data transformation, and output generation using the Kailash SDK.

What workflow patterns are available for industry-specific business processes?

Industry-specific patterns cover finance payments, HIPAA-compliant healthcare records, logistics routing, manufacturing inventory, and retail order processing. Each pattern includes architecture guidance, node configuration, testing strategies, and deployment best practices tailored to domain requirements.

Can I use workflow patterns for AI document processing and RAG systems?

Yes. This Skill includes patterns for AI document processing and RAG (retrieval-augmented generation) systems alongside API orchestration and data pipelines. Patterns provide structure, scope definition, and customization guidance for implementing AI-driven workflows in production.

How do I combine multiple workflow patterns for complex business needs?

Patterns can be composed and customized for domain-specific needs. This Skill covers starting from individual patterns, combining them into larger workflows, and implementing with architecture decisions, node configuration, testing, and deployment best practices across industries.

What are the prerequisites for building workflows with the Kailash SDK?

The Kailash SDK dependency provides the WorkflowBuilder and node types needed to construct workflows. You define nodes for extraction, transformation, and loading steps, then connect them with data flow paths to build complete ETL and business automation pipelines.

Does this cover security patterns and API integration workflows?

Yes. Beyond industry workflows, this Skill provides security patterns and API integration templates for orchestrating external service calls, handling authentication, and implementing secure data flows within automated business processes.