Back to list
PhantasticUniverse

verification-patterns

by PhantasticUniverse

Self-maintaining Claude Code showcase demonstrating all features (January 2026)

0🍴 0📅 Jan 22, 2026

SKILL.md


name: verification-patterns description: Evidence-based verification of completed work. Use when verifying task completion, confirming work is done, validating changes, or checking if a task is finished.

Verification Patterns

"The most impactful tip is: always ask Claude Code to verify it has completed the task." — Boris

Core Principle

Never trust "I've completed X" without evidence.

Verification means proving work is done, not just saying it is.

The Verification Protocol

Step 1: Identify Claims

What work was supposedly completed?

  • Code changes made
  • Bugs fixed
  • Features added
  • Tests written

Step 2: Define Evidence

For each claim, what would prove it?

ClaimEvidence
Bug fixedReproduction steps no longer fail
Feature addedFeature works as specified
Tests writtenTests exist and pass
Code changedDiff shows expected changes

Step 3: Gather Evidence

# Check code changes
git diff --stat

# Run tests
npm test

# Verify build
npm run build

# Check behavior
curl http://localhost:3000/api/endpoint

Step 4: Report Results

For each claim:

  • ✅ Verified with evidence
  • ⚠️ Partially verified
  • ❌ Not verified

Evidence Types

Code Evidence

  • File diffs showing changes
  • New files created
  • Tests added

Runtime Evidence

  • Tests passing
  • Build succeeding
  • Application running

Behavioral Evidence

  • Feature works as expected
  • Bug no longer reproducible

Verification Checklist

### Code Changes
- [ ] Files modified as intended
- [ ] No unintended changes

### Tests
- [ ] All existing tests pass
- [ ] New tests added (if applicable)

### Build
- [ ] Build completes without errors

### Behavior
- [ ] Primary functionality works
- [ ] No regressions introduced

Anti-Patterns

"I've done it"

Bad: "I've added the login feature." Good: "Login feature added. Tests pass: 12/12. Login flow verified working."

"Should work"

Bad: "This should fix the bug." Good: "Bug fixed. Reproduced issue, applied fix, confirmed issue no longer occurs."

Remember

"Show me, don't tell me."

Score

Total Score

40/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon