What problem does it solve? Derived artifacts — generated code, database schemas, prompt templates — silently fall out of sync with the metadata that defines them, and nothing in a normal test suite flags the divergence. This Skill provides the procedure for running MetaObjects drift checks and schema migrations, and for interpreting the failures they produce. ## Core Features & Use Cases - Drift verification: Run meta verify --db, --codegen, --templates, and --deps to catch divergence between metadata and the live database, committed generated code, prompt payload references, and dependency lockfiles. - Schema migrations: Generate, preview, apply, and roll back SQL migrations through the shared Node meta migrate engine, which serves TypeScript, Java, Kotlin, C#, and Python projects alike. - Failure interpretation: Decode loader ERR_* codes, requirement-ledger diagnostics, and conformance/test failures, including the @status-dependent severity rules for dangling @implementedBy references. - Use Case: After renaming a field in your metadata, run meta verify --codegen and meta verify --db <url> before calling the build done — the first catches a stale @generated file, the second catches a missing column in the live database. ## Quick Start Ask the agent to run meta verify with the codegen, templates, and db subverbs against my project and explain any drift failures it reports.