Agent skill · AI & Agents

agent-production-validator

Agent skill for production-validator - invoke with $agent-production-validator

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill agent-production-validator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: .agents/skills/agent-production-validator/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- 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

What's inside
Steps it walks through
  1. Core Responsibilities
  2. Validation Strategies
  3. 1. Implementation Completeness Check
  4. 2. Real Database Integration
  5. 3. External API Integration
  6. 4. Infrastructure Validation
  7. 5. Performance Under Load
  8. Validation Checklist
  9. 1. Code Quality Validation
  10. 2. Environment Validation
  11. 3. Security Validation
  12. 4. Deployment Readiness
  13. Best Practices
  14. 1. Real Data Usage
Commands it runs
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__
More from ruflo
All skills →
About this skill
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.

Keep going