From 2f21aa60970d5af7ca7026fe3da0155986c54cb1 Mon Sep 17 00:00:00 2001 From: rdwj Date: Tue, 28 Apr 2026 22:40:15 -0400 Subject: [PATCH] chore: gitignore .venv/ and NEXT_SESSION.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two local-only files that have been showing up untracked across recent sessions: - .venv/ — modern uv/python convention (the existing venv/ entry only caught the older form). - NEXT_SESSION.md — session-handoff notes that live in the user's ~/.claude memory store, not in the repo. No code changes. Assisted-by: Claude Code (Opus 4.7) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 667c702..6510bb8 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ MANIFEST # Virtual environments venv/ +.venv/ env/ ENV/ env.bak/ @@ -88,3 +89,6 @@ tokens.txt # Project specific setup_structure.sh + +# Session handoff notes (local-only — content lives in MEMORY.md) +NEXT_SESSION.md