mcpbeat

Validation Diagnostics

microsoft/validation-diagnostics

Validation and diagnostic skill for HASTE. Compare planned vs implemented work, generate diagnostic reports, and feed misses back into skill refinement. Use when: 'validate implementation', 'compare to spec', 'diagnostic report', 'drift analysis', 'coverage check', 'implementation review'.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
82
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/haste --skill validation-diagnostics

The instruction itself

11 sections, as written by the author

Validation & Diagnostics

Overview

Structured process for comparing planned vs implemented work, generating diagnostic reports, and identifying gaps. Used by validation agents to provide concrete, evidence-based assessments.

Key Concepts

The Trust Problem

Agents will claim work is complete when it isn't. Validation must be:

  • Observable — Based on test output, not agent claims
  • Deterministic — Same input produces same verdict
  • Evidence-based — Every finding references concrete code or test results
  • Structured — Consistent format for easy human review

Patterns & Techniques

Planned vs Implemented Comparison

Step 1: Extract planned items

From the spec, issue, or plan, extract a checklist of:

  • Acceptance criteria
  • Required endpoints/functions
  • Expected model fields
  • Required test coverage
  • UI components specified

Step 2: Verify each item

For each planned item, check:

  • Does the code exist? (file search, grep)
  • Does it match the specification? (read and compare)
  • Is it tested? (find corresponding test)
  • Does the test pass? (run and capture output)

Step 3: Generate drift report

## Drift Analysis: [Feature]

| Planned Item | Status | Evidence |
|-------------|--------|----------|
| [spec item] | ✅ Implemented | [file:line] |
| [spec item] | ⚠️ Partial | [what's missing] |
| [spec item] | ❌ Not found | [searched in...] |
| [unplanned] | ⚡ Scope creep | [file:line] |

Diagnostic Report Template

## Diagnostic Report: [Component/Feature]

### Summary
[1-2 sentence verdict]

### Test Results

[Actual test output — copy/paste, not paraphrased]


### Code Quality
| Metric | Result |
|--------|--------|
| Type hints present | ✅ / ❌ |
| Pydantic models used | ✅ / ❌ |
| Config class used (no hardcoded secrets) | ✅ / ❌ |
| Error handling present | ✅ / ❌ |
| Logger used (not print) | ✅ / ❌ |

### Findings
| # | Severity | Finding | Location | Recommendation |
|---|----------|---------|----------|----------------|
| 1 | [High/Med/Low] | [what] | [file:line] | [fix] |

### Coverage Gaps
[Code paths without tests]

### Verdict
✅ PASS | ⚠️ CONDITIONAL PASS | ❌ FAIL
[Explanation with evidence]

HASTE-Specific Validation Checks

| Component | Must Verify |

|-----------|-------------|

| New API endpoint | Auth level, Pydantic validation, error codes, CORS |

| New processor | Config injection, logger usage, error handling |

| New data model | Pydantic BaseModel, field types, validation rules |

| New data layer | Abstract interface compliance, connection handling |

| New UI component | FluentUI usage, no alt frameworks, responsive |

| Geospatial code | CRS preservation, COG compliance, GDAL/rasterio usage |

Feedback Loop

When validation reveals a miss:

  • Document the miss in the diagnostic report
  • Identify the pattern (was it a convention violation? missing test? spec ambiguity?)
  • Propose a skill update or instruction addition to prevent recurrence
  • Flag to the Orchestrator for tracking

Decision Framework

| Validation Result | Action |

|-------------------|--------|

| All checks pass, tests green | ✅ Approve |

| Minor issues, tests pass | ⚠️ Conditional — list issues for human review |

| Tests fail | ❌ Block — must fix before proceeding |

| Scope creep detected | ⚠️ Flag — human decides if extra work is acceptable |

| Spec ambiguity found | ⚠️ Flag — needs clarification before validation |

Common Pitfalls

  • Accepting "tests passed" without seeing output — Always run and capture
  • Validating only happy path — Check error handling and edge cases
  • Skipping convention checks — HASTE has specific patterns that must be followed
  • Not checking for scope creep — Extra changes can introduce regressions

How to use it

Copy the folder

Take microsoft/validation-diagnostics from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.