cheatsheets

Index Kailash SDK cheatsheets for patterns, nodes, and workflows.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires kailash.

What problem does it solve?

Quickly recalling syntax, best practices, or common patterns can interrupt your flow. This Skill provides a collection of concise cheatsheets for Kailash SDK, covering core concepts, framework-specific patterns, and advanced topics, enabling you to build faster and more efficiently.

Core Features & Use Cases

  • Core SDK Essentials: Quick references for workflow building, nodes, connections, and parameters.
  • Framework Overviews: Summaries of DataFlow, Nexus, and Kaizen patterns.
  • Advanced Topics: Cheatsheets for cyclic workflows, custom nodes, and production readiness.
  • Use Case: You need to quickly remember the 4-parameter connection syntax or the correct way to access results from a PythonCodeNode. This Skill provides instant, copy-paste ready answers, saving you time searching documentation.

Quick Start

Essential Workflow Pattern

from kailash.workflow.builder import WorkflowBuilder from kailash.runtime import LocalRuntime workflow = WorkflowBuilder() workflow.add_node("PythonCodeNode", "my_node", {"code": "result = 'Hello, Kailash!'"}) runtime = LocalRuntime() results, run_id = runtime.execute(workflow.build()) # ALWAYS .build()

Frequently Asked Questions about cheatsheets

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

FAQPage Schema
How do I quickly reference Kailash SDK workflow syntax and node patterns?

This cheatsheet provides quick-reference guides for Kailash SDK workflows, nodes, connections, and parameters. It covers core syntax like the 4-parameter connection format and PythonCodeNode result access, enabling you to copy-paste solutions without searching full documentation.

What are the main ETL and API integration patterns in Kailash SDK?

Kailash SDK includes DataFlow, Nexus, and Kaizen framework patterns for ETL, API integration, monitoring, and debugging. Cheatsheets summarize cycle patterns, data integration workflows, and production-ready enterprise patterns so you can apply proven approaches immediately.

How do I build a Kailash workflow quickly with the essential pattern?

Start with WorkflowBuilder, add nodes (like PythonCodeNode), then execute with LocalRuntime. Always call .build() on the workflow before passing it to runtime.execute(). The cheatsheet provides copy-paste-ready code skeletons for this core workflow pattern.

Can I use cheatsheets for custom nodes and production readiness?

Yes. Beyond core SDK essentials, the cheatsheet covers advanced topics including custom node creation and production readiness best practices, supporting both development and enterprise deployment scenarios.

What best practices and development tools are included for Kailash workflows?

Cheatsheets cover best practices across cycle patterns, development tools, and enterprise patterns. They standardize your approach to workflow building, provide trigger keywords for common patterns, and include code skeleton references for faster development.