# Virtual environments
.venv/
venv/

# Python caches
__pycache__/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.cache/

# Compiled bytecode
*.py[cod]
*$py.class

# Coverage and test artifacts
.coverage
coverage.xml
htmlcov/

# Logs
*.log

# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~
test_output*.txt
test_debug*.txt

# IDE/editor
.vscode/
.idea/

# Build artifacts
dist/
build/
*.egg-info/

# OS files
.DS_Store

# Env files
.env
.python-version

# Local tools directory (root level only, not reversecore_mcp/tools)
/Tools/


