Review-Gate
Structured post-implementation review. Nothing passes without evidence.
1. Trace affected code paths
Use Read, Grep, and Glob to trace the call chain from each changed function to its callers and dependents. For changes that touch multiple files or cross API boundaries, trace both directions.
2. Bug pattern scan
Check every changed file for:
- Null safety: optional chaining gaps, unchecked nullable values, NonNullable casts without guards
- Async errors: missing
[Description truncada. Veja o README completo no GitHub.]