# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environment
.env
.venv
env/
venv/
ENV/

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

# OS
.DS_Store
Thumbs.db

# Docker
docker/
postgres_data/
redis_data/

# windsurf rules
.windsurfrules

# Test artifacts
.coverage
htmlcov/
.pytest_cache/
.tox/
coverage.xml
*.cover

# Documentation artifacts
docs/_build/
docs/api/
*.md
!README.md
!CONTRIBUTING.md
!docs/*.md
instructions/codebase.md 

# Include only core Python files
!automagik/core/**/*.py
!automagik/cli/**/*.py
!automagik/api/**/*.py
!tests/**/*.py

# Large files and binaries
*.pkl
*.h5
*.bin
*.model
*.tar.gz
*.zip


/tests/mock_data/*