What problem does it solve? Power Apps canvas apps often work on small test lists but silently fail in production: non-delegable queries truncate results at 500 records, galleries fire one network call per row, and blank/error handling breaks on real data. This Skill audits pasted Power Fx formulas and surfaces these defects grouped by severity. ## Core Features & Use Cases - Delegation-first auditing: Detects non-delegable Filter/LookUp/Search/Sort patterns that silently return only the first 500–2,000 records against large SharePoint, Dataverse, or SQL sources. - Performance analysis: Flags N+1 lookups inside galleries, Patch-in-ForAll bulk writes, uncached repeated data calls, and OnStart bloat, with concrete rewrite patterns. - Correctness checks: Catches IsBlank-vs-IsEmpty misuse, missing IfError handling, Patch-vs-SubmitForm conflicts, and async race conditions. - Use Case: A maker reports their project gallery is slow and missing rows past a few hundred. Paste the gallery Items formula and per-row labels; the review identifies the non-delegable Search call and the per-row LookUp, then provides a delegable StartsWith rewrite with a pre-joined collection. ## Quick Start Paste your Power Fx formula and ask for a review of delegation, performance, and correctness issues.