From 1c6589407f9eb5f7bd6cd00748947366e7822324 Mon Sep 17 00:00:00 2001 From: Shayan Rais Date: Sun, 19 Apr 2026 12:30:55 +0500 Subject: [PATCH] gitignore: exclude Playwright MCP artifacts and agent verification screenshots Agents that verify UI changes in a browser via Playwright MCP drop a `.playwright-mcp/` cache directory and `*-check.png` screenshots in the repo root. These are session-scoped verification residue, not deliverables. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 3d63026..f2d8d2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ plan/ .vscode/ + +# Browser-automation verification artifacts (Playwright MCP / agent screenshots) +.playwright-mcp/ +*-check.png