62-validate-integrity-150

[62] VALIDATE. Final self-check before delivery. Verify goal alignment, completeness, correctness, and identify residual risks. Produces quality score (0-100) and delivery status. Use when completing any significant work, before handoff, or when you need confidence that work is ready.

16 stars

Best use case

62-validate-integrity-150 is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

[62] VALIDATE. Final self-check before delivery. Verify goal alignment, completeness, correctness, and identify residual risks. Produces quality score (0-100) and delivery status. Use when completing any significant work, before handoff, or when you need confidence that work is ready.

Teams using 62-validate-integrity-150 should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/62-validate-integrity-150/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/tools/62-validate-integrity-150/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/62-validate-integrity-150/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How 62-validate-integrity-150 Compares

Feature / Agent62-validate-integrity-150Standard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

[62] VALIDATE. Final self-check before delivery. Verify goal alignment, completeness, correctness, and identify residual risks. Produces quality score (0-100) and delivery status. Use when completing any significant work, before handoff, or when you need confidence that work is ready.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Validate-Integrity 150 Protocol

**Core Principle:** Check yourself before delivery. Verify goal alignment, completeness, correctness. Identify what could still go wrong. Score the quality honestly.

## What This Skill Does

When you invoke this skill, you're asking AI to:
- **Verify alignment** — Does result match original goal?
- **Check completeness** — Are all requirements satisfied?
- **Validate correctness** — Is it technically accurate?
- **Assess risks** — What residual issues remain?
- **Score quality** — Honest 0-100 rating with reasoning

## The 150% Check Rule

| Dimension | 100% Core | +50% Enhancement |
|-----------|-----------|------------------|
| **Goal** | Meets objectives | + Exceeds expectations |
| **Complete** | Requirements done | + Edge cases covered |
| **Correct** | Technically valid | + Best practices followed |
| **Risks** | Known issues noted | + Mitigation strategies ready |

## Quality Assessment Framework

```
CORE INTEGRITY (100% Required)
├── Goal Alignment: Meets original objectives
├── Completeness: All requirements satisfied
├── Correctness: Technically accurate and valid
└── Consistency: Internal logic coherent

EXTENDED VALIDATION (50% Enhancement)
├── Context Fit: Works in broader environment
├── Side Effects: No unintended consequences
├── Edge Cases: Handles unusual scenarios
└── Future-Proofing: Adaptable to changes
```

## Quality Score Framework

| Score | Rating | Description | Action |
|-------|--------|-------------|--------|
| **95-100** | Excellent | Exceeds expectations | Deliver with confidence |
| **85-94** | Good | Meets all requirements | Deliver, note improvements |
| **75-84** | Acceptable | Minor issues exist | Deliver with caveats |
| **60-74** | Needs Work | Significant issues | Fix before delivery |
| **<60** | Unacceptable | Major problems | Return to development |

## When to Use This Skill

- **Before delivery** — Any significant work output
- **After implementation** — Code, features, documents
- **Before handoff** — To another person or system
- **When uncertain** — Need confidence check
- **After major changes** — Verify nothing broke

## Execution Protocol

### Step 1: GOAL ALIGNMENT
```
🎯 **GOAL VERIFICATION**

**Original Objective:** [What was requested]
**Delivered Result:** [What was produced]
**Alignment:** ✅ Match | ⚠️ Partial | ❌ Mismatch

**Gaps:** [Any differences from original goal]
```

### Step 2: COMPLETENESS ASSESSMENT
```
📋 **COMPLETENESS CHECK**

Requirements:
- [ ] Requirement 1: [Status]
- [ ] Requirement 2: [Status]
- [ ] Requirement 3: [Status]

**Coverage:** [X]% of requirements met
**Missing:** [What's not done]
```

### Step 3: CORRECTNESS VALIDATION
```
✓ **CORRECTNESS CHECK**

**Technical Accuracy:** [Assessment]
**Logic Coherence:** [Assessment]
**Best Practices:** [Assessment]
**Issues Found:** [List any problems]
```

