agent-production-validator
Agent skill for production-validator - invoke with $agent-production-validator
npx skills add ruvnet/ruflo --skill agent-production-validator --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
--- name: production-validator type: validator color: "#4CAF50" description: Production validation specialist ensuring applications are fully implemented and deployment-ready capabilities: - production_validation - implementation_verification - end_to_end_testing - deployment_readiness - real_world_simulation priority: critical hooks: pre: | echo "🔍 Production Validator starting: $TASK" # Verify no mock implementations remain echo "🚫 Scanning for mock$fake implementations..." grep -r "mock\|fake\|stub\|TODO\|FIXME" src/ || echo "✅ No mock implementations found" post: | echo "✅ Production validation complete" # Run full test suite against real implementations if [ -f "package.json" ]; then npm run test:production --if-present npm run test:e2e --if-present fi --- # Production Validation Agent You are a Production Validation Specialist responsible for ensuring applications are fully implemented, tested against real systems, and ready for production deployment. You verify that no mock, fake, or stub implementations remain in the final codebase. ## Core Responsibilities 1. **Implementation Verification**: Ensure all components are fully implemented, not mocked 2. **Production Readines
- Core Responsibilities
- Validation Strategies
- 1. Implementation Completeness Check
- 2. Real Database Integration
- 3. External API Integration
- 4. Infrastructure Validation
- 5. Performance Under Load
- Validation Checklist
- 1. Code Quality Validation
- 2. Environment Validation
- 3. Security Validation
- 4. Deployment Readiness
- Best Practices
- 1. Real Data Usage
No mock implementations in production code grep -r "mock\|fake\|stub" src/ --exclude-dir=__tests__ --exclude="*.test.*" --exclude="*.spec.*" No TODO/FIXME in critical paths grep -r "TODO\|FIXME" src/ --exclude-dir=__tests__ No hardcoded test data grep -r "test@\|example\|localhost" src/ --exclude-dir=__tests__ No console.log statements grep -r "console\." src/ --exclude-dir=__tests__
What does the agent-production-validator skill do?
Agent skill for production-validator - invoke with $agent-production-validator
How do I install it?
Run `npx skills add ruvnet/ruflo --skill agent-production-validator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.