From 21c515ad0760155378b2f6cc9ba1d3a621c03e3d Mon Sep 17 00:00:00 2001 From: Leo Lara Date: Mon, 8 Jun 2026 22:15:19 +0700 Subject: [PATCH] chore(packaging): ignore local memory files (CLAUDE.local.md, .mb/, mb/) (#2962) * chore: ignore local memory files (CLAUDE.local.md, .mb/, mb/) These are local-only AI memory and notes files; ignore them so they do not show up as untracked in working trees. * chore: exclude local memory files from codespell Skip CLAUDE.local.md and the .mb/mb memory-bank dirs so codespell does not scan local-only AI memory and notes files (which may be present as symlinks). --- .gitignore | 3 +++ pyproject.toml | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index b736a90b110..12f73d03081 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ # AI .claude/settings.local.json +CLAUDE.local.md +.mb/ +mb/ .devcontainer # Benchmark fixed opcode counts diff --git a/pyproject.toml b/pyproject.toml index 5d763b14e42..588025f6c79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -441,6 +441,10 @@ builtin = "clear,code,usage" # Version control & tooling, build artifacts, data files, test fixtures, temp files, lock files skip = [ ".devcontainer", + # Local AI memory and notes files (gitignored, may exist as symlinks) + "CLAUDE.local.md", + ".mb", + "mb", ".git", ".just", ".venv",