-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy path.gitignore
More file actions
334 lines (286 loc) · 7.42 KB
/
.gitignore
File metadata and controls
334 lines (286 loc) · 7.42 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# ============================================================================
# PYTHON
# ============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.eggs/
*.egg
# ============================================================================
# VIRTUAL ENVIRONMENTS
# ============================================================================
.venv/
.venv-base/
.venv-ci311/
venv/
env/
ENV/
env.bak/
venv.bak/
# ============================================================================
# IDE & EDITORS
# ============================================================================
# PyCharm
.idea/
# VSCode
.vscode/
# Vim
*.swp
*.swo
*~
# IntelliJ
*.iml
# ============================================================================
# AI ASSISTANTS
# ============================================================================
CLAUDE.md
.claude/
AGENTS.md
CODEX.md
# AI assistant skill definitions (personal/local only)
skills/*
# Exception: distributable skills published with the project
!skills/cascadeflow/
!skills/cascadeflow/**
# ============================================================================
# INTERNAL PLANNING (local only, not for GitHub)
# ============================================================================
docs/OSS_DEVELOPMENT_STAGES.md
docs/*_PLAN*.md
docs/*_ROADMAP*.md
**/INTERNAL_*.md
# Research notes (local only, not for GitHub)
docs/research/
# One-off internal investigations / benchmark notes (keep local)
dx-plan-*.md
evaluation-*.md
fastembed-*.md
current_stats_before_fix.json
test-result.txt
decisions.jsonl
*.patch
benchmark_results/
mtbench_results/
# ============================================================================
# ENVIRONMENT VARIABLES
# ============================================================================
.env
.env.local
.env.*.local
*.env
# API Keys (be explicit about config files)
*_config.txt
*_api_key.txt
# ============================================================================
# TESTING
# ============================================================================
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
coverage.xml
*.cover
.hypothesis/
.mypy_cache/
.dmypy.json
dmypy.json
# ============================================================================
# TEST ARTIFACTS (cascadeflow-specific)
# ============================================================================
# Test-generated configuration files
tuned_configs/
tuning_recommendations/
# ============================================================================
# OS FILES
# ============================================================================
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
Desktop.ini
# Linux
*~
.directory
.Trash-*
# ============================================================================
# BACKUPS
# ============================================================================
*.bak
*.backup
*.old
*.orig
*.tmp
.cleanup_backup_*/
# ============================================================================
# TYPESCRIPT/NODE.js
# ============================================================================
node_modules/
*.tsbuildinfo
.turbo/
# Package manager lockfiles - use pnpm-lock.yaml only
package-lock.json
yarn.lock
# ============================================================================
# DEVELOPMENT TEST FILES (Do not commit to repo)
# ============================================================================
# TypeScript test files (not in tests/ directory)
/packages/*/test-*.ts
/packages/*/test-*.js
/test-*.ts
/test-*.js
# Python test files (root level only, tests/ directory is fine)
/test_*.py
# ============================================================================
# DEVELOPMENT DOCUMENTATION (Keep locally but don't track in git)
# ============================================================================
# Assistant conversation notes
CLAUDE.md
# Architecture and planning documents
INTEGRATIONS_ARCHITECTURE.md
MONOREPO_ARCHITECTURE.md
TYPESCRIPT_ROADMAP.md
TYPESCRIPT_STRUCTURE_PLAN.md
TYPESCRIPT_FEATURE_GAPS.md
docs/TS_ML_INTEGRATION_PLAN.md
LAUNCH_DAY_PLAN.md
# Audit and analysis reports
PRE_RELEASE_AUDIT.md
VALIDATION_REPORT.md
STRUCTURE.md
# Progress and work tracking
PROGRESS_*.md
WORK_*.md
# Analysis directory (keep locally for reference)
/.analysis/
# Marketing materials (keep locally, publish separately)
/.marketing/
MARKETING_GUIDE.md
# Internal development documentation
.github/COMMIT_POLICY.md
.github/BRANCHING_STRATEGY.md
.github/CURRENT_STATUS.md
.github/TEST_FAILURES_EXPLAINED.md
# Launch preparation documents (temporary)
LAUNCH_*.md
PRE_LAUNCH_*.md
FINAL_PRE_LAUNCH_*.md
POST_LAUNCH_*.md
*_COMPLETE.md
*_REPORT.md
*_SUMMARY.md
*_STATUS.md
*_DESIGN.md
*_IMPLEMENTATION_PLAN.md
*_VALIDATION_*.md
DEPLOY_INSTRUCTIONS.md
PUBLISHING_SETUP_GUIDE.md
MILESTONE_*.md
STRATEGIC_*.md
V0.*.md
# Allow committed test result reports
!docs/test-results/
!docs/test-results/*.md
# Feature comparison and analysis (development only)
docs/PYTHON_VS_TYPESCRIPT_FEATURES.md
docs/QUICK_COMPARISON_TABLE.md
docs/DOCUMENTATION_VALIDATION_REPORT.md
docs/DOCUMENTATION_UPDATES_SUMMARY.md
PYTHON_VS_TYPESCRIPT_FEATURES.md
# Release notes (keep versioned releases, ignore working drafts)
docs/RELEASE_NOTES_*.md
# Exception: Keep useful checklists in .github
!.github/*_CHECKLIST.md
!.github/*_READINESS.md
!.github/*_GUIDE.md
!.github/*_PLAN.md
# Test scripts (root level)
/comprehensive_test.py
/test_all_examples.py
/validate_*.py
# Development-only directories (not for public)
/tests/_archive*/
/_archive*/
# Backup files
*.backup
*.backup-*
README.*.backup*
# IDE files
*.iml
# ============================================================================
# PROJECT SPECIFIC (cascadeflow)
# ============================================================================
# Logs
logs/
*.log
*.log.*
# Cache
.cache/
.ruff_cache/
# Documentation builds
docs/_build/
docs/_static/
docs/_templates/
site/
# Jupyter notebooks checkpoints
.ipynb_checkpoints/
# ============================================================================
# SECURITY (Important!)
# ============================================================================
# Never commit these
*secret*
*SECRET*
*.pem
*.key
*.p12
*.pfx
*.p8
credentials.json
token.json
# ============================================================================
# MACOS SPECIFIC
# ============================================================================
# Prevent committing macOS folder attributes
._*
.Spotlight-V100
.Trashes
# Generated TypeScript API documentation
packages/core/docs/
# Temporary development files
HOW_*.md
*_ISSUE.md
*_PLAN.md
!docs/PROXY_INTEGRATION_PLAN.md
*_ANALYSIS.md
!docs/research/VERCEL_AI_SDK_DX_ANALYSIS.md
!docs/research/N8N_V2_INTEGRATION_PLAN.md
test_all_*.py
test_semantic_*.py
test_milestone*.py
comprehensive_test.py
# Root-level config duplicates (canonical copies in examples/configs/)
/anthropic-only.yaml
/mixed-anthropic-openai.yaml
/mixed-domains*.yaml
/openai-only.yaml
# Local demos and packaged artifacts (keep out of main)
investor-demo/
investor-demo-claude/
investor-demo-codex/
# ============================================================================
# BENCHMARK RESULTS (keep scripts, ignore outputs)
# ============================================================================
*_results/
*_cache.json
*_cache/