What problem does it solve? Writing tests across multiple layers of a full-stack application requires different frameworks, configurations, and mocking strategies, which slows down development and leads to inconsistent coverage. This Skill provides standardized templates and workflows for creating frontend unit tests, backend integration tests, and end-to-end browser tests in AGENTS-OS projects. ## Core Features & Use Cases - Frontend Unit Tests: Vitest + JSDOM templates for testing pure logic functions and DOM manipulations with mocked globals like window and fetch. - Backend Integration Tests: Pytest templates using async httpx with ASGITransport for testing FastAPI endpoints, SQLAlchemy models, and Pydantic schemas with dependency overrides. - E2E Browser Tests: Playwright templates for full user journey verification including login flows and UI rendering checks in headless mode. - Use Case: When shipping a new analytics dashboard feature, use this Skill to scaffold a Vitest test for the chart rendering logic, a Pytest integration test for the /api/analytics/dashboard endpoint, and a Playwright E2E test verifying the complete login-to-dashboard flow. ## Quick Start Ask the agent to use test-creator to generate a Pytest integration test for the new API endpoint before pushing the feature.