Audit Reference Originality
Compare the shipped experience with the complete reference corpus. Treat the audit as an evidence exercise, not a vibe check.
Preserve the audit boundary
- Audit only unless the user also asks for fixes.
- Call findings
originality risks, overlaps, or red flags; do not declare legal plagiarism from visual similarity alone.
- Pair every red flag with exact current-site evidence and exact reference evidence.
- Keep fact, inference, and unknown access separate.
- Do not clear a site after checking only its homepage screenshot.
1. Build the source registry
Start with the materials explicitly supplied in the task or recorded by the project:
- manifests, prompt packs, and originality matrices
- representative stills, full-page captures, and section crops
- MP4s and extracted motion frames
- reference URLs and named creators
- source brand assets, copy, numbers, screenshots, and downloads
- project briefs,
IMAGE_CREDITS.md, licenses, and attribution files
Prefer local evidence captured at the time of the brief. Use a live reference only to fill a real gap, because it may have changed. Record each reference's path or URL, role, date when known, and which categories it can prove.
Stop and report an access gap when a promised reference is missing. Do not silently reduce a full-page or motion audit to one cover image.
2. Inventory the current site and its history
Inspect:
- rendered text, metadata, navigation, calls to action, legal copy, and hidden accessible labels
- brand names, wordmarks, logos, icons, people, companies, URLs, and product/interface data
- prices, metrics, dates, counts, percentages, package names, and repeated proof claims
- every rendered image, background, texture, screenshot, font, logo, icon, audio file, and downloadable asset
- every video, poster, frame sequence, shot order, transition, duration, and playback treatment
- layout hierarchy, section order, distinctive compositions, typography behavior, motion grammar, shaders, cursor effects, and interaction sequences
- current source, built output when available, asset provenance, and repository history
Do not trust filenames as proof of originality. Inspect the bytes, visible result, and history. Search renamed, deleted, and replaced files with git log, git show, git log -S, and git log --all --name-status.
Run the deterministic inventory helper when local files are available:
python <skill-dir>/scripts/build_evidence_inventory.py \
--site <site-root> \
--reference <reference-file-or-directory> \
--reference <another-reference> \
--output <temporary-output.json>
The helper finds current and historical exact-file matches, suspicious basename reuse, normalized text overlap, and repeated number tokens. Treat its output as leads for human review, not an automatic verdict.
3. Compare category by category
Read references/audit-rubric.md before judging findings.
Audit at least these categories:
- Text — headlines, body copy, labels, CTAs, captions, legal text, alt text, metadata, and decorative wording.
- Brands — names, marks, wordmarks, proprietary icons, people, companies, partnerships, URLs, and distinctive verbal identity.
- Numbers — metrics, percentages, prices, dates, counts, plan structures, durations, and interface values.
- Images — exact files, crops, generated derivatives, screenshots, people, poses, objects, signature compositions, and color treatment.
- Assets — fonts, icons, logos, textures, mockups, downloads, code bundles, and third-party media with unclear provenance.
- Videos — exact files, frames, shots, timing, camera moves, edit rhythm, transitions, overlays, posters, and audio.
- Structure and motion — section order, unusual layout devices, pinned sequences, cursor interactions, shaders, and combinations of signature elements.
- History — copied material that was later renamed, recolored, cropped, hidden, deleted, or replaced.
Common patterns such as black backgrounds, large sans-serif type, ordinary pricing tables, standard fade-ins, or a conventional footer are not red flags by themselves. Escalate combinations of distinctive elements or direct evidence.
4. Triangulate every red flag
For each candidate:
- Identify the current-site artifact and location.
- Identify the exact reference artifact and location.
- State the observable overlap without guessing intent.
- State what differs.
- Assign severity using the rubric.
- Propose the smallest fix that breaks the overlap while preserving the site's goal.
Use hashes for exact files, normalized excerpts for copy, side-by-side crops for imagery, and matched timestamps or frames for video. A source-brand string found only in a test that explicitly forbids it is not a shipped-copy violation; explain context.
5. Propose fixes
Prefer concrete replacements:
- rewrite source-like copy from the new brand's audience, offer, and vocabulary
- replace names, URLs, logos, people, metrics, dates, plan names, and legal text
- regenerate or license new imagery with a materially different subject, composition, and motif arrangement
- replace copied assets and document provenance
- re-cut videos with new shots, timing, transitions, overlays, and audio
- reorder or redesign distinctive section and motion sequences
- remove stale source material from current output and, when required, repository history or published artifacts
Do not recommend cosmetic recoloring as a fix for copied identity, copy, media, or composition.
6. Report the result
Lead with one verdict:
Clear in checked scope
Clear with low-risk similarities
Changes recommended
Block release
Blocked by missing evidence
Then provide:
- checked source registry
- red-flag table ordered by severity
- category pass list
- history findings
- access gaps and unproven areas
- prioritized fix plan
Include a row even when a high-risk category could not be checked. Never turn missing evidence into a pass.
Completion checks
- Every supplied reference form was inspected.
- Rendered output and source were both checked.
- Text, brands, numbers, images, assets, videos, structure/motion, and history were covered.
- Every red flag cites two evidence locations.
- Exact matches are distinguished from stylistic similarity.
- Proposed fixes replace the copied element rather than disguising it.
- The report states what remains unverified.
1---2name: audit-reference-originality3description: Audit a website or digital experience against its supplied source references for originality and plagiarism risk. Use when Codex must compare current or historical site output with reference pages, capture packs, screenshots, copy, brands, numbers, images, assets, videos, layouts, motion, or code; raise evidence-backed red flags; distinguish common visual grammar from distinctive copying; and propose concrete fixes without making unsupported legal claims.4---56# Audit Reference Originality78Compare the shipped experience with the complete reference corpus. Treat the audit as an evidence exercise, not a vibe check.910## Preserve the audit boundary1112- Audit only unless the user also asks for fixes.13- Call findings `originality risks`, `overlaps`, or `red flags`; do not declare legal plagiarism from visual similarity alone.14- Pair every red flag with exact current-site evidence and exact reference evidence.15- Keep fact, inference, and unknown access separate.16- Do not clear a site after checking only its homepage screenshot.1718## 1. Build the source registry1920Start with the materials explicitly supplied in the task or recorded by the project:2122- manifests, prompt packs, and originality matrices23- representative stills, full-page captures, and section crops24- MP4s and extracted motion frames25- reference URLs and named creators26- source brand assets, copy, numbers, screenshots, and downloads27- project briefs, `IMAGE_CREDITS.md`, licenses, and attribution files2829Prefer local evidence captured at the time of the brief. Use a live reference only to fill a real gap, because it may have changed. Record each reference's path or URL, role, date when known, and which categories it can prove.3031Stop and report an access gap when a promised reference is missing. Do not silently reduce a full-page or motion audit to one cover image.3233## 2. Inventory the current site and its history3435Inspect:3637- rendered text, metadata, navigation, calls to action, legal copy, and hidden accessible labels38- brand names, wordmarks, logos, icons, people, companies, URLs, and product/interface data39- prices, metrics, dates, counts, percentages, package names, and repeated proof claims40- every rendered image, background, texture, screenshot, font, logo, icon, audio file, and downloadable asset41- every video, poster, frame sequence, shot order, transition, duration, and playback treatment42- layout hierarchy, section order, distinctive compositions, typography behavior, motion grammar, shaders, cursor effects, and interaction sequences43- current source, built output when available, asset provenance, and repository history4445Do not trust filenames as proof of originality. Inspect the bytes, visible result, and history. Search renamed, deleted, and replaced files with `git log`, `git show`, `git log -S`, and `git log --all --name-status`.4647Run the deterministic inventory helper when local files are available:4849```bash50python <skill-dir>/scripts/build_evidence_inventory.py \51 --site <site-root> \52 --reference <reference-file-or-directory> \53 --reference <another-reference> \54 --output <temporary-output.json>55```5657The helper finds current and historical exact-file matches, suspicious basename reuse, normalized text overlap, and repeated number tokens. Treat its output as leads for human review, not an automatic verdict.5859## 3. Compare category by category6061Read [references/audit-rubric.md](references/audit-rubric.md) before judging findings.6263Audit at least these categories:64651. **Text** — headlines, body copy, labels, CTAs, captions, legal text, alt text, metadata, and decorative wording.662. **Brands** — names, marks, wordmarks, proprietary icons, people, companies, partnerships, URLs, and distinctive verbal identity.673. **Numbers** — metrics, percentages, prices, dates, counts, plan structures, durations, and interface values.684. **Images** — exact files, crops, generated derivatives, screenshots, people, poses, objects, signature compositions, and color treatment.695. **Assets** — fonts, icons, logos, textures, mockups, downloads, code bundles, and third-party media with unclear provenance.706. **Videos** — exact files, frames, shots, timing, camera moves, edit rhythm, transitions, overlays, posters, and audio.717. **Structure and motion** — section order, unusual layout devices, pinned sequences, cursor interactions, shaders, and combinations of signature elements.728. **History** — copied material that was later renamed, recolored, cropped, hidden, deleted, or replaced.7374Common patterns such as black backgrounds, large sans-serif type, ordinary pricing tables, standard fade-ins, or a conventional footer are not red flags by themselves. Escalate combinations of distinctive elements or direct evidence.7576## 4. Triangulate every red flag7778For each candidate:79801. Identify the current-site artifact and location.812. Identify the exact reference artifact and location.823. State the observable overlap without guessing intent.834. State what differs.845. Assign severity using the rubric.856. Propose the smallest fix that breaks the overlap while preserving the site's goal.8687Use hashes for exact files, normalized excerpts for copy, side-by-side crops for imagery, and matched timestamps or frames for video. A source-brand string found only in a test that explicitly forbids it is not a shipped-copy violation; explain context.8889## 5. Propose fixes9091Prefer concrete replacements:9293- rewrite source-like copy from the new brand's audience, offer, and vocabulary94- replace names, URLs, logos, people, metrics, dates, plan names, and legal text95- regenerate or license new imagery with a materially different subject, composition, and motif arrangement96- replace copied assets and document provenance97- re-cut videos with new shots, timing, transitions, overlays, and audio98- reorder or redesign distinctive section and motion sequences99- remove stale source material from current output and, when required, repository history or published artifacts100101Do not recommend cosmetic recoloring as a fix for copied identity, copy, media, or composition.102103## 6. Report the result104105Lead with one verdict:106107- `Clear in checked scope`108- `Clear with low-risk similarities`109- `Changes recommended`110- `Block release`111- `Blocked by missing evidence`112113Then provide:1141151. checked source registry1162. red-flag table ordered by severity1173. category pass list1184. history findings1195. access gaps and unproven areas1206. prioritized fix plan121122Include a row even when a high-risk category could not be checked. Never turn missing evidence into a pass.123124## Completion checks125126- Every supplied reference form was inspected.127- Rendered output and source were both checked.128- Text, brands, numbers, images, assets, videos, structure/motion, and history were covered.129- Every red flag cites two evidence locations.130- Exact matches are distinguished from stylistic similarity.131- Proposed fixes replace the copied element rather than disguising it.132- The report states what remains unverified.