code-templates

Generate Kailash SDK workflow, custom node, MCP server, and test templates.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires kailash, pytest, dataflow.

What problem does it solve?

Starting new projects or implementing complex patterns from scratch can be time-consuming. This Skill provides a collection of production-ready code templates for common Kailash SDK development tasks, accelerating your development process and ensuring best practices.

Core Features & Use Cases

  • Workflow Templates: Boilerplate for basic and cyclic workflows.
  • Custom Component Templates: Starter code for custom nodes and MCP servers.
  • Testing Templates: Ready-to-use templates for unit, integration, and end-to-end tests.
  • Use Case: When you need to quickly set up a new workflow, create a custom node, or establish a robust testing suite, simply copy a template and customize it, saving hours of initial setup.

Quick Start

Basic Workflow Template

from kailash.workflow.builder import WorkflowBuilder from kailash.runtime.local import LocalRuntime workflow = WorkflowBuilder() workflow.add_node("PythonCodeNode", "node1", {"code": "result = input_data * 2"}) workflow.add_connection("node1", "result", "node2", "input_data") runtime = LocalRuntime() results, run_id = runtime.execute(workflow.build())

Frequently Asked Questions about code-templates

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

FAQPage Schema
How do I quickly set up a new Kailash workflow without building from scratch?

Use production-ready workflow templates for basic and cyclic patterns. Copy the template, customize the nodes and connections for your use case, and execute with LocalRuntime. Templates include example code and best practices to accelerate setup.

Can I use templates to create custom nodes and MCP servers in Kailash?

Yes. The Skill provides starter templates for both custom nodes and MCP servers with reference documentation and example patterns. Customize the boilerplate code to your requirements and integrate into your workflows.

What testing templates are available for Kailash projects?

Ready-to-use templates cover unit, integration, and end-to-end testing. Built with pytest, they provide test patterns and scaffolds to establish a robust testing suite for your Kailash workflows and components.

Do these templates follow production best practices?

Templates are production-ready and embed best practices for Kailash SDK development. Each template includes usage guidance, clear patterns, and reference documentation to ensure reliable, maintainable code from the start.

How much setup time do templates save for new Kailash projects?

Templates eliminate hours of initial scaffolding. Copy a template, customize it for your workflow, node, or test requirements, and begin implementation immediately with proven patterns instead of designing structure from scratch.