From 6b34f29b2709679897f4b6ddde9d63d455d9679c Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Sun, 21 Jun 2026 21:36:31 -0500 Subject: [PATCH] Ignore agent/AI-tool artifacts (zero AI trace) The synced .claude/ agent symlinks and agent-tool scratch (.playwright-mcp/ etc.) were protected only by a machine-global gitignore, so a clone or CI without it could commit them and leak an AI trace. Ignoring them in-repo makes the protection portable; the private ai-context repo is the only place these belong. --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 6c89d15..331d132 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,12 @@ # OS .DS_Store Thumbs.db + +# Agent / AI-tool artifacts — never commit (zero AI trace). +.claude/ +.agents/ +.cursor/ +.aider* +.continue/ +.playwright-mcp/ +**/*-mcp/