chore: prune stale dev artifacts (.playwright-mcp + dashboard-render PNGs)#226
Open
avrabe wants to merge 4 commits into
Open
chore: prune stale dev artifacts (.playwright-mcp + dashboard-render PNGs)#226avrabe wants to merge 4 commits into
avrabe wants to merge 4 commits into
Conversation
…nder PNGs)
Two clusters of accidentally-checked-in files removed:
1. `.playwright-mcp/` — three console logs from 2026-03-19/20 sessions
that the Playwright MCP integration left behind. Not referenced by
any code or doc. Gitignored to prevent reappearance.
2. `dashboard-render{,2,3,4}.png` at repo root — four ~25-29 KB screenshots
landed in commit 96adaa8 (feat/solver-allocate merge, 2026-04-01).
Not referenced by any .md / .rs / .yml / .yaml / .toml file. Gitignored
under `/dashboard-render*.png` so future ad-hoc captures stay local.
Total reclaim: ~110 KB working-tree, ~100 KB in pack (verified via
`git ls-files`).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Rivet verification gate✅ 17/17 passed
Filter: Failed artifacts(none) Updated automatically by |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
Two clusters of accidentally-checked-in files removed.
Files removed
.playwright-mcp/dashboard-render*.pngVerification that none are referenced
```
grep -rln "dashboard-render" --include='.md' --include='.rs' --include='.yml' --include='.yaml' --include='*.toml'
(no matches)
```
The
.playwright-mcp/logs aren't imported, parsed, or referenced anywhere in the workspace either..gitignore additions
.playwright-mcp/— Playwright MCP integration session traces/dashboard-render*.png— anchored to repo root so future ad-hoc captures stay localBoth follow the existing pattern of gitignoring
tests/playwright/node_modules/anddist/.Test plan
git ls-files | grep -i playwright-mcp→ empty after mergegit ls-files '*.png' | grep -v '^crates/\|^docs/\|^test-data/'→ onlyvscode-spar/icon.png(kept; referenced by the VS Code extension)Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com