# =============================================================================
# ThoughtBase .gitignore
# =============================================================================

# Admin-only tools (never pushed to remote)
.admin/

# Byte-compiled / optimized / DLL files
__pycache__/
**/__pycache__/
*.py[cod]
**/*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Private plans
.PLANS/

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff
instance/
.webassets-cache

# Scrapy stuff
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pdm
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments and secrets
.env
.env.*
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# IDE
.idea/
.vscode/
*.swp
*.swo

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Ruff
.ruff_cache/

# pytype
.pytype/

# Cython debug symbols
cython_debug/

# OS files
.DS_Store
Thumbs.db

# ============================================================================
# Human-AI Pair Programming Context
# ============================================================================
# This folder contains reference materials, notes, and files used to provide
# context during AI-assisted development sessions. Not part of the codebase.
.context/

# ============================================================================
# AI Assistant Configuration (Cursor, Claude, etc.)
# ============================================================================
# These are local IDE/assistant settings and rules that should not be committed.

# Cursor
.cursor
.cursor/
**/.cursor
**/.cursor/
.cursorrules
.cursorrules/
**/.cursorrules
**/.cursorrules/
*.mdc

# Claude
.claude
.claude/
**/.claude
**/.claude/
.clauderules
.clauderules/
**/.clauderules
**/.clauderules/
claude.json
**/claude.json
.claude_*
**/.claude_*

# ============================================================================
# Private workspaces (sandbox, experiments, research, etc.)
# ============================================================================
.sandbox/
.explore/
.projects/
.research/
.experiments/
