What problem does it solve?
Applications often reach deployment with hidden mock implementations, fake data dependencies, and untested integrations that fail in production. This Skill systematically verifies that code is fully implemented and works against real systems before release.
Core Features & Use Cases
- Mock Detection: Scans source code for mock, fake, stub, TODO, and FIXME patterns that indicate incomplete implementations.
- Real Integration Testing: Validates CRUD operations against actual databases, live external APIs like Stripe, Redis caches, and SMTP email services.
- Load and Security Validation: Measures performance under concurrent request load and verifies authentication, input sanitization, and HTTPS enforcement.
- Use Case: Before deploying a Node.js service, run this Skill to confirm no mock repositories remain, the health check endpoint reports real dependency status, and the API sustains 100 concurrent requests within latency targets.
Quick Start
Use the production-validator skill to scan my codebase for mock implementations and validate the application against real database and API integrations before deployment.