/ .gitignore
.gitignore
 1  # Python
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  *.so
 6  .Python
 7  env/
 8  .venv/
 9  venv/
10  build/
11  develop-eggs/
12  dist/
13  downloads/
14  eggs/
15  .eggs/
16  lib/
17  lib64/
18  parts/
19  sdist/
20  var/
21  wheels/
22  *.egg-info/
23  .installed.cfg
24  *.egg
25  .mypy_cache/
26  .pytest_cache/
27  .ruff_cache/
28  
29  # Secrets / local env
30  .env
31  .env.*
32  
33  # Local-only / internal (do not publish to GitHub)
34  AGENT_SESSION_CONTEXT.md
35  docs/internal/
36  *.local.md
37  
38  # macOS
39  .DS_Store
40  .AppleDouble
41  .LSOverride
42  
43  # IDE / editor
44  .vscode/
45  .idea/
46  .cursor/
47  
48  # Local app bundles produced outside dist (if any)
49  *.app/