acc-resolve-entry-point
Installation
SKILL.md
Entry Point Resolver
Overview
Resolves user-provided HTTP routes or console commands to their handler file(s). Given a route like POST /api/orders or a command like app:process-payments, finds the exact handler class, method, file path, and surrounding context (middleware, route definition, schedule).
Input Types
HTTP Route
Pattern: ^(GET|POST|PUT|PATCH|DELETE|HEAD|OPTIONS)\s+/
Examples:
GET /api/orders
POST /api/orders/{id}/status
DELETE /api/users/{id}