From 4b98e52043fbb82adfa3415edb186e495d867deadff9c29f6868c943d80ec4c5 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 26 Apr 2026 22:10:27 -0400 Subject: [PATCH] chore: gitignore screenshots, scheduled-tasks lock, playwright cache Working tree was accumulating debris across sessions: - Headless-Chrome / visual-companion screenshots in repo root (dozens of throwaway PNGs from design iteration) - .claude/scheduled_tasks.lock from autonomous-loop runs - .playwright-mcp/ cache from the Playwright MCP server Adds explicit ignores so these stay local. Intentionally archived screenshots belong under docs/; the /*.png pattern only catches root-level debris. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index c9f5d34..a979320 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,16 @@ .superpowers/ .mcp.json .claude/settings.local.json +.claude/scheduled_tasks.lock ezscale-discovery-*/ + +# Docker dev env +.env.docker + +# Playwright MCP cache + per-session debris +.playwright-mcp/ + +# Loose screenshots from headless Chrome / visual companion sessions. +# Intentionally archived screenshots belong under docs/; root-level PNGs +# are throwaway debug artifacts that shouldn't be tracked. +/*.png