1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# =============================================================================
# VecBoost .gitignore - Optimized and Well-Organized
# =============================================================================
#
# Structure:
# 1. IDE & Editors
# 2. AI Assistant Tools
# 3. Operating System Files
# 4. Environment & Configuration
# 5. Rust Build Artifacts
# 6. Python Dependencies
# 7. Testing & Coverage
# 8. Binary & Library Files
# 9. Temporary Files
# =============================================================================
# -----------------------------------------------------------------------------
# 1. IDE & Editors
# -----------------------------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
# -----------------------------------------------------------------------------
# 2. AI Assistant Tools
# -----------------------------------------------------------------------------
.claude/
.opencode/
.trae/
# -----------------------------------------------------------------------------
# 3. Operating System Files
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
# -----------------------------------------------------------------------------
# 4. Environment & Configuration
# -----------------------------------------------------------------------------
.env
.env.local
.env.*
!.env.example
!.env.test
# -----------------------------------------------------------------------------
# 5. Rust Build Artifacts
# -----------------------------------------------------------------------------
target/
*.rs.bk
*.rmeta
.cargo/config.toml
# Note: Cargo.lock SHOULD be tracked - DO NOT add it here
# Keeping Cargo.lock in version control ensures reproducible builds
# -----------------------------------------------------------------------------
# 6. Python Dependencies
# -----------------------------------------------------------------------------
__pycache__/
*.py
*$py.class
*.egg-info/
.eggs/
dist/
build/
*.egg
pip-wheel-metadata/
*.whl
.tox/
.venv/
venv/
env/
.Python
.pytest_cache/
# -----------------------------------------------------------------------------
# 7. Testing & Coverage
# -----------------------------------------------------------------------------
.benchmarks/
coverage.xml
htmlcov/
.coverage
.coverage.*
coverage/
test_report*.json
# -----------------------------------------------------------------------------
# 8. Binary & Library Files
# -----------------------------------------------------------------------------
*.o
*.a
*.so
*.dll
*.dylib
models/
*.wasm
# -----------------------------------------------------------------------------
# 9. Temporary Files
# -----------------------------------------------------------------------------
logs/
*.log
*.tmp
*.temp
*.bak
*.backup
temp/
# -----------------------------------------------------------------------------
# 10. Documentation Build (Sphinx, mdBook, etc.)
# -----------------------------------------------------------------------------
docs/_build/
docs/.doctrees/
# -----------------------------------------------------------------------------
# 11. Project Documentation
# -----------------------------------------------------------------------------
AGENTS.md
openspec/
CLAUDE.md
IFLOW.md
# -----------------------------------------------------------------------------
# 12. Ignored Project Specific Files
# -----------------------------------------------------------------------------
.iflow/
.ruff_cache/
.sisyphus/
TEST_MODES.md