-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy path.gitignore
More file actions
165 lines (141 loc) · 2.93 KB
/
Copy path.gitignore
File metadata and controls
165 lines (141 loc) · 2.93 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
.DS_Store
*.pyc
__pycache__/
.venv/
# Claude Code local state (personal data, tokens, paths)
.claude.json
.claude.json.backup
*.egg-info/
dist/
!.claude/hooks/dist/
build/
!.claude/skills/build/
.pytest_cache/
.mypy_cache/
node_modules/
*.log
.env
.env.local
stats-cache.json
# Session artifacts (per-session, not shareable)
debug/
todos/
projects/
paste-cache/
shell-snapshots/
file-history/
history.jsonl
# Claude cache and state
.claude/cache/
.claude/state/
.claude/statsig/
.claude/debug/
.claude/image-cache/
.claude/paste-cache/
.claude/shell-snapshots/
.claude/history.jsonl
.claude/projects/
.claude/todos/
.claude/file-history/
.claude/sessions.db
.claude/tsc-cache/
# Python bytecode in MCP servers/runtime
.claude/servers/*/__pycache__/
.claude/runtime/__pycache__/
# TLDR cache (regenerated per-session)
.tldr/
# Internal development docs (not for release)
docs/_internal/
# Statsig telemetry
statsig/
# Archives (historical, not needed to operate)
opc/scripts/archive/
.claude/hooks/archive/
.claude/hooks/_archived/
.claude/skills/_archived/
.claude/agents/_archived/
# OPC internal caches
opc/.claude/cache/
# Thoughts/handoffs (session-specific context)
thoughts/
# OPC archives (historical)
opc/archive/
# Lean4/Mathlib downloaded dependencies (6GB+)
proofs/.lake/
proofs/lake-packages/
.elan/
# SWE-bench TLDR experiment (separate project)
swe-bench-tldr/
# Root-level runtime artifacts
archive/
cache/
image-cache/
plans/
plugins/
session-env/
telemetry/
tldr/
# Tool caches
.qlty/
.ruff_cache/
# Lean experiment files (not part of proofs/)
*.lean
qlty-during-development.md
# OPC runtime artifacts (session-specific, not source)
opc/logs/
opc/outputs/
opc/workspace/
opc/thoughts/
opc/.env
opc/:memory:/
# OPC .claude (wizard uses root .claude, not this)
opc/.claude/
# OPC tool caches
opc/.venv/
opc/.mypy_cache/
opc/.pytest_cache/
opc/.ruff_cache/
# OPC accidental dirs (command typos)
opc/ls/
opc/mkdir/
# OPC local files (not needed for install)
opc/bin/
opc/opc/
opc/mcp_config.json
opc/init-db.sql.bak
opc/ISOLATED_SETUP.md
opc/docker-compose.memory.yml
# Personal/local development (not for release)
.claude/agents/brenner.md
.claude/skills/rigg-eval.md
.claude/skills/don-norman-ux/
.claude/hooks/src/tldr-read-enforcer.backup.ts
.claude/hooks/dist/tldr-read-enforcer.backup.mjs
.claude/hooks/.tldrignore
.claude/hooks/src/.tldrignore
opc/scripts/.tldrignore
.tldrignore
.envrc
# OPC testing scripts (local experiments)
opc/scripts/analyze_session_cache_potential.py
opc/scripts/context_cache_calculator.py
opc/scripts/context_engine_chaos_model.py
opc/scripts/context_engine_economics.py
opc/scripts/test_anthropic_cache_empirical.py
opc/scripts/test_native_vs_api_caching.py
opc/scripts/tldr_fluid_cache_model.py
# OPC dev-only (not needed for wizard install)
opc/.github/
opc/tests/
opc/docs/
opc/src/*
!opc/src/runtime/
opc/spec/
opc/packages/
opc/migrations/
opc/pyproject.toml
opc/uv.lock
opc/README.md
opc/LICENSE
opc/.git/
opc/.python-version