What problem does it solve? Developers working with the Kailash SDK often introduce inconsistent imports, improper parameter passing, mocked integration tests, and insecure patterns that cause runtime failures and maintenance issues. This Skill provides the mandatory gold standards that prevent these problems before code is committed. ## Core Features & Use Cases - Code Pattern Enforcement: Mandates absolute imports, 4-parameter workflow connections, .build() before execution, and dict-based result access. - Testing Policy: Defines the 3-tier testing strategy where mocking is prohibited in Tier 2 integration and Tier 3 E2E tests, requiring real Docker infrastructure like PostgreSQL and Redis. - Security & Documentation Standards: Requires environment variables for secrets, parameterized SQL queries, input validation, and docstrings for all public APIs. - Use Case: Before submitting a pull request for a new Kailash workflow, run through the compliance checklist to verify absolute imports, real-infrastructure tests, explicit error handling, and no hardcoded credentials. ## Quick Start Ask the AI to review my Kailash workflow code against the gold standards checklist and flag any violations.