What problem does it solve? Adding a new language concept to Semorphe requires coordinating many artifacts—block specs, generators, lifters, executors, and tests—and a missing or broken piece can silently corrupt the codebase. This Skill acts as the final gate, running every verification step before a component is officially merged. ## Core Features & Use Cases - Five-path completeness scan: Verifies each concept exists across Lift, Render, Extract, Generate, and Execute paths plus tests, blocking integration if any path is missing. - Full validation pipeline: Runs TypeScript compilation, the complete test suite, targeted round-trip tests with component identity assertions, cross-concept compatibility checks, and Blockly rendering verification. - Audit and status reporting: Performs confidence-level, i18n label, and pattern-priority conflict audits, and can report integration status per language without integrating. - Use Case: After generating a new C++ do_while component with /component-generate, invoke this Skill to confirm all artifacts compile, pass round-trip tests, and are registered correctly, then commit with a standardized message. ## Quick Start Ask the assistant to run component-integrate for a specific language and component, such as integrating the cpp do_while component after generation is complete.