/target
/sdk/typescript/dist/
/sandbox-runtime/target
/sandbox-python/target
/sandbox-js/target

# Vendored Test262 conformance suite (fetched by scripts/test262.sh, ~56k files)
/vendor/test262/

# wasm-bindgen output for the browser demo (regenerate with scripts/build-wasm.sh)
/crates/chidori-wasm/www/pkg/

# macOS
.DS_Store

# Editor / IDE
.idea/
.vscode/

# Claude Code local state (transient; share settings.json explicitly if desired)
.claude/worktrees/
.claude/settings.local.json
.claude/projects/
.claude/todos/
.claude/shell-snapshots/
.claude/statsig/

# Run artifacts and runtime state produced by `chidori run` / `chidori serve`
# (kept out of source control; sessions.sqlite3* also matches SQLite -wal/-shm
# sidecar files)
.chidori/runs/
.chidori/wasm-cache/
.chidori/memory/
.chidori/sessions.sqlite3*
**/.chidori/runs/
**/.chidori/wasm-cache/
**/.chidori/memory/
**/.chidori/sessions.sqlite3*
# The source-history object store (#166); generated alongside the run journal.
.chidori/history-objects/
**/.chidori/history-objects/
# Durable run-store mirror (CHIDORI_RUN_STORE=sqlite) + SQLite sidecars
.chidori/runs.sqlite3*
**/.chidori/runs.sqlite3*
# Workspace file store (chidori.workspace.write) + its generation manifest
**/.generation/
examples/*/RELEASE_NOTES.md
examples/*/AUDIT.md

# Python build/dist
__pycache__/
*.pyc
*.egg-info/
sdk/python/build/
sdk/python/dist/

# Node
node_modules/

# Docs website (Next.js + Fumadocs) build output and generated sources
/website/.next/
/website/out/
/website/.source/
/website/next-env.d.ts
/website/tsconfig.tsbuildinfo
# Playground runtime assets, mirrored from the wasm build by scripts/build-wasm.sh
/website/public/chidori-wasm/
# Docs index for the /playground chat agent (regenerate with
# website/scripts/build-playground-context.mjs; runs as part of npm run build)
/website/public/playground-docs.json
# Runnable docs-example index for the example-runner panel and the docs VM's
# seeded filesystem (regenerate with
# website/scripts/build-runnable-examples.mjs; runs as part of npm run build)
/website/public/runnable-examples.json
/website/public/vm-seed.json

# Secrets / local env
.env
.envrc
.env*.local
.env.local

# Test262 conformance state store (generated; regenerate with scripts/conformance.sh)
conformance-state.*.json

# Test262 coverage report (generated by scripts/test262.sh --report)
test262-coverage.md
