Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
athola avatar

Proof Of Work

  • 105 installs
  • 325 repo stars
  • Updated August 2, 2026
  • athola/claude-night-market

proof-of-work is an agent skill that formats Definition of Done acceptance criteria with evidence and user verification steps.

About

proof-of-work from Claude Night Market gives solo builders a disciplined way to close agent tasks without vague “done” claims. It encodes four principles—SMART criteria, binary outcomes, user-verifiable checks, and evidence links—into a reusable markdown template with acceptance bullets, per-criterion PASS/FAIL evidence, status blocks, and step-by-step instructions the user can run independently. The README includes scenario starters such as configuration setup so you can adapt the same rigor to features, integrations, or ops changes. Use it whenever an agent hands back work you need to trust before shipping: after Build implementation, during Ship review, or when validating a Validate prototype before you invest further. It does not write tests for you; it structures what “proof” means so humans and agents share one contract. Skip it only when criteria are already frozen in a signed spec with automated CI gates covering every requirement.

  • Four core principles: SMART, binary pass/fail, user-verifiable steps, and evidence-backed criteria
  • Markdown task template with Acceptance Criteria, Test Evidence, Status, and User Verification Steps
  • Ready-made DoD scenarios including configuration setup and similar completion patterns
  • Explicit COMPLETE, PARTIAL, and BLOCKED statuses with blocker notes
  • Aligns with Agile Definition of Done acceptance-criteria practice

Proof Of Work by the numbers

  • 105 all-time installs (skills.sh)
  • Ranked #1,342 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/athola/claude-night-market --skill proof-of-work

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs105
repo stars325
Security audit2 / 3 scanners passed
Last updatedAugust 2, 2026
Repositoryathola/claude-night-market

What it does

Turn agent work into binary, evidence-backed acceptance criteria and user-verifiable Definition of Done checklists.

Who is it for?

Best when you want human-in-the-loop sign-off on agent-delivered config, features, or integrations.

Skip if: Skip if your requirements are already fully covered by automated CI with no manual verification gap.

When should I use this skill?

Closing an agent task and you need Definition of Done acceptance criteria with test evidence and user verification steps.

What you get

You produce a pass/fail acceptance-criteria block with linked evidence, status, and user verification steps before marking work complete.

  • Markdown DoD block with acceptance criteria and evidence table
  • COMPLETE, PARTIAL, or BLOCKED status with blockers
  • Numbered user verification instructions

By the numbers

  • Four core principles: SMART, binary outcomes, user-verifiable, evidence-backed

Files

SKILL.mdMarkdownGitHub ↗
"It looks correct" is not "I verified it works."
Proof-of-work is the discipline of closing that gap:
reproducible evidence before any claim that a task is done.

Proof of Work

Table of Contents

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

  • proof:iron-law-red: Failing test written before implementation.
  • proof:iron-law-green: Minimal implementation passes test.
  • proof:iron-law-refactor: Code improved without behavior change.
  • proof:iron-law-coverage: Coverage gates passed (line, branch, and mutation).

Confirm that work passes all line, branch, and mutation coverage gates. For detailed enforcement patterns, see iron-law-enforcement.md.

Usage Standards

Apply this skill before stating that work is "done," "finished," or "ready." Use it before recommending solutions or stating that a configuration "should work." Stop if you find yourself assuming a configuration is correct without testing it or recommending a fix without first reproducing the problem. Red flags include thinking "this looks correct" without actual verification. If you cannot explain each line of a configuration or why a specific practice applies to the current context, the necessary validation steps have been skipped.

Validation Protocol

Step 1: Reproduce the Problem (proof:problem-reproduced)

Before proposing a solution, verify the current state. Use tools like ps, echo, and cat to check running processes, environment variables, and configuration files. Document the failure with command output and error logs.

Step 2: Test the Solution (proof:solution-tested)

Before claiming a solution works, execute it in the current environment. Capture the actual output and confirm that it matches expected behavior. Do not rely on assumed output.

Step 3: Check for Known Issues (proof:edge-cases-checked)

Research known bugs and limitations related to the approach. Check GitHub issues, version compatibility, and official documentation to identify potential blockers or common pitfalls.

Step 4: Capture Evidence (proof:evidence-captured)

Use imbue:proof-of-work to document the commands executed, their output, timestamps, and the conclusions drawn from each step.

Step 5: Prove Completion (proof:completion-proven)

Define acceptance criteria and validate each item. If a blocker is identified, document the diagnosis with evidence and provide workaround options instead of claiming completion.

Integration

With Improvement Workflows

Use proof-of-work to validate improvement opportunities identified by /update-plugins or /fix-workflow. Document the baseline metrics (step count, failure rate, duration), test the proposed changes, and capture the improved metrics to demonstrate quantitative impact.

Validation Checklist (Before Claiming "Done")

Verify that the problem was reproduced with evidence and the solution was tested in the actual environment. Research known issues and consider edge cases. Capture evidence in a reproducible format and confirm that all acceptance criteria are met. The completion statement must detail the specific tests run and their results, citing evidence for each claim.

Red Flag Self-Check

Before sending a completion message, confirm that you have run the recommended commands and captured their output. Verify that you have researched known issues and that the validation steps are reproducible by the user. Ensure you are proving rather than assuming.

Supporting Modules

  • TodoWrite naming patterns: naming

conventions and safe deletion rules for imbue TodoWrite items

  • Evidence logging: structured

evidence capture, audit trails, and reproducibility patterns

  • Independent verification: for

high-stakes changes, why the producing agent may not be its own sole verifier, and what counts as an independent check

Related Skills

  • imbue:karpathy-principles: the "Goal-Driven Execution" principle

wraps the Iron Law in a four-principle synthesis useful as a pre-flight gate

  • See docs/quality-gates.md#skill-level-quality-gate-composition for

the full gate-skill federation graph

Exit Criteria

Complete all progress tracking items. Create an evidence log with reproducible proofs. Define and validate acceptance criteria, and document any identified blockers.

Related skills

How it compares

Structured DoD template for agent handoffs—not a substitute for automated test suites or product discovery brainstorming.

FAQ

Who is proof-of-work for?

Developers and agent users who need clear, testable completion criteria when Claude or similar tools claim a setup or feature is done.

When should I use proof-of-work?

In Ship (review) before merging or releasing; in Build (pm) when closing implementation tasks; in Validate (scope) to lock prototype exit criteria; in Operate (iterate) when verifying incident or config fixes with evidence.

Is proof-of-work safe to install?

It is documentation-only templates with no runtime hooks—still review the Security Audits panel on this Prism page before trusting any Night Market skill in automated workflows.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.