This runs a seven-step code review on your Flows app, starting with lint and TypeScript strict checks before touching a single file manually. It hunts down `any` types, flags components over 150 lines, greps for duplicate logic, and enforces dependency injection so your SDK client comes from context instead of imports. The type safety section is solid: it pushes you toward discriminated unions over boolean flag bags and branded types for primitives that shouldn't be mixed up. It's opinionated about deriving types with Pick and Omit instead of duplicating interfaces. If you're about to open a PR or just finished a feature and want to catch technical debt before it fossilizes, this gives you a structured sweep with actual grep commands and line numbers.
npx skills add https://github.com/cognitedata/builder-skills --skill code-quality