From e8076cabe32dc2e772619f2b73fba08d0e376b72 Mon Sep 17 00:00:00 2001 From: Jose Lopez Date: Sun, 17 May 2026 14:40:50 +0200 Subject: [PATCH] chore: also ignore .specstory/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cursor IDE's SpecStory plugin writes auto-save snapshots into .specstory/. The repo's existing .cursorindexingignore already excludes the dir from Cursor's indexing, but git was never told — so it shows up as an untracked dir in every working copy that has Cursor installed. Per-developer, not project-relevant — add it to .gitignore. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 10068d4..9cd2372 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,10 @@ __pycache__/ # Claude Code worktree config — per-session local state, not part of the project .claude/ +# SpecStory (Cursor IDE auto-save) — already excluded from Cursor indexing +# via .cursorindexingignore; this also keeps it out of git. +.specstory/ + # Jupyter Notebook .ipynb_checkpoints