What problem does it solve? It provides specialized guidance for developing and modifying the LANES backend, ensuring FastAPI endpoints, Pydantic schemas, SQLAlchemy models, and PostGIS spatial queries follow consistent security and architectural standards. ## Core Features & Use Cases - FastAPI Endpoint Development: Build documented REST APIs in app/api/ with thin route handlers and business logic placed in app/services/. - Spatial Query Support: Write optimized PostGIS queries using geoalchemy2 functions like ST_Intersects and ST_DWithin for flood-zone routing logic. - Security Enforcement: Prevent IDOR vulnerabilities by verifying resource ownership through FastAPI dependencies before accessing user data. - Use Case: When adding a new endpoint to submit crowdsourced flood reports, use this Skill to create the Pydantic schema, the route handler with ownership checks, and the service-layer logic while keeping dependencies tracked in requirements.txt. ## Quick Start Ask the agent to create a new FastAPI endpoint with Pydantic validation and PostGIS spatial filtering for flood reports.