From ec54f0c84cc6d281d4a50bfefa7e72e09c078bf8 Mon Sep 17 00:00:00 2001 From: ohad6k Date: Thu, 23 Jul 2026 16:00:37 +0300 Subject: [PATCH] chore: ignore local build and run cruft Five paths kept showing up as untracked noise in the working tree. All are regenerable output from local tooling, none are wanted artifacts: - .cache/ npm _cacache/_logs/_npx, puppeteer browser downloads, extracted video frames and captured screenshots - .voice-venv/ isolated interpreter built by the voice-clone engine - /out.txt stray shell redirects from local CLI runs; anchored to - /error.log the repo root so nested files of these names still track - proof-run/ ad-hoc dated A/B render runs (out-a/out-b, compare.html) app_assets/ is deliberately left untracked-but-not-ignored: it holds source artwork rather than disposable output, so that call is Ohad's. Verified: git ls-files -i -c --exclude-standard is empty, so no currently tracked file became ignored. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index d30f7d7..0273c8e 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,8 @@ __pycache__/ *.pyc .DS_Store .venv/ +# the voice-clone engine builds its own isolated interpreter +.voice-venv/ # local working files, never part of the release .superpowers/ @@ -29,6 +31,14 @@ __pycache__/ videos/ .tools/ +# tool download/capture caches written into the repo root +# (npm _cacache/_logs/_npx, puppeteer browser downloads, extracted frames) +.cache/ + +# stray shell redirects left behind by local CLI runs +/out.txt +/error.log + # python packaging build artifacts dist/ build/ @@ -45,6 +55,8 @@ nul .emulo-proof-private/ proof-private/ emulo-proof-runs/ +# ad-hoc dated A/B render runs (out-a/out-b screenshots, compare.html) +proof-run/ # local tool, not part of the project mcp-publisher.exe