# venvs
.venv/
venv/

# node — build-time only (frontend/ has its own ignore; this catches strays at
# the root, e.g. a vitest cache from a run invoked with the wrong cwd)
/node_modules/

# python
__pycache__/
*.py[cod]
*.egg-info/
/dist/
.pytest_cache/
.ruff_cache/
.mypy_cache/
# hypothesis's example database (tests/test_search_fuzz.py) — a local replay
# cache of falsifying examples, regenerated on demand.
.hypothesis/

# Xcode/SwiftPM DerivedData. Archive has no native build of its own; a `.build/`
# here only appears when a sibling mac Makefile is invoked with the wrong cwd —
# ignored so that stray output never clutters this repo's status.
.build/

# Archive data lives in the user's home (~/.thread/archive), NEVER in the repo.
# These are belt-and-suspenders in case a run is pointed at the repo by mistake.
# All anchored to the repo root so they can't shadow the source tree (e.g. the
# `src/thread_archive/truth/` module must stay tracked).
/data/
/index.db
/index.db-*
/truth/
/*.sqlite

# Machine-specific MCP client config — generated at install time with absolute paths
# to this clone's venv (see the README's from-source install). The tracked
# template is .mcp.json.example.
/.mcp.json

# Obfuscated corpus built from real local stores by tests/install/obfuscate_fixtures.py.
# Private even after obfuscation — never commit it.
tests/install/fixtures-real/

# Live-repair undo records: real transcript/tool payloads from this host's
# archive. Operator data, never repository content — tracking one publishes
# private conversations. tests/meta/test_package_tree.py gates this in CI.
/host/repair-dumps/

# coverage data (pytest --cov; the CI pytest row reports coverage per run,
# and writes coverage.json for the coverage-gate row). Unanchored — a pytest
# run from any subdirectory drops its .coverage there, not just at the root.
# coverage-*.json catches sharded/per-run coverage dumps tools leave at the root.
.coverage
.coverage.*
coverage.json
coverage-*.json

# BEIR calibration cache (search_lab/beir_eval.py, the `beir` test lane): downloaded
# datasets + the built archive/embeddings, kept so re-runs skip the rebuild.
/.beir-cache/

# os
.DS_Store
