SKILLS/EVOKORE EXTENSIONS/verification-quality/SKILL.md
Use when you need to verify work quality using truth scoring (0.0–1.0) with environment-tiered thresholds and machine-readable JSON CI gate output.
npx skillsauth add mattmre/evokore-mcp verification-qualityInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Applies tiered truth scoring to verify work meets environment-specific quality thresholds. Produces machine-readable JSON output for CI gate integration.
Use this skill when:
truth_score = (tests_passing_pct * 0.4) + (type_check_passes * 0.3) + (lint_clean * 0.2) + (no_regressions * 0.1)
| Environment | Minimum Truth Score | |-------------|---------------------| | Production | 0.99 | | Staging | 0.95 | | Development | 0.80 | | CI Gate | 0.90 |
{
"truth_score": 0.97,
"threshold": 0.95,
"gate_passed": true,
"breakdown": {
"tests_passing_pct": 1.0,
"type_check_passes": true,
"lint_clean": true,
"regressions_detected": 0
},
"environment": "staging",
"timestamp": "2026-04-15T00:00:00Z"
}
Run this skill after completing any feature or fix:
development
Core orchestration framework for model-agnostic multi-agent workflows with handoff protocol, policy governance, and configuration schemas
testing
Specialized skill for triage issue skill workflows.
development
Complete workflow for building, implementing, and testing goal-driven agents. Orchestrates hive-* skills. Use when starting a new agent project, unsure which skill to use, or need end-to-end guidance.
development
Iterative agent testing with session recovery. Execute, analyze, fix, resume from checkpoints. Use when testing an agent, debugging test failures, or verifying fixes without re-running from scratch.