# ---- personal, never committed -------------------------------------------
# Running logbook for the person building this. Local only, by design.
LOGBOOK.md
scratch/
notes-*.md

# ---- secrets --------------------------------------------------------------
.env
.env.*
!.env.example
*.key

# ---- tapes ----------------------------------------------------------------
# Recorded runs are local artifacts; fixtures under tests/ are committed.
# A tape holds everything the tools read, which may include secrets -- see SECURITY.md.
.tapeloop/
runs/
*.tape.jsonl
snapshots/

# Eval runs: results.md is committed as the baseline, the raw material is not.
evals/*/workspaces/
evals/*/tapes/

# ---- python ---------------------------------------------------------------
__pycache__/
*.py[cod]
.venv/
dist/
build/
*.egg-info/
.pytest_cache/
.ruff_cache/
.pyright/

# ---- os / editor ----------------------------------------------------------
.DS_Store
.idea/
.vscode/
