# ---------------------------------------------------------------------------
# OS / Editor
# ---------------------------------------------------------------------------
.DS_Store
Thumbs.db
*~
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
*.swp
.conductor


# ---------------------------------------------------------------------------
# Claude Code — machine-local MCP registration (absolute paths; regenerated by setup)
# ---------------------------------------------------------------------------
.mcp.json
.playwright-mcp/

# ---------------------------------------------------------------------------
# Secrets & local environment (NEVER commit real secrets)
# ---------------------------------------------------------------------------
.env
.env.*
!.env.example
*.pem
*.key

# ---------------------------------------------------------------------------
# Logs & temp
# ---------------------------------------------------------------------------
*.log
logs/
tmp/
*.tmp

# ---------------------------------------------------------------------------
# Node / TypeScript / JavaScript
# ---------------------------------------------------------------------------
node_modules/
dist/
build/
out/
.next/
.nuxt/
.cache/
coverage/
*.tgz
*.tsbuildinfo
.npm/
.eslintcache
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/releases

# ---------------------------------------------------------------------------
# Python
# ---------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.egg
*.egg-info/
.eggs/
.installed.cfg
develop-eggs/
sdist/
wheels/
share/python-wheels/
MANIFEST

# Virtual environments
.venv/
venv/
env/
ENV/
.python-version

# Test / type / lint caches
.pytest_cache/
.mypy_cache/
.dmypy.json
.pyre/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
.hypothesis/

# ---------------------------------------------------------------------------
# Jupyter / Notebooks
# ---------------------------------------------------------------------------
.ipynb_checkpoints/
*/.ipynb_checkpoints/*
profile_default/
ipython_config.py

# ---------------------------------------------------------------------------
# Machine Learning — models, checkpoints, artifacts
# ---------------------------------------------------------------------------
*.ckpt
*.pt
*.pth
*.h5
*.hdf5
*.pb
*.onnx
*.tflite
*.pkl
*.pickle
*.joblib
*.safetensors
*.bin

# Experiment tracking & pipelines
wandb/
mlruns/
.mlflow/
lightning_logs/
runs/
outputs/
checkpoints/
.dvc/cache
.dvc/tmp

# Datasets — uncomment if large/raw data should NOT be versioned.
# Prefer DVC / git-lfs / external storage for big data.
# data/
# datasets/
# *.csv
# *.parquet
# *.tfrecord
