What problem does it solve? Terminology drift silently fragments a codebase: the same concept gets called Customer, Client, and Account in different places, forcing every reader to translate and every change to risk editing the wrong concept. This Skill keeps one shared vocabulary across code, docs, and conversation by maintaining a folder-scoped glossary and challenging conflicting terms before they harden into schemas and APIs. ## Core Features & Use Cases - Folder-Scoped Glossary: Maintains one CONTEXT.md or glossary.md per bounded domain, with entries carrying a definition, NOT-this distinctions, and a concrete example. - Terminology-Drift Detection: Runs a synonym and homonym checklist whenever a new domain term appears, and surfaces conflicts to the user instead of silently renaming. - Use Case: While writing billing code you are about to call something a Client, but the billing glossary defines Subscriber for the same concept. The Skill stops, presents the conflict with resolution options, and waits for your decision before any code is written. ## Quick Start Check whether the term Client conflicts with the billing glossary in src/billing/CONTEXT.md before I use it in this new code.