What problem does it solve? AI-generated code frequently introduces vulnerabilities like hardcoded credentials, SQL injection, insecure HTTP calls, and unsafe deserialization. This Skill encodes mandatory security patterns and red-team findings so generated Kailash SDK code avoids common exploit chains before review. ## Core Features & Use Cases - Secret Management: Enforces environment-variable-based credential handling and prohibits hardcoded API keys, passwords, and tokens. - Injection & Deserialization Prevention: Documents parameterized DataFlow queries, ast.literal_eval usage, and JSON-with-schema-validation instead of pickle.loads on external data. - Attack Chain Reference: Catalogs critical multi-step exploits found in red teaming (Redis pickle RCE, eval/import injection, auth timing attacks, PACT governance bypass) with prevention code. - Use Case: Before deploying a workflow that reads user input and calls external APIs, apply this Skill to verify HTTPS endpoints, validated inputs, fail-closed authentication, and a completed OWASP checklist. ## Quick Start Review my Kailash workflow code for security vulnerabilities and apply the mandatory security patterns before deployment.