What problem does it solve?
Troubleshooting multi-layer web systems is slow and error-prone when developers test layers in isolation or rely on mocks; this Skill enforces bottom-up validation to find root causes and prove actual data flows from the database through the API to the frontend.
Core Features & Use Cases
- Database-first verification: Inspect schema, seed data, and migration status to ensure the persistent layer is correct before higher-level tests.
- API CRUD and cross-reference checks: Verify the API reads from and writes to the real database, persist responses, and cross-check counts and IDs against DB queries.
- Frontend rendering and integration: Confirm the UI renders real API data, capture screenshots and snapshots, and validate create/read/update/delete flows across frontend, API, and DB.
- Evidence-driven gating: Save full evidence artifacts (query outputs, JSON responses, screenshots) and require pass gates at each layer before progressing to integration tests.
Quick Start
Start with the database checks, then run API CRUD validations, verify frontend rendering against API responses, and complete the full integration flows while saving evidence files.