-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (72 loc) · 2.21 KB
/
Copy path.gitignore
File metadata and controls
84 lines (72 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/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*
# 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