chore: gitignore playwright cache and root-level screenshots#12
Merged
Conversation
…shots The /loop browser-check sessions during docs-site iteration generated playwright cache (.playwright-mcp/) and root-level screenshot PNGs (landing-3x3-full.png, takens-*-full.png, delay-check-viewport.png). These are transient artifacts that should not enter the tree. The /*.png pattern is anchored to repo root only — docs/assets/favicon.png and docs/assets/logo.png remain tracked. Coding-Agent: claude-code Model: claude-opus-4-7
Review Summary by Qodochore: gitignore playwright cache and root-level screenshots
WalkthroughsDescription• Add /.playwright-mcp to .gitignore to exclude playwright MCP browser cache (transient screenshots and console logs) generated during /loop browser-check sessions • Add /*.png (root-anchored) to .gitignore to exclude root-level browser-check screenshots like landing-3x3-full.png, takens-*-full.png, delay-check-viewport.png • Tracked image assets in docs/assets/ (favicon, logo) remain unaffected due to leading-slash anchor scoping the pattern to repo root only • Resolves ten untracked artifacts cluttering the working tree discovered during CF-1 takens local audit Diagramflowchart LR
gitignore[".gitignore"]
playwright["/.playwright-mcp<br/>(transient cache)"]
screenshots["/*.png<br/>(root-level)"]
assets["docs/assets/*.png<br/>(tracked)"]
gitignore -- "add pattern" --> playwright
gitignore -- "add pattern" --> screenshots
assets -- "unaffected" --> gitignore
File Changes |
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Navi Bot (project-navi-bot)
approved these changes
Apr 30, 2026
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.
Summary
/.playwright-mcp— playwright MCP browser cache (transient screenshots and console logs) generated during/loopbrowser-check sessions/*.png(root-anchored) — root-level browser-check screenshots likelanding-3x3-full.png,takens-*-full.png,delay-check-viewport.pngdocs/assets/(favicon, logo) are unaffected — the leading-slash anchor scopes the pattern to repo root onlyDiscovered during the CF-1 takens local audit (2026-04-30):
git statuswas returning ten untracked artifacts cluttering the working tree. The.gitignorewas the only outstanding hygiene item; the build, axiom dashboard, and headline declarations were all clean (audit memo lives in the consumer repo,reccs-formalization).Test plan
git diff main..HEADshows only the.gitignoreaddition (+6 lines)git statussilent after the change — no??lines for the ten transient artifactsgit ls-files 'docs/assets/*.png'still listsfavicon.pngandlogo.png*.leanfiles touched; build state unchangedOut of scope
reccs-formalization.Coding-Agent: claude-code
Model: claude-opus-4-7