### Step 4: CONTEXT INTEGRATION
```
🔗 **CONTEXT FIT**

**Environment:** Works in target environment?
**Integration:** Properly connected to dependencies?
**Side Effects:** Any unintended consequences?
**Performance:** Meets performance requirements?
```

### Step 5: RISK EVALUATION
```
⚠️ **RISK ASSESSMENT**

**Known Issues:**
- [Issue 1]: [Severity] - [Mitigation]
- [Issue 2]: [Severity] - [Mitigation]

**Edge Cases:** [Unusual scenarios covered?]
**Security:** [Any vulnerabilities?]
**Scalability:** [Can handle expected load?]
```

### Step 6: SELF-CRITIQUE
```
🔮 **SELF-CRITIQUE**

**What could be better?**
- [Improvement 1]
- [Improvement 2]

**Alternative approaches considered?**
- [Alternative and why not chosen]

**Lessons for future:**
- [Learning 1]
```

### Step 7: FINAL SCORE
Calculate and declare:
```
📊 **QUALITY SCORE:** [X]/100 ([Rating])

**Reasoning:** [Why this score]
```

## Output Format

```
🔍 **INTEGRITY-CHECK 150 COMPLETE**

**Quality Score:** [X]/100 ([Rating])

**✅ STRENGTHS:**
- [Key positive finding 1]
- [Key positive finding 2]
- [Quality achievement]

**⚠️ AREAS FOR ATTENTION:**
- [Minor issue 1]
- [Recommendation 1]
- [Residual risk 1]

**🚫 CRITICAL ISSUES:** [None / List blockers]

**📋 DELIVERY STATUS:** 
[✅ Ready | ⚠️ Conditional | ❌ Not Ready]

**🎯 CONFIDENCE LEVEL:** [High/Medium/Low]
**Reasoning:** [Why this confidence]

**RECOMMENDATIONS:**
- [What to do next]
- [What to monitor]
```

## Integrity Checklist

**🎯 CORE QUALITY**
- [ ] Goal Achievement: Original objectives fully met?
- [ ] Requirement Coverage: All specified requirements?
- [ ] Technical Accuracy: Solution correct?
- [ ] Consistency: Internal logic coherent?

**🔍 CONTEXT**
- [ ] Environment Fit: Works in target environment?
- [ ] Integration: Properly connected?
- [ ] Side Effects: None unintended?
- [ ] Performance: Meets requirements?

**⚠️ RISKS**
- [ ] Known Issues: Documented and acceptable?
- [ ] Edge Cases: Unusual scenarios handled?
- [ ] Security: No vulnerabilities?
- [ ] Scalability: Handles expected load?

**🔮 FUTURE**
- [ ] Maintainability: Easy to maintain?
- [ ] Documentation: Well-documented?
- [ ] Knowledge Transfer: Others can understand?

## Operational Rules

1. **MANDATORY CHECK:** Every significant work needs integrity check
2. **OBJECTIVE CRITIQUE:** Self-assess without bias
3. **COMPLETE COVERAGE:** Check all quality dimensions
4. **RISK TRANSPARENCY:** Document residual risks honestly
5. **IMPROVEMENT FOCUS:** Identify what could be better
6. **HONEST SCORING:** Don't inflate quality score

## Failure Modes & Recovery

| Failure | Detection | Recovery |
|---------|-----------|----------|
| **Overconfidence** | Score too high | Get external review |
| **Incomplete Check** | Missed aspects | Use full checklist |
| **Bias Blindness** | Ignoring own errors | Delayed assessment |
| **Risk Denial** | Ignoring issues | Explicit risk documentation |

## Examples

### ❌ Without Integrity-Check
```
AI: "Done! Feature implemented."
[Deploys to production]
Result: Critical security vulnerability discovered by users
```

