prove-before-showing

prove-before-showing is a skill for Claude Code, Codex from Generous-Corp/pulp. It costs 89 tokens per session (2,311 once invoked), scanned A, original, MIT.

A verification checklist for proving that a user interface or generated feature works through the actions a person will take, not just through a build or screenshot. It can compare a port against its source design and drive controls without manual clicking.

In plain words
What is it for?
Use it before asking someone to review a UI, when comparing an imported design with its implementation, testing controls headlessly, checking generated output, or launching the real host application.
Why use it?
It catches dead controls, unreachable features, and differences hidden by visual similarity or passing tests. This prevents presenting an interface as ready when its main behaviour has not been exercised.

Skill for Claude CodeCodex

Part of the pulp plugin — 63 skills, 30 commands, 3 hooks, 1 MCP server shipped together

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.

agentmods
npx agentmods add skills/generous-corp/pulp/prove-before-showing
Any agent
npx skills add Generous-Corp/pulp --skill prove-before-showing
Clone the repo
git clone --depth 1 https://github.com/Generous-Corp/pulp

Made for: Claude Code, Codex.

Or install pulp, the plugin that ships this one along with the rest of its 63 skills, 30 commands, 3 hooks, 1 MCP server.

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 prove-before-showing

README.md
[![agentmods](https://agentmods.dev/badge/skills/generous-corp/pulp/prove-before-showing.svg)](https://agentmods.dev/skills/generous-corp/pulp/prove-before-showing)
Your own site
<a href="https://agentmods.dev/skills/generous-corp/pulp/prove-before-showing"><img src="https://agentmods.dev/badge/skills/generous-corp/pulp/prove-before-showing.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,311 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00089 $0.02311
Opus 5 $0.00044 $0.01156
Sonnet 5 $0.00018 $0.00462
Haiku 4.5 $0.00009 $0.00231

Measured today against content hash f15857233696, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

prove-before-showing scanned grade A with 0 findings 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 today.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/prove-before-showing/SKILL.md · 208 lines

How it starts

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

Prove it works before showing it

A build is not proof. A screenshot is not proof. A passing suite is not proof that the thing a human will do actually works. This skill is the checklist that turns "it looks right" into "I drove it and watched it work".

It exists because the alternative was measured. A shell was handed over that rendered pixel-close to its design and was completely inert — not one button clickable — because the verification was a screenshot. And after that was fixed, Build still generated a patch whichever mode was selected, so the headline feature was unreachable, while thirteen tests passed.

The four proofs

Run every one that applies. Each answers a question the others cannot.

1. A/B against the source design

An imported design has a source render. Compare against it, every pass.

# Capture the source. Use the CLI, never the helper directly.
pulp import-design <prototype.html> --output <dir>

# Capture ours.
<app-binary> --screenshot /tmp/ours.png

# Put them side by side and get a number.
python3 tools/rack/compare_renders.py --out /tmp/sheet.png \
  design=<dir>/browser.png ours=/tmp/ours.png rack=/tmp/host.png

compare_renders.py reports the mean per-pixel difference. It is blunt but monotone: it drops when they converge and rises when they diverge, which cannot be argued with the way "looks close enough" can. Track it; do not let it climb.

Name every difference you can still see. A number near zero and a list of five unfixed deltas is honest. A number alone is not.

Traps:

  • A DOM snapshot is not evidence of which screen is showing. A self-contained prototype has every heading in its source, so a text search reports success for a click that did nothing. Only pixels are evidence.
  • --screenshot captures the render surface, not the composited window. So window-level chrome — rounded corners, shadow, titlebar — will look wrong in a capture even when it is right on screen. Check the running app before "fixing" it.
  • The importer captures initial state only today. Multi-screen capture is coming as deterministic CDP actions. Do not inject scripts into the prototype to fake it — that was tried for twelve attempts across four strategies and produced two distinct images.

Read the full file on GitHub · 208 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. today First seen · 208 lines · 89 tokens per session scan A f15857233696

Subscribe to this mod's changes

prove-before-showing is a skill published in the GitHub repository Generous-Corp/pulp (16 stars, last pushed today), licensed MIT. It adds 89 tokens to every session and 2,311 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

use-agent-browser-for-airi

Test AIRI display-model imports with agent-browser across stage-tamagotchi Electron, stage-web, and stage-pocket mobile web layouts. Use when uploading and verifying contributor-supplied Live2D ZIP, VRM, or MMD ZIP/PMX/PMD files through AIRI's model selector, including onboarding bypass, format-specific import…

moeru-ai/airi · 87 tokens

run-integration-tests

Build, pack, and run .NET MAUI integration tests locally. Validates templates, samples, and end-to-end scenarios using the local workload.

dotnet/maui · 35 tokens

cli-e2e-testcase-writer

Use when adding or updating Go CLI E2E coverage for one tests/clie2e/{domain} domain of the compiled lark-cli, especially when the work requires live --help or schema exploration, scenario-based clie2e.RunCmd workflows, and per-domain coverage.md maintenance.

larksuite/cli · 78 tokens

webapp-testing

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

every-app/open-seo · 35 tokens

__SKILL_ID__

This fixture verifies that skill content can be written into the target sandbox and queried back immediately.

NVIDIA/NemoClaw · 10 tokens

harness-test-writer

Add regression test cases to the Bifrost provider harness (the Postman collection run via make run-provider-harness-test) based on a merged PR or a GitHub issue. Fetches the PR/issue, traces the affected wire path in the codebase, checks existing harness coverage, designs cases following harness conventions, inserts…

maximhq/bifrost · 133 tokens