ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

proof-of-work

Enforce validation and evidence before declaring work complete. Use for acceptance criteria and done gates

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/athola/nm-imbue-proof-of-work
Or

Night Market Skill — ported from claude-night-market/imbue. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Claims without evidence fail the people who depend on your work. Proof-of-work is humility in practice: "it looks correct" is not "I verified it works."

Proof of Work

Table of Contents

  • Overview
  • The Iron Law
  • Usage Standards
  • Validation Protocol
  • Integration
  • Validation Checklist
  • Red Flag Self-Check
  • Exit Criteria

Overview

The "Proof of Work" methodology prevents premature completion claims by requiring technical verification before stating that a task is finished. For example, instead of assuming an LSP configuration functions after a restart, we verify that the server starts and that tools respond to queries. This approach confirms the solution works before the user attempts validation.

Before claiming completion, provide reproducible evidence of the solution's performance and address edge cases. All claims must be backed by actual command output captured in the current environment.

The Iron Law

NO IMPLEMENTATION WITHOUT A FAILING TEST FIRST NO COMPLETION CLAIM WITHOUT EVIDENCE FIRST NO CODE WITHOUT UNDERSTANDING FIRST

The Iron Law prevents testing from becoming a perfunctory exercise. If an implementation is planned before tests are written, the RED phase fails to drive the design. Understand the technical rationale for an approach and its limitations before declaring it done. Before writing code, document evidence of the failure being addressed and confirm that tests are driving the implementation.

Verification and TDD Workflow

Verify the fundamentals of the implementation and the reasons for choosing it over alternatives. Identify where a solution might fail rather than stating it should always work. The TDD cycle follows these mandatory steps:

  1. RED: Write a failing test before implementation.
  2. GREEN: Create a minimal implementation that passes the test.
  3. REFACTOR: Improve the code without changing its behavior.

Iron Law Self-Check

Self-Check QuestionIf Answer Is WrongAction
Do I have documented evidence of failure/need?NoSTOP - document failure first
Am I testing pre-conceived implementation?YesSTOP - let test DRIVE design
Am I feeling design uncertainty?NoSTOP - uncertainty is GOOD
Did test drive implementation?NoSTOP - doing it backwards

Iron Law Progress Tracking

Metadata

Author@athola
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-athola-nm-imbue-proof-of-work": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.