skills/smithery.ai/auth-route-protection-checker

auth-route-protection-checker

Installation
SKILL.md

Auth Route Protection Checker

To audit and enhance authentication protection across Next.js routes, server components, and API routes, follow these steps systematically.

Step 1: Discover Project Structure

Identify all files that need authentication checks:

  1. Use Glob to find all route files:

    • app/**/page.tsx - Page components
    • app/**/route.ts - API routes
    • app/**/layout.tsx - Layout components
    • lib/actions/**/*.ts - Server actions
  2. Read middleware configuration:

    • middleware.ts - Current middleware setup
    • next.config.js - Route configuration
Installs
1
First Seen
Mar 28, 2026
auth-route-protection-checker from smithery.ai