empirical-validation
Requires verifiable proof of work completion to ensure accuracy and prevent unchecked tasks.
Install
mkdir -p .claude/skills/empirical-validation && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5080" && unzip -o skill.zip -d .claude/skills/empirical-validation && rm skill.zipInstalls to .claude/skills/empirical-validation
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Requires proof before marking work complete — no "trust me, it worksKey capabilities
- →Identify verification criteria for code changes
- →Execute commands to capture empirical evidence
- →Document validation results in .gsd/JOURNAL.md
- →Enforce objective proof before task completion
How it works
It requires the user to define observable criteria for a task, execute a verification command, and document the actual output before marking the task as done.
Inputs & outputs
When to use empirical-validation
- →Verifying code changes
- →Validating feature completion
- →Ensuring test coverage before commit
About this skill
Empirical Validation
Core Principle
"The code looks correct" is NOT validation.
Every change must be verified with empirical evidence before being marked complete.
Validation Methods by Change Type
| Change Type | Required Validation | Tool |
|---|---|---|
| UI Changes | Screenshot showing expected visual state | browser_subagent |
| API Endpoints | Command showing correct response | run_command |
| Build/Config | Successful build or test output | run_command |
| Data Changes | Query showing expected data state | run_command |
| File Operations | File listing or content verification | run_command |
Validation Protocol
Before Marking Any Task "Done"
-
Identify Verification Criteria
- What should be true after this change?
- How can that be observed?
-
Execute Verification
- Run the appropriate command or action
- Capture the output/evidence
-
Document Evidence
- Add to
.gsd/JOURNAL.mdunder the task - Include actual output, not just "passed"
- Add to
-
Confirm Against Criteria
- Does evidence match expected outcome?
- If not, task is NOT complete
Examples
API Endpoint Verification
# Good: Actual test showing response
curl -X POST http://localhost:3000/api/login -d '{"email":"[email protected]"}'
# Output: {"success":true,"token":"..."}
# Bad: Just saying "endpoint works"
UI Verification
# Good: Take screenshot with browser tool
- Navigate to /dashboard
- Capture screenshot
- Confirm: Header visible? Data loaded? Layout correct?
# Bad: "The component should render correctly"
Build Verification
# Good: Show build output
npm run build
# Output: Successfully compiled...
# Bad: "Build should work now"
Forbidden Phrases
Never use these as justification for completion:
- "This should work"
- "The code looks correct"
- "I've made similar changes before"
- "Based on my understanding"
- "It follows the pattern"
Integration
This skill integrates with:
/verify— Primary workflow using this skill/execute— Must validate before marking tasks complete- Rule 4 in
GEMINI.md— Empirical Validation enforcement
Failure Handling
If verification fails:
- Do NOT mark task complete
- Document the failure in
.gsd/STATE.md - Create fix task if cause is known
- Trigger Context Health Monitor if 3+ failures
When not to use it
- →When subjective assurance is sufficient
- →When no observable output exists for a change
Prerequisites
Limitations
- →Requires manual identification of verification criteria
- →Cannot validate tasks without observable outputs
How it compares
It blocks task completion until objective evidence is provided, replacing subjective claims like 'it works' with verifiable data.
Compared to similar skills
empirical-validation side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| empirical-validation (this skill) | 1 | 4mo | Review | Beginner |
| gsd-audit-uat | 0 | 4mo | No flags | Intermediate |
| linear-ci-integration | 1 | 25d | Caution | Intermediate |
| work-on-issue | 0 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by toonight
View all by toonight →You might also like
gsd-audit-uat
Gustavosareto
Cross-phase audit of all outstanding UAT and verification items
linear-ci-integration
jeremylongshore
Configure Linear CI/CD integration with GitHub Actions and testing. Use when setting up automated testing, configuring CI pipelines, or integrating Linear sync into your build process. Trigger with phrases like "linear CI", "linear GitHub Actions", "linear automated tests", "CI linear pipeline", "linear CI/CD".
work-on-issue
meta-pytorch
Start work on a GitHub issue. Extracts requirements, creates worktree, sets up TDD workflow.
tpp
photostructure
Work on a Technical Project Plan. Use when starting or continuing work on a TPP from _todo/.
regression
ThePalaceProject
Run a full release regression test — sets up workspace, runs automated tools, guides manual testing, generates report and Jira tickets. Use for release gates and QA cycles.
team-qa
bullish0x
Orchestrate the QA team through a full testing cycle. Coordinates qa-lead (strategy + test plan) and qa-tester (test case writing + bug reporting) to produce a complete QA package for a sprint or feature. Covers: test plan generation, test case writing, smoke check gate, manual QA execution, and sig