From f19fc9f52239eac866ef1fcf88c95394d79a7cfd Mon Sep 17 00:00:00 2001 From: Algis Dumbris Date: Mon, 21 Sep 2026 13:00:41 +0300 Subject: [PATCH] chore: ignore .codex/ and .gocache/ local tool artifacts .codex/ (codex CLI local config, e.g. MCP server registrations with machine-specific absolute paths) and .gocache/ (Go build cache) are per-machine artifacts that shouldn't be tracked. Co-Authored-By: Claude Sonnet 5 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 71e99a889..9ef075696 100644 --- a/.gitignore +++ b/.gitignore @@ -171,3 +171,7 @@ scripts/demo/node_modules # Subagent-driven-development scratch workspace (ledger, briefs, review packages) .superpowers/ + +# codex CLI local config + Go build cache +.codex/ +.gocache/