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
| # MB-X runtime / local session state
| .mbx/
|
| # AI private workspaces and scratch areas
| ai-*/
| tmp/
| **/tmp/
|
| # Local backups and caches
| *.bak
| __pycache__/
| **/__pycache__/
| *.pyc
| *.pyo
|
| # Local environments and dependency caches
| .env
| .env.*
| .venv/
| venv/
| node_modules/
|
| # Local credential/key files
| *.key
| *.pem
| *.pfx
| *credential*
| *credentials*
| *secret*
|
| # Office/editor temporary files
| ~$*
| ~$$*.~vsdx
|
|