What problem does it solve? Component capsules in the Semorphe codebase can drift out of completeness: missing lift/render/extract/generate/execute paths, confidence-level violations, duplicate registrations, dead concepts, and inconsistent i18n block labels. This Skill detects those gaps and repairs them without breaking existing tests. ## Core Features & Use Cases - Audit mode: Runs the existing vitest guardrail suites first, then manually scans the two areas guardrails do not cover (confidence-level compliance and i18n label style), producing a completeness matrix and prioritized report. - Fix mode: Diagnoses a single component, an STD module, or an entire language, then generates missing lifters, BlockSpecs, generators, executors, and tests, verifying each fix with npx tsc --noEmit and npm test. - Migrate & purge modes: Migrates hand-written lifters to declarative JSON patterns via a decision tree (L1/L2/L3/unmovable), removes duplicate registrations, and purges dead concepts with zero implementations. - Use Case: Run cpp full to execute the complete pipeline—audit, fix all, dedup, migrate, render-fix, i18n-fix, purge—ending with a final type-check and test validation. ## Quick Start Ask the AI to run a full audit and repair pass on the C++ components, for example by saying: audit and fix all C++ component capsules and report the completeness improvement.