What problem does it solve? It provides a dedicated QA workflow for the LANES project, ensuring backend FastAPI endpoints, SQLAlchemy models, and frontend UI flows are covered by automated tests instead of being verified manually. ## Core Features & Use Cases - Backend Testing: Write Pytest suites in backend/tests/ covering FastAPI endpoints, SQLAlchemy models, and utility functions. - Frontend Testing: Write Playwright or Jest tests in frontend/tests/ for UI components and user flows. - Test Infrastructure Setup: If no tests exist, it bootstraps the testing framework and directory structure first. - Use Case: After adding a new flood-report API endpoint, invoke this Skill to generate Pytest cases validating request handling, database persistence, and error responses. ## Quick Start Ask the agent to write Pytest tests for the new FastAPI endpoint in backend and run them to verify they pass.