feat: add cursor indexing ignore rules for SpecStory files

- Introduced a new `.cursorindexingignore` file to prevent indexing of SpecStory auto-save files while allowing explicit context inclusion via @ references.
- Updated `.gitignore` to exclude the entire `.specstory/` directory and `.vscode/settings.json`, ensuring these files are not tracked by Git.

These changes help streamline project management by excluding unnecessary files from indexing and version control.
This commit is contained in:
BruceChen 2026-03-22 15:30:42 +08:00
parent a3c918e946
commit e3a2593781
2 changed files with 7 additions and 0 deletions

3
.cursorindexingignore Normal file
View file

@ -0,0 +1,3 @@
# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references
.specstory/**

4
.gitignore vendored
View file

@ -430,3 +430,7 @@ FodyWeavers.xsd
/mcc_input.txt /mcc_input.txt
/MinecraftClient.ini /MinecraftClient.ini
/MinecraftClient.backup.ini /MinecraftClient.backup.ini
# SpecStory files
/.specstory/
/.vscode/settings.json