integration-test-scaffold
Installation
SKILL.md
Integration Test Scaffold
Generate test infrastructure for testing multiple modules working together — networking + persistence + business logic — without hitting real servers or databases.
When This Skill Activates
Use this skill when the user:
- Wants to "test the full stack" or "integration test"
- Needs a mock server or mock API
- Wants to test networking + caching together
- Asks about "end-to-end tests without real servers"
- Needs to test data flow across layers (API → Repository → ViewModel)
- Mentions "test harness" or "test environment"
Why Integration Tests
Unit tests: Test ONE thing in isolation (fast, focused)
Integration tests: Test MULTIPLE things together (realistic, catches wiring bugs)