-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
211 lines (190 loc) · 5.96 KB
/
Copy path.gitignore
File metadata and controls
211 lines (190 loc) · 5.96 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
# ──── Python ───────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyc
unsloth_compiled_cache/
# ──── Node.js ──────────────────────────────────────────────────────
node_modules/
# ──── IDE / Editor ─────────────────────────────────────────────────
.vscode
!.vscode/mcp.json
.vs
.idea
*.*project
.settings
*.sublime-workspace
*.sublime-project
*.swn
*.swo
*.swp
*.swm
*~
.DS_Store
.cache
compile_commands.json
# ──── Virtual environments ─────────────────────────────────────────
.venv/
venv/
env/
# ──── Build artifacts ──────────────────────────────────────────────
build/
dist/
*.egg-info/
exp
raw_wav
tensorboard
**/*build*
# ──── Security — API tokens and sensitive files ────────────────────
.env
.env.local
.env.*
*.token
*.key
*.pem
.lmstudio_token
# ──── Databases (all SQLite variants) ──────────────────────────────
*.db
*.db-wal
*.db-shm
*.db-journal
*.sqlite
*.sqlite3
*.sqlite-wal
*.sqlite-shm
conversation_history.db
# ──── Logs ─────────────────────────────────────────────────────────
logs/
*.log
kernel.errors.txt
.github/hooks/logs/
# ──── Tests ────────────────────────────────────────────────────────
tests/tmp/
.pytest_cache/
tui_autostart.log
# ──── Cache / benchmarks ──────────────────────────────────────────
cache/
benchmarks/
# ──── Model weights and training artifacts (large binaries) ────────
*.safetensors
*.gguf
*.onnx
*.bin
*.h5
*.hdf5
*.pt
*.tar
pretrained_models
training/models/
training/datasets/*.jsonl
# ──── Media binaries ──────────────────────────────────────────────
*.mp4
*.mp3
*.m4a
*.aac
*.wav
*.avi
*.mov
*.mkv
*.webm
*.flac
*.ogg
content/media/
content/simulation/media/images/
content/simulation/media/voice/
content/simulation/media/video/
content/simulation/media/photo/
audio_output/
test_*.wav
# ──── Generated protobuf ──────────────────────────────────────────
*_pb2_grpc.py
*_pb2.py
# ──── Runtime data artifacts ──────────────────────────────────────
data/chrome_*/
data/uploads/
data/heap_output/
data/nlm_screenshots/
data/argus/
data/accounts/
data/test_reports/
data/backups/
data/*.json
data/*.jsonl
data/*.png
data/*.tmp
data/*.db
data/training_exports/
content/apps/*/data/
# ──── HAR / ARGUS capture artifacts ───────────────────────────────
artifacts/
data/har_files/
data/hars/
**/*.har
**/*.heaptimeline
**/*.heapsnapshot
**/*.pcap
**/*.pcapng
**/*.trace
**/*.pma
# ──── Backups ─────────────────────────────────────────────────────
backups/
**/backups/
*.bak
*.bak.*
config/launcher.yaml.bak
# ──── Secrets & credentials (v1.61.0 — never commit real values) ──
# Real secrets live in gitignored local files; committed *.example.* files
# show the structure. See docs/CONFIGURATION.md / .env.example.
config/secrets.yaml
config/secrets.local.yaml
config/*.local.yaml
# contains extracted Google API keys — runtime-regenerable; ship nlm_rpcids.example.yaml
config/nlm_rpcids.yaml
# runtime rpcid cache (also matched by data/*.json)
data/nlm_rpc_registry.json
# legacy cookie store
data/google_accounts/
data/credentials/
**/*credentials*.json
**/*_cookies.json
**/*.credentials
**/service_account*.json
**/client_secret*.json
# ──── Heap / dump / capture intelligence (may contain mined secrets) ──
data/heap_findings*
data/heap-output/
heap_output/
**/*.dump
**/*.heap
data/dumps/
# ──── Copilot session files ───────────────────────────────────────
copilot-session-*.md
# ──── Jupyter notebooks ───────────────────────────────────────────
Untitled.ipynb
.ipynb_checkpoints/
# ──── Large generated files ───────────────────────────────────────
nlm_automation_log.json
nlm_bundle.js
# ──── v1.64 housekeeping — local scratch / runtime artifacts ───────
# Local Claude Code session settings (machine-specific)
.claude/settings.local.json
# venv bootstrap log
.venv-install-log.txt
# Superpowers skill scratch (plans/specs are session artifacts)
.superpowers/
docs/superpowers/
# Test fixture scene (not a launch target)
content/scenes/test_scene/
# Grok experiment scratch
grok.md
data/grok/
scripts/argus/grok_*.py
# data/ scratch probes + dumps not caught by existing data/* rules
data/_*.py
data/*.txt
data/baseline/
data/nexus_vectors/
# Training runtime artifacts (datasets, run logs, registry — regenerated)
training/*.jsonl
training/datasets/**/*.jsonl
training/model_registry.json