What problem does it solve?
Maintaining high code quality, security, and consistency across a team can be challenging. This Skill provides the official Kailash SDK Gold Standards, offering clear best practices for development, testing, documentation, and security, ensuring your projects meet enterprise-grade excellence.
Core Features & Use Cases
- Code Quality: Guidelines for absolute imports, custom node development, and robust error handling.
- Security & Testing: Standards for secure coding, comprehensive testing, and the critical "NO MOCKING" policy.
- Workflow Design: Best practices for designing maintainable, scalable, and efficient workflows.
- Use Case: Before a code review, use this Skill to verify your workflow adheres to all Gold Standards, from parameter passing conventions to security best practices, ensuring a smooth approval process.
Quick Start
Gold Standard: Absolute Imports
✅ CORRECT:
from kailash.workflow.builder import WorkflowBuilder
❌ WRONG:
from ..workflow.builder import WorkflowBuilder