-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.gitignore
More file actions
71 lines (61 loc) · 1.8 KB
/
Copy path.gitignore
File metadata and controls
71 lines (61 loc) · 1.8 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
__pycache__/
*.pyc
*.pyo
.coverage
htmlcov/
*.egg-info/
dist/
build/
.pytest_cache/
# mutmut working copy + cache (mutation testing artefacts, regenerated per run)
mutants/
.mutmut-cache
# Built MCPB bundle — release artifact attached to GitHub Releases, never committed
*.mcpb
.python-version
.DS_Store
mcp-server_old/
# Secrets and credentials
.env
.env.*
*.credentials.json
*.pem
*.key
# Large benchmark datasets (download instructions in README)
benchmarks/longmemeval/longmemeval_s.json
benchmarks/longmemeval/longmemeval_oracle.json
benchmarks/spell_alteration/*.pdf
*.pdf
# Whitelist the thermodynamic memory paper PDF (compiled artefact for publication)
!docs/arxiv-thermodynamic/main.pdf
!docs/arxiv-context-assembly/main.pdf
# LaTeX build artifacts (regenerated every compile; main.pdf whitelisted
# above, main.bbl kept tracked for arXiv submission which requires it)
docs/arxiv-*/*.aux
docs/arxiv-*/*.log
docs/arxiv-*/*.out
docs/arxiv-*/*.toc
docs/arxiv-*/*.fls
docs/arxiv-*/*.fdb_latexmk
docs/arxiv-*/*.synctex.gz
# Local virtualenv (uv-managed; never committed)
.venv/
# Pyright ratchet — ephemeral per-run output; typecheck-baseline.json IS tracked
pyright-current.json
pyright-*.json
# Runtime telemetry
traces/
# Internal dev tooling, agent config & task notes — excluded from the public
# submission repo (untracked via `git rm --cached`; kept locally on disk).
# Exception: .claude/settings.json is project-scope policy (#119) and must
# be committed — its deny list is only irremovable-from-local if it ships.
.claude/*
!.claude/settings.json
tasks/
benchmarks/snapshots/
.memsearch/
app-tauri/src-tauri/target/
# Vendored site-packages tree (pip --target install; not part of the repo)
/deps/
# Benchmark run logs (raw stdout/stderr) — transient artifacts, not release content
benchmarks/results/**/*.log