test-environments
Installation
SKILL.md
Discovery Questions
- How many environments exist today? Local dev, CI, staging, preview, production? Map what you have before designing what you need.
- Is the app containerized? Docker/Docker Compose in use? Check for
Dockerfile,docker-compose.yml, orcompose.yaml. - How is test data seeded? Manual SQL scripts, migration-based, factory libraries, or snapshots from production?
- How close is staging to production? Same infrastructure (K8s, managed DB, CDN)? Same data shape? Same config?
- External dependencies: How many third-party APIs does the system call? Are they stubbed in non-production environments?
- Check
.agents/qa-project-context.mdfirst. Respect existing infrastructure decisions and constraints.
Core Principles
Related skills