-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy path.gitignore
More file actions
174 lines (141 loc) · 3.08 KB
/
.gitignore
File metadata and controls
174 lines (141 loc) · 3.08 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
166
167
168
169
170
171
172
173
174
target/
**/*.rs.bk
.DS_Store
.env
.idea/
.vscode/
*.swp
*.swo
/dist/
/node_modules/
tests/fixtures/search_demo_data/watch_state.json
/.venv/lib/python3.12/site-packages/googleapiclient/discovery_cache/documents
/.venv/lib/python3.12/site-packages/pygments/lexers
/.venv/lib/python3.12/site-packages/pygments/lexers/__pycache__
# AI coding tool artifacts
.aider.chat.history.md
.aider.input.history
.aider.tags.cache.v3/
# Temporary scratch files
temp_*.rs
# Build artifacts
a.out
# Clippy / UBS / analysis output
clippy_output.txt
ubs.json
ubs_filtered.txt
ubs-report.*
*.sarif
# Agent-generated scratch scripts
parse_ubs.py
fix_*.py
# One-off test source files
test_empty_db.rs
# Ephemeral test fixture data
tests/fixtures/search_demo_data/index/
tests/fixtures/search_demo_data/tmp_home/
# bv (beads viewer) local config and caches
.bv/
# Claude Code artifacts
.claude/
# Local backup directories
.local_backup_*/
# Alternative target directories (benchmarks, tests, checks)
target_*/
target-*/
.target-*/
# Web test artifacts
web/node_modules/
web/playwright-report/
web/test-results/
web/test-fixtures/
# Performance test deps/artifacts
tests/performance/node_modules/
# Node.js test dependencies
tests/node_modules/
# Test output (except policy files)
test-results/*
!test-results/no_mock_allowlist.json
!test-results/no_mock_audit.md
claude-upgrade-progress.json
# Ephemeral E2E test artifacts
tmp/
tests/e2e-report/
tests/e2e-results.json
tests/e2e/.env.test
tests/test-results/
# Python bytecode caches (global)
__pycache__/
*.pyc
# Performance optimization artifacts
perf/
# Claude subagent conversation exports
claude_subagents_*.html
# Browser screenshots (ephemeral debug artifacts)
Chrome_*.png
Google Chrome_*.png
*_screenshot*.png
# HTML export drafts
world_class_export.html
claude_*.html
session_export_test.html
tests/fixtures/search_demo_data/*.db-shm
tests/fixtures/search_demo_data/*.db-wal
session_export.html
# Local sqlite artifacts in repo root
/storage.sqlite3
/storage.sqlite3-wal
/storage.sqlite3-shm
*.sqlite3.bak
*.sqlite3.bak-*
*.sqlite3-wal.bak
*.sqlite3.corrupt-*
*.sqlite3-wal.corrupt-*
# Agent probe/scratch files and temp directories
.tmp_write_probe
.tmp_*
.tmp/
# Profiling artifacts
flamegraph.svg
perf.data
perf.data.old
# One-off analysis output
user_requests_output.txt
# Beads daemon rotated logs
.beads/daemon-*.log.gz
# Beads ephemeral files (locks, migration hints, backups)
.beads/.bv.lock
.beads/.migration-hint-ts
.beads/*.bak_*
# Test log output
test-logs/
# Beads migration baseline artifacts
.beads/migration_baseline/
# Ephemeral files (agent-generated, build artifacts, test detritus)
ci-artifacts/
proptest-regressions/
test_meminfo
path_test
# One-off scan output
scan.txt
# Core dumps and agent config backups
/core.*
/core
*.mcp.json.*.bak
cline.mcp.json
opencode.json
windsurf.mcp.json
clippy.txt
clippy.json
clippy_results.json
clippy_unwrap.json
clippy_unwrap_clean.txt
check_output.txt
.next_backup*/
storage.sqlite3
storage.sqlite3-shm
storage.sqlite3-wal
storage.sqlite3.bak
storage.sqlite3.corrupt-*
storage.sqlite3-shm.corrupt-*
storage.sqlite3-wal.corrupt-*