Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Design Proof

ASecurity

Prove a change on the site's pixels with the screenshot harness - a baseline of the commit it starts from, a capture after, a compare read as a report - so a refactor shows it moved nothing and a design change shows it moved only what it meant to. Use before any merge that touches src/, styles or images, when asked to prove, verify, check parity or "make sure nothing else changed", and after a `SIZE`, `CHANGED` or `reflow` line needs reading.

2 stars
0 votes
0 copies
0 views
Added 9/23/2026
developmentgobashgit

Security Analysis

A100/100

Scanned 9/23/2026

Install to Claude Code

$npx -y skills add HKamkar/agentic-cms --skill design-proof --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Design Proof?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Design Proof
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hkamkar-design-proof/badge)](https://www.skillsdirectory.com/skills/hkamkar-design-proof)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: design-proof
description: Prove a change on the site's pixels with the screenshot harness - a baseline of the commit it starts from, a capture after, a compare read as a report - so a refactor shows it moved nothing and a design change shows it moved only what it meant to. Use before any merge that touches src/, styles or images, when asked to prove, verify, check parity or "make sure nothing else changed", and after a `SIZE`, `CHANGED` or `reflow` line needs reading.
argument-hint: [pages or sections the change touches]
---

# Design proof

The harness is `agentic-cms visual-parity` (`docs/visual-parity.md` of the
kit — the modes, the file names, the waits, the traps — and
`docs/commands.md` for the flags). A proof is two captures and one compare;
the compare's report says what moved, where, and whether the rest of the
page survived.

## Read first

`docs/visual-parity.md` § Reading a compare; the change's diff (`git diff
develop --stat`) to know which pages and sections it can touch; whether
anything animates (`grep -rl "agentic-cms/ix" src/components`), which
decides whether `--motion` is part of the proof.

## Steps

1. **The baseline**, from the exact commit the change starts from, never
   from a checkout that moved on:

   ```bash
   pnpm kit visual-parity capture before --ref develop            # or the branch's base commit
   ```

   (A served build standing in for a commit — `--url` — has its `git log
   -1` printed first.) With reveals in use, also `--motion`; with hover,
   focus, checked or open states touched, also `--states`; with a dark
   theme, `--scheme dark`. A long run goes in the background; the capture is
   finished when `.parity/visual/<label>/capture.json` exists.
2. **The change**, built exactly as it will be committed (`pnpm build`;
   nothing edited after it), then:

   ```bash
   pnpm kit visual-parity capture after
   pnpm kit visual-parity compare before after --json
   ```

   `--pages /a,/b` on both while iterating on one page; the full set once
   before the merge.
3. **Read the report** (`report.json`, or the lines):
   - `ok` everywhere: a refactor proved. Say so with the counts.
   - `CHANGED` on the pages the change touches, `rows` inside the changed
     section: expected; look at the diff image once to confirm the rows are
     the section's.
   - `SIZE … shift`: the section grew or shrank and everything below moved
     intact — the crops (`<name>.before.png`, `.after.png`) show the band;
     expected for a design change that changes a height.
   - `SIZE … reflow`, or `CHANGED` rows on every text line below one
     section: something changed how the compositor paints the whole page —
     usually a new stacking context (`position: relative`, a `z-index`, a
     `transform`) on a section whose animated elements overflow it.
     `pnpm kit probe / --select "<the section>"` prints the stacking chain;
     keep the utility to the breakpoint that needs it.
   - `CHANGED` on a mid-flight motion frame (`--s03-500`, 20–30 %): timing
     jitter is possible; re-run the after capture once, and identical on the
     re-run is accepted. A settled or static frame never jitters.
   - A settled motion frame that keeps differing where a sequence runs long:
     the section declares `data-settle="<ms>"` (`STANDARD.md` §7).
   - `MISSING`: a page appeared or disappeared, or the compare lacks the
     `--pages` the capture had.
4. **Say what the proof says**, in numbers: how many files, which
   differed, the verdicts, and why each difference is the change. A design
   change is its own commit and says so.

## Traps

- Never `pnpm build`, edit `public/` or move assets while a capture runs.
- Commit each proven state before the next change.
- `.parity/` is gitignored and grows fast; delete old labels.
- A baseline built for the wrong sha proves nothing: the sha is in
  `meta.json` and on the compare's first line.

## Stop for the user

A `reflow` or a difference outside the change's pages that the report does
not explain; the merge.

Attribution

HKamkarHKamkar
View sourceMore from HKamkar →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →