verification-before-delivery

verification-before-delivery is a skill for Claude Code from zpower426/datapowers. It costs 36 tokens per session (2,868 once invoked), scanned A, original, MIT.

A required review procedure for analytical work, models, and reports before delivery. It checks that output files exist and work, that statistical claims have evidence, and that results can be reproduced.

In plain words
What is it for?
Validating analysis artifacts, auditing reported metrics and confidence intervals, checking reproducibility, and approving reports or models for handoff.
Why use it?
It catches missing files, undocumented assumptions, unreliable results, and analyses that cannot be repeated before others depend on them.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the datapowers plugin — 20 skills, 3 commands, 3 agents, 1 hook shipped together

Good fit Validating analysis artifacts, auditing reported metrics and confidence intervals, checking reproducibility, and approving reports or models for handoff.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zpower426/datapowers/verification-before-delivery
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zpower426/datapowers --skill verification-before-delivery
Clone the repo
git clone --depth 1 https://github.com/zpower426/datapowers

Made for: Claude Code.

Or install datapowers, the plugin that ships this one along with the rest of its 20 skills, 3 commands, 3 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verification-before-delivery

README.md
[![agentmods](https://agentmods.dev/badge/skills/zpower426/datapowers/verification-before-delivery/github.svg)](https://agentmods.dev/skills/zpower426/datapowers/verification-before-delivery)
Your own site
<a href="https://agentmods.dev/skills/zpower426/datapowers/verification-before-delivery"><img src="https://agentmods.dev/badge/skills/zpower426/datapowers/verification-before-delivery/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for verification-before-delivery

Your own site · 80×15
<a href="https://agentmods.dev/skills/zpower426/datapowers/verification-before-delivery"><img src="https://agentmods.dev/badge/skills/zpower426/datapowers/verification-before-delivery.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,868 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.02868
Opus 5 $0.00018 $0.01434
Sonnet 5 $0.00007 $0.00574
Haiku 4.5 $0.00004 $0.00287

Measured 9d ago against content hash fb6bb1fb2442, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

verification-before-delivery scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

result = subprocess.run(
skills/verification-before-delivery/SKILL.md · 326 lines

How it starts

The opening of the file, as written. The whole thing — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Verification Before Delivery

The final gate before delivering any analytical output. No delivery is approved without passing all three verification stages: artifact integrity, statistical evidence audit, and reproducibility confirmation.

Why this gate exists: "It runs on my machine" is not a delivery standard. Analyses fail in production due to missing artifacts, unreproducible seeds, undocumented assumptions, and missing confidence intervals. This skill catches those failures before they reach stakeholders.

Iron Law

NO DELIVERY WITHOUT REPRODUCIBLE EVIDENCE. CONFIDENCE INTERVALS ARE MANDATORY ON ALL REPORTED METRICS.

When to Use

Trigger this skill when:

  • User says "done", "complete", "ready to deliver", "finished"
  • A PR is being prepared for analysis code
  • A report is being sent to a stakeholder
  • A model artifact is being moved to staging or production

Step-by-Step Procedure

Stage 1 — Artifact Integrity Check

Verify every expected output exists, is non-empty, and is loadable.

import os
import json
import joblib
import pandas as pd
from pathlib import Path

def verify_artifact_integrity(manifest_path: str = "artifacts/analysis_manifest.json") -> dict:
    """
    Verify all artifacts referenced in the manifest actually exist and are loadable.
    Returns a dict with pass/fail status per artifact.
    """
    manifest = json.loads(Path(manifest_path).read_text())
    results = {}

    # Check manifest itself is valid
    assert manifest.get("project"), "manifest.project is empty"
    assert manifest.get("brainstorming", {}).get("primary_metric"), \
        "FAIL: primary_metric not declared in brainstorming"

    # Check each stage's artifact paths
    artifact_fields = {
        "data_profiling": "profile_path",
        "data_exploration": "eda_report_path",
        "data_validation": "tdds_report_path",
        "leakage_guard": "report_path",
        "feature_engineering": "registry_path",
        "model_evaluation": "shap_path",
        "report": "report_path",
    }

    for stage, field in artifact_fields.items():
        path = manifest.get(stage, {}).get(field)
        if path is None:
            results[f"{stage}.{field}"] = "SKIP (null)"
            continue
        if not os.path.exists(path):
            results[f"{stage}.{field}"] = f"FAIL: file not found at {path}"
        elif os.path.getsize(path) == 0:
            results[f"{stage}.{field}"] = f"FAIL: file is empty at {path}"
        else:
            results[f"{stage}.{field}"] = f"PASS ({os.path.getsize(path):,} bytes)"

    # Check transformer artifacts are loadable
    for pkl_path in manifest.get("feature_engineering", {}).get("transformer_paths", []):
        try:
            obj = joblib.load(pkl_path)
            results[f"transformer:{pkl_path}"] = f"PASS (type: {type(obj).__name__})"
        except Exception as e:
            results[f"transformer:{pkl_path}"] = f"FAIL: cannot load — {e}"

    # Check model artifact
    model_eval = manifest.get("model_evaluation", {})
    if model_eval.get("shap_path"):
        if not os.path.exists(model_eval["shap_path"]):
            results["shap_plot"] = "FAIL: SHAP plot missing"

    return results

results = verify_artifact_integrity()
failures = {k: v for k, v in results.items() if v.startswith("FAIL")}
if failures:
    print("❌ ARTIFACT INTEGRITY FAILURES:")
    for k, v in failures.items():
        print(f"  {k}: {v}")
    raise RuntimeError("Delivery blocked: artifact integrity failures")
else:
    print("✅ All artifact integrity checks passed")
    for k, v in results.items():
        print(f"  {k}: {v}")

Read the full file on GitHub · 326 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 326 lines · 36 tokens per session scan A fb6bb1fb2442

Subscribe to this mod's changes

verification-before-delivery is a skill published in the GitHub repository zpower426/datapowers (1 stars, last pushed 5mo ago), licensed MIT. It adds 36 tokens to every session and 2,868 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.