# ClearFlow .gitignore
# This file tells Git which files and directories to ignore
# For mission-critical software, this is crucial for security and cleanliness

# Python bytecode and cache files
# These are generated automatically and can differ between systems
__pycache__/
*.py[cod]
*$py.class

# C extensions (if we ever need to optimize critical paths)
*.so

# Distribution and packaging
# These are generated during the build process
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Used for creating standalone executables
*.manifest
*.spec

# Unit test and coverage reports
# These are generated locally and shouldn't be in version control
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Virtual environments
# Each developer should create their own
venv/
ENV/
env/
.venv/

# IDEs and editors
# These contain personal preferences
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
*.sublime-project
*.sublime-workspace

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini

# Linux
.directory
.Trash-*
.nfs*

# Jupyter Notebook
.ipynb_checkpoints

# mypy type checker
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Documentation builds
docs/_build/
docs/_static/
docs/_templates/

# Logs and databases
*.log
*.sql
*.sqlite

# Environment variables file
# NEVER commit secrets!
.env
.env.local
.env.*.local

# Backup files
*.bak
*.tmp
*.temp

# Test outputs
test_output/
test_results/

# Performance profiling
*.prof
*.lprof

# Security audit files
.security/
audit.json

# local scripts
git-sync-remote.sh

# Session context files (local development only)
session-context.md
continue-session-prompt.md
*-session-*.md

.ruff_cache/