# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
build/
dist/
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Virtual envs
.venv/
venv/

# uv
uv.lock.bak

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

# OS
.DS_Store

# Env / secrets
.env
.env.local
*.key

# Per-user Claude settings + ephemeral scheduling state
.claude/settings.local.json
.claude/scheduled_tasks.lock

# Operator scratchpad — preload notes / loose prompts kept out of
# the public repo. Personal-context file the operator shares with
# Daedalus mid-session; not something other readers should see.
TASKS.md

# Per-project Wonderland state lives in target projects, not here —
# but if anyone runs Wonderland against this repo as a sandbox:
.wonderland/

# Local drafts (showcase skeletons, scratch notes) — kept out of the
# repo until the underlying work justifies publishing them.
drafts/

# Local pilot scratch — projects/ and runs/ are operator-local
# experiment trees that accumulate as the substrate is iterated on.
# They aren't part of the package and shouldn't bloat git or PyPi.
# When a pilot's artifacts inform the README or an analysis, copy
# the relevant slice to analyses/data/<analysis-id>/ instead of
# tracking the live experiment tree.
projects/
runs/
