docs(memory): how to detect unused assets (srcset/URL-encoding traps)#18
Merged
Conversation
…traps Captures the reusable method for checking whether an image/PDF/CSS class is really unused (grep the built _site including .webmanifest, not just source) and the two false-positive traps hit this session: srcset responsive variants (the 2 MB hero original never ships — only its -p-* variants) and URL-encoded filenames (PDFs with %20). Also records the maintainer's decision not to delete orphaned images. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
memory/note from the improve-system review of the CSP/cleanup session.memory/finding-unused-assets.mdcaptures the reusable method for checking whether an image/PDF/CSS class is genuinely unused — grep the built_site(HTML + CSS +site.webmanifest), not just source — and the two false-positive traps hit this session:srcsetvariants: the index hero uses onlyInOEG_IRIS-One-Pager_Hero-p-*; the 2 MB full-size original is never referenced and never ships (so the earlier "optimise the 2 MB hero" idea was moot).%20, so a plaingrep -Fmisses them — all 13documents/PDFs are in fact used.Also records the maintainer's decision not to delete orphaned images.
Not duplicated: the
img-src 'self' data:rationale (needed for the external-link icon) was already added tocsp-policy.mdearlier this session.🤖 Generated with Claude Code