testing-production
Installation
SKILL.md
Production Validation
Ensuring applications are fully implemented, tested against real systems, and deployment-ready
Quick Start
# Scan for incomplete implementations
grep -r "mock\|fake\|stub\|TODO\|FIXME" src/ --exclude-dir=__tests__
# Run production validation tests
npm run test:production
npm run test:e2e
# Validate against real services
npm run test:integration -- --env=staging