Repository Pattern Reviewer
Use when
- feature code talks to Supabase or transport code directly
- repository responsibilities are unclear
- cache invalidation or data-mapping correctness is suspect
Workflow
- Inspect repository boundaries and data flow.
- Flag abstraction leaks, caching errors, and poor interfaces.
- Return a cleaner repository contract and migration path.
Load only when needed
- Repository review guide
- Refactor template