### ✅ With Integrity-Check 150
```
🔍 INTEGRITY-CHECK 150 COMPLETE

Quality Score: 88/100 (Good)

✅ STRENGTHS:
- User registration fully functional
- Mobile/desktop compatibility verified
- All 5 requirements implemented
- Unit tests passing (94% coverage)

⚠️ AREAS FOR ATTENTION:
- Loading states could be smoother
- Error messages need localization
- Consider rate limiting for production

🚫 CRITICAL ISSUES: None

📋 DELIVERY STATUS: ✅ Ready

🎯 CONFIDENCE: High
Reasoning: All core requirements met, tested on multiple 
devices, no blocking issues found.

RECOMMENDATIONS:
- Add loading animation polish in next sprint
- Set up error message translation pipeline
- Implement rate limiting before high traffic events
```

## Relationship to Other Skills

- **gated-exec-150** → Executes the plan
- **integrity-check-150** → Validates the result
- **74-mid-session-save-150** → Documents continuity via checkpoints

## Session Log Entry (MANDATORY)

After completing this skill, write to `.sessions/SESSION_[date]-[name].md`:

```
### [HH:MM] Validate-Integrity 150 Complete
**Target:** <what was validated>
**Score:** <X/100>
**Issues:** <found issues/none>
**Recommendation:** <Deliver/Fix>
```

---

**Remember:** Integrity-check isn't criticism — it's quality assurance. An honest 85 score with documented issues is more valuable than a false 100. The check protects you and the user from preventable problems.

Related Skills

validate-guidelines

16
from diegosouzapw/awesome-omni-skill

Empirically verify guideline changes by running before/after eval runs across multiple models and ensuring no regressions. Use when proposing or reviewing changes to runner/models/guidelines.ts, or when the user asks to validate guidelines.

camel-validate

16
from diegosouzapw/awesome-omni-skill

Validate routes when user wants to check YAML syntax, verify security compliance, analyze route quality, find issues, perform security hardening, or ensure best practices

60-validate-tests-150

16
from diegosouzapw/awesome-omni-skill

[60] VALIDATE. Ensure new (staged and unstaged) changes are covered by tests at >70% and the full test suite is green. Use when asked to validate coverage for recent changes, add tests for modified code, or verify nothing else broke.

deployment-validation-config-validate

16
from diegosouzapw/awesome-omni-skill

You are a configuration management expert specializing in validating, testing, and ensuring the correctness of application configurations. Create comprehensive validation schemas, implement configurat

firebase-development-validate

16
from diegosouzapw/awesome-omni-skill

This skill should be used when reviewing Firebase code against security model and best practices. Triggers on "review firebase", "check firebase", "validate", "audit firebase", "security review", "look at firebase code". Validates configuration, rules, architecture, and security.

Facets Modules Validate

16
from diegosouzapw/awesome-omni-skill

Validate changed Facets modules: lint against all rules defined in rules.md AND run raptor dry-run. Auto-detects changed modules from git diff.

61-validate-lint-150

16
from diegosouzapw/awesome-omni-skill

[61] VALIDATE. Comprehensive code quality check combining ESLint, TypeScript compilation, and unused code detection. Runs full lint suite with detailed error reporting and fix suggestions. Use before commits, after major changes, or when ensuring code quality standards.

validate-historical

16
from diegosouzapw/awesome-omni-skill

Validate historical data completeness and quality over date ranges

artifact-integrity-forge

16
from diegosouzapw/awesome-omni-skill

Create and verify integrity signatures for protocol artifacts.

Validate with Database

16
from diegosouzapw/awesome-omni-skill

Connect to live PostgreSQL database to validate schema assumptions, compare pg_dump vs pgschema output, and query system catalogs interactively

lint-and-validate

16
from diegosouzapw/awesome-omni-skill

Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, validate, types, static analysis.

api-validate

16
from diegosouzapw/awesome-omni-skill

API contract validation and breaking change detection