clarity-inventory — the evidence base
You are not auditing yet. You are building the single shared view of the page
that all six stage auditors will cite, so their findings reconcile. Six
auditors scraping independently produce six slightly different pages and
findings that can't be deduplicated — one inventory, six consumers.
Procedure
- Render honestly. Load the target at a desktop viewport (1440×900) and
a mobile viewport (390×844) if browser tools are available. Screenshot
both, plus a crop of exactly the first fold (0 to viewport height, no
scroll). If only fetch is available, extract HTML and mark the run
--fast: note that fold geometry, scroll cues, and visual hierarchy
findings will be UNVERIFIED.
- Map the sections in scroll order. A section = a visually or
semantically bounded band. For each, record: anchor (id, or a generated
sec-N), position (which screenful it starts on), heading, and its full
normalized text (whitespace-collapsed).
- Hash each section: sha256 of the normalized text, first 12 hex chars.
This is the finding anchor_hash — it lets a future run tell "same copy,
finding stands" from "copy changed, re-audit".
- CTA census: every clickable action on the page — label, visual weight
(filled / outlined / bare link), position, destination, and whether it is
above the fold. Mark the primary per screenful (the most visually
dominant). Two primaries on one screenful is a fact to record, not judge.
- Number census: every quantitative claim on the page (prices, counts,
percentages, times) with its section anchor — the trust and pricing
stages audit specificity and consistency from this list.
- Entry matrix: record every significant path that brings visitors, one
row per channel — paid ad copy, search snippet, the README, a shared
link's unfurl (fetch the og:title/og:description; advocacy traffic
arrives through that card), and the page's own
<title> + meta
description as the direct/fallback row. For each row: the exact entry
copy, and the awareness stage (Schwartz) it delivers — a paid ad tends to
bring problem-aware visitors, a friend's link most-aware ones. Mark the
primary channel (best available traffic evidence; otherwise the
title/meta row). The promise stage audits message match per row; its
gate binds on the primary.
Output
Write audit/inventory.md (in the audited repo, or the working directory
for a remote site):
# Inventory — <target> — <date>
viewport: 1440×900 · mode: full|fast
## Entry matrix (the promises visitors arrive holding)
| channel | entry copy (verbatim) | awareness stage | primary? |
|---------|-----------------------|-----------------|----------|
## Sections (scroll order)
| # | anchor | screenful | heading | hash | words |
|---|--------|-----------|---------|------|-------|
### <anchor> — full text
<normalized copy>
## CTA census
| label | weight | section | above fold? | destination | primary? |
## Number census
| value | claim | section |
Keep the copy verbatim — auditors quote evidence from this file. Do not
summarize, do not editorialize, do not flag anything. Inventory findings are
a category error.
1---2name: clarity-inventory3description: Phase 0 of the stranger test — build the shared evidence base (section map, per-section copy with content hashes, fold crop, CTA census) that every scored stage consumes. Use before any clarity-* stage skill; never score anything here.4---56# clarity-inventory — the evidence base78You are not auditing yet. You are building the single shared view of the page9that all six stage auditors will cite, so their findings reconcile. Six10auditors scraping independently produce six slightly different pages and11findings that can't be deduplicated — one inventory, six consumers.1213## Procedure14151. **Render honestly.** Load the target at a desktop viewport (1440×900) and16 a mobile viewport (390×844) if browser tools are available. Screenshot17 both, plus a crop of exactly the first fold (0 to viewport height, no18 scroll). If only fetch is available, extract HTML and mark the run19 `--fast`: note that fold geometry, scroll cues, and visual hierarchy20 findings will be UNVERIFIED.212. **Map the sections** in scroll order. A section = a visually or22 semantically bounded band. For each, record: anchor (id, or a generated23 `sec-N`), position (which screenful it starts on), heading, and its full24 normalized text (whitespace-collapsed).253. **Hash each section**: sha256 of the normalized text, first 12 hex chars.26 This is the finding anchor_hash — it lets a future run tell "same copy,27 finding stands" from "copy changed, re-audit".284. **CTA census**: every clickable action on the page — label, visual weight29 (filled / outlined / bare link), position, destination, and whether it is30 above the fold. Mark the *primary* per screenful (the most visually31 dominant). Two primaries on one screenful is a fact to record, not judge.325. **Number census**: every quantitative claim on the page (prices, counts,33 percentages, times) with its section anchor — the trust and pricing34 stages audit specificity and consistency from this list.356. **Entry matrix**: record every significant path that brings visitors, one36 row per channel — paid ad copy, search snippet, the README, a shared37 link's unfurl (fetch the og:title/og:description; advocacy traffic38 arrives through that card), and the page's own `<title>` + meta39 description as the direct/fallback row. For each row: the exact entry40 copy, and the awareness stage (Schwartz) it delivers — a paid ad tends to41 bring problem-aware visitors, a friend's link most-aware ones. Mark the42 *primary* channel (best available traffic evidence; otherwise the43 title/meta row). The promise stage audits message match per row; its44 gate binds on the primary.4546## Output4748Write `audit/inventory.md` (in the audited repo, or the working directory49for a remote site):5051```markdown52# Inventory — <target> — <date>53viewport: 1440×900 · mode: full|fast5455## Entry matrix (the promises visitors arrive holding)56| channel | entry copy (verbatim) | awareness stage | primary? |57|---------|-----------------------|-----------------|----------|5859## Sections (scroll order)60| # | anchor | screenful | heading | hash | words |61|---|--------|-----------|---------|------|-------|6263### <anchor> — full text64<normalized copy>6566## CTA census67| label | weight | section | above fold? | destination | primary? |6869## Number census70| value | claim | section |71```7273Keep the copy verbatim — auditors quote evidence from this file. Do not74summarize, do not editorialize, do not flag anything. Inventory findings are75a category error.