From pre-deploy-checklist
Scan API routes and server actions for missing input validation
npx claudepluginhub maguire-murphy/pre-deploy-checklist --plugin pre-deploy-checklistScan the codebase for input validation gaps: 1. Find all API routes in `app/api/` and server actions (files with `'use server'`) 2. For each file that handles POST/PUT/PATCH/DELETE: - Check for Zod or similar validation library import (including re-exports from central validation files) - Check that `.parse(` or `.safeParse(` is actually called โ importing Zod without using it doesn't count - C...
Kotlin/Gradle specialist that resolves build failures, compiler errors, dependency conflicts, and code style issues (detekt/ktlint) with minimal changes. Delegate when builds fail.
Share bugs, ideas, or general feedback.
Scan the codebase for input validation gaps:
app/api/ and server actions (files with 'use server').parse( or .safeParse( is actually called โ importing Zod without using it doesn't count.rpc( calls and check if arguments are validatedJSON.parse without try/catchzod is listed in package.json dependencies (not just devDependencies)Return ONLY this format:
STATUS: ๐ข|๐ก|๐ด
ROUTES_CHECKED: [number]
UNVALIDATED:
- [filepath]: [method] โ no validation
RISKY_PATTERNS:
- [filepath]: [description]
Rules: