What problem does it solve? Building workflow automations with the Kailash SDK requires knowing the correct node patterns, connection syntax, runtime selection, and parameter passing rules, and mistakes like wrong connection arity or using LocalRuntime in Docker cause failures that are hard to diagnose. ## Core Features & Use Cases - Workflow Construction: Build workflows with the string-based WorkflowBuilder API, 4-parameter node configuration, and 4-parameter connection syntax including dot notation for nested data. - Runtime Execution: Choose between LocalRuntime for CLI/scripts and AsyncLocalRuntime for Docker/FastAPI, with async patterns, resource safety, and error handling guidance. - Node Patterns: Use copy-paste templates for PythonCodeNode, AsyncPythonCodeNode, CSV/JSON I/O, HTTP requests, LLM agents, SwitchNode routing, and custom nodes via register_callback. - Use Case: A developer needs to read a CSV, filter rows with Python code, call an external API, and write results to JSON; this Skill provides the exact node, connection, and runtime code to assemble that pipeline correctly. ## Quick Start Ask the AI to create a Kailash workflow that reads a CSV file, processes the data with a PythonCodeNode, and executes it with LocalRuntime.