Repository Pattern Reviewer

Review repositories, cache behavior, data-access boundaries, and error mapping. Use when persistence code becomes leaky, caching is suspicious, or feature code reaches into transport/storage details.

conectlens f6b4662 4 files · 2.5 KB Updated

File contents

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

  1. Inspect repository boundaries and data flow.
  2. Flag abstraction leaks, caching errors, and poor interfaces.
  3. Return a cleaner repository contract and migration path.

Load only when needed

  • Repository review guide
  • Refactor template

conectlens/lenserfight/tree/main/.agents/skills/repository-pattern-reviewer commit f6b4662f92

Frequently asked questions

npx skillmds@latest add conectlens/repository-pattern-reviewer