What problem does it solve? Servoy web components define their contract in .spec JSON files while the actual behavior lives in Angular TypeScript components, and these two layers can silently drift apart during development. This Skill detects mismatches in model properties, handlers, and API methods before they cause runtime failures. ## Core Features & Use Cases - Two-Layer Comparison: Parses .spec JSON files and Angular component TypeScript files to compare model properties, handlers, and API method signatures. - Structured Mismatch Reports: Produces per-component tables categorizing issues as missing in Angular, missing in spec, handler mismatch, API mismatch, or type mismatch. - Optional Auto-Fix Mode: Adds missing inputs, handlers, or API stubs to Angular components, or missing entries to .spec files, then verifies with npm run build and npx ng lint. - Use Case: After adding a new property to the customlist Angular component, ask the Skill to check sync and it reports that the .spec file is missing the corresponding model property, then offers to fix it. ## Quick Start Ask the AI to check whether the customlist component's spec file and Angular implementation are in sync.