What problem does it solve? When drizzle-kit commands fail or return structured JSON, agents and developers need a reliable way to interpret the response envelope, discriminate between status variants, and map error codes to concrete fixes. This Skill provides the canonical reference for parsing drizzle-kit output from both the CLI (--output json) and the SDK (generate, push, check). ## Core Features & Use Cases - Envelope Decoding: Narrow the discriminated union on status (ok, no_changes, missing_hints, error) with per-operation extras for generate, push, pull, export, up, and --explain. - Error Code Reference: A curated table of error codes (config_validation_error, database_driver_error, unsupported_schema_change, check_error, and more) with their meta keys and remediation steps. - Use Case: Your CI pipeline runs drizzle-kit generate --output json and exits with code 1. Use this Skill to parse the stdout envelope, identify error.code as schema_files_not_found_error, read meta.paths, and fix the schema glob. ## Quick Start Ask the AI to parse this drizzle-kit JSON output and explain what went wrong and how to fix it.