-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
211 lines (180 loc) · 4.28 KB
/
Copy path.gitignore
File metadata and controls
211 lines (180 loc) · 4.28 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/target
/target-codex
target-codex-*/
**/*.rs.bk
# rch (remote cargo helper) per-job artifact directories — accidentally
# committed in 4372cf30; gitignored to prevent recurrence.
.rch-target-*/
# Python cache artifacts
__pycache__/
*.py[cod]
# Python native extension build artifacts
*.so
*.abi3.so
*.pyd
# Hypothesis test framework state
.hypothesis/
# Editor and OS noise
.DS_Store
._*
*.swp
*.swo
perf.data
# Local source image (converted to committed WebP artifact)
franken_networkx_illustration.png
# Local agent/task metadata
.bv/
# Ephemeral agent/runtime artifacts
storage.sqlite3
storage.sqlite3-*
rustc-ice-*.txt
a.out
--graph-format.svg
target_*/
# Ephemeral execution tracker files
TODO_*.md
# Generated runtime artifacts
artifacts/conformance/latest/
artifacts/conformance/oracle_capture/
artifacts/conformance/decisions/
artifacts/perf/latest/
artifacts/last_known_good/
artifacts/fuzz/
artifacts/phase2c/latest_*.json
artifacts/phase2c/latest/
artifacts/docs/latest/
# Build output directories
dist/
fuzz/target/
.venv/
venv/
.benchmarks/
.pytest_cache/
.ruff_cache/
# Generic backup files
*.bak
# Deferred-untracked backup dirs created by repo-sweep tooling
_deferred_untracked_backup_*/
# Agent dump artifacts (UBS reports, clippy output, error logs)
*ubs*.txt
errors.json
clippy_output.txt
rust-bug-scan.txt
# Root-level agent scratch outputs
/all_beads.txt
/br_out.txt
/br_ready.json
/bv_out.json
/check_out.txt
/daemon_status.txt
/final_remote.txt
/git_log_slo.txt
/git_out.txt
/hello.txt
/local_timeout.txt
/ls_remote.txt
/next_bead.txt
/out.txt
/pytest_version.txt
/rch_check.txt
/simple_remote.txt
/single_test.txt
/test_out.txt
/test_results.txt
/test_results_remote.txt
/uname_remote.txt
# Root-level probe scripts/results
/bead_*.json
/probe_*.py
/probe_results*.txt
/replace_*.py
/strip_nx_compat.py
/test_*.py
# Agent helper scripts
/scripts/close_bead_*.py
/scripts/close_beads.py
# Ephemeral files (agent-generated, build artifacts, test detritus)
ci-artifacts/
proptest-regressions/
test_meminfo
# Per-test E2E pipeline log artifacts (regenerated each run)
tests/python/test_e2e_pipeline_logs/
# Agent session ephemeral files
SESSION_TODO.md
SESSION_REPORT.md
SESSION_*.md
verify_*.sh
newfile.txt
repro_*.rs
# Nested crate build artifacts
crates/*/target/
# FastEmbed model caches
.fastembed_cache/
# Agent coordination config
.agent-mail.yaml
# Beads history snapshots
.beads/.br_history/
# Claude local settings + agent scratch dir (scheduled_tasks.lock,
# settings.local.json, etc. are machine-local Claude Code state)
.claude/
# ACFS ephemeral patterns (auto-generated agent artifacts)
.ntm/
# Core dumps only. These are anchored and digit-suffixed on purpose: the old
# `core` / `core.*` pair also matched the tracked source file
# python/franken_networkx/core.py, and maturin's ignore-aware packager drops any
# ignored path from the wheel and sdist even when git tracks it. That shipped a
# wheel whose `import franken_networkx` died on a missing `core` submodule.
# Never widen these back to `core.*` (br-r37-c1-f2kln).
/core
core.[0-9]*
cline.mcp.json
codex.mcp.json
cursor.mcp.json
gemini.mcp.json
opencode.json
windsurf.mcp.json
*.mcp.json.*.bak
.opencode.json.*.bak
.windsurf.mcp.json.*.bak
.agent-mail-project-id
*.sqlite3.bak
*.sqlite3.corrupt*
storage.sqlite3.corrupt-*
storage.sqlite3-shm.corrupt-*
storage.sqlite3-wal.corrupt-*
.beads/*.corrupt*
.beads/*.pre_repair_*
.beads/*.repair_candidate_*
.beads/*.bak-corrupt
# Beads ephemeral artifacts (recovery, bad/rebuild snapshots)
.beads/*.bad_*
.beads/*.backup_*
.beads/*.rebuild_*
.beads/recovery*/
.beads_recovery/
# Root-level agent scratch output
/*.txt
/*.log
/*.json
!package.json
/*.out
/*.py
/*.sh
/*.patch
.env
.claude/settings.local.json
# Slash-skill loop progress output (leaks into the tree; regenerated each run)
.skill-loop-progress.md
# perf rotated profile snapshot (companion to the already-ignored perf.data)
perf.data.old
# Ephemeral agent/skill scratch (repo-janitor 2026-06-04)
*.mcp.json
.beads/.br_recovery/
fuzz/coverage/
fuzz/fuzz-*.log
# === Ephemeral build & scratch artifacts (multi-repo cleanup 2026-06-18) ===
# Stray out-of-tree compile outputs (normal builds live under target/, already ignored).
*.rlib
rust_out
# One-off local CARGO_TARGET_DIR override directories (e.g. criterion micro-benches).
**/local-target/