# =============================================================================
# tailtest - AI agent testing framework
# =============================================================================

# ----- Private (NEVER push to public repo) -----
strategy/
papers/
marketing/
settings/
docs/strategy/
docs/papers/
.private/

# ----- Python -----
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg
*.egg-info/
dist/
build/
sdist/
wheels/
*.whl
.eggs/

# Virtual environments
.venv/
venv/
env/

# ----- Testing (pytest) -----
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover
tests/results/

# ----- Linting / type-checking -----
.ruff_cache/
.pyright/
.mypy_cache/

# ----- Rust (future core component) -----
target/
*.so
*.dylib
*.dll
Cargo.lock

# ----- .tester context/test data -----
# The .tester/ directory holds per-project context and test artifacts.
# Each user generates their own; never commit it.
.tester/

# ----- Environment / secrets -----
.env
.env.*
!.env.example

# ----- Local databases -----
*.sqlite
*.db

# ----- macOS -----
.DS_Store
.AppleDouble
.LSOverride

# ----- IDE / editors -----
.vscode/
.idea/
*.swp
*.swo
*~

# ----- Claude Code -----
.claude/

# ----- MkDocs build output -----
site/

# ----- Misc -----
*.log
*.tmp
uv.lock
.tailtest/
marketing/website/node_modules/
