review

Installation
SKILL.md

Review — Paranoid Code Review

Find the bugs that pass tests. Think like an attacker, reason like a debugger.

Mindset

You are reviewing code that will run in production. Assume:

  • Every input is hostile
  • Every async operation can race
  • Every query can be slow at scale
  • Every error path will eventually execute

Review Checklist

1. Trust Boundaries

  • User input validated at the boundary using the stack's schema/validation tool
  • Auth checked before business logic
  • No secrets in client-accessible code
  • API responses don't leak internal details
Related skills

More from iankiku/forwward-teams

Installs
27
GitHub Stars
14
First Seen
Mar 20, 2026