From 1a56ec01dcd4130f8c462a49b75cf578834c21a6 Mon Sep 17 00:00:00 2001 From: "@jaydenOoOo" Date: Sun, 9 Aug 2026 21:24:26 +0800 Subject: [PATCH] Keep agent and planning files out of the repo, not just off this machine CLAUDE.md, AGENTS.md and .claude/ were relied on being ignored by ~/.config/git/ignore, which is machine-local: it does not travel with a clone, so the same files were one 'git add -A' away from being committed from any other checkout. pharos and horus even carried the section header for these entries with nothing underneath it. Each repo now ignores them itself. No behaviour change; the local copies stay exactly where they are. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 491e48a..198dd95 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ .env .venv/ .claude/ +CLAUDE.md +AGENTS.md __pycache__/ *.py[cod] .pytest_cache/