-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
129 lines (106 loc) · 3.42 KB
/
Copy path.gitignore
File metadata and controls
129 lines (106 loc) · 3.42 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
# ── Python bytecode & caches ──────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
# ── Distribution / packaging (hatchling) ─────────────────────────
dist/
build/
*.egg-info/
*.egg
.Python
*.whl
# ── Virtual environments ─────────────────────────────────────────
.venv/
venv/
env/
.conda/
# ── Testing (pytest / pytest-asyncio) ────────────────────────────
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
# ── Linting & type checking (ruff, mypy) ─────────────────────────
.ruff_cache/
.mypy_cache/
.dmypy.json
dmypy.json
# ── IDE / editors ────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
# ── OS generated ─────────────────────────────────────────────────
.DS_Store
Thumbs.db
# ── Jupyter (in case notebooks are added later) ──────────────────
.ipynb_checkpoints/
# ── Environment variables / secrets ──────────────────────────────
.env
.env.*
external_benchmarks/
# ── Paper sources and generated supplement material ───────────────
paper/
# ── HarnessAudit runtime logs/state ─────────────────────────
multi_agent/run_all.log
multi_agent/run_all_stdout.log
multi_agent/run_all.runinfo
multi_agent/run_all.heartbeat
multi_agent/run_all.lock/
# ── Per-run SDE / benchmark workspaces (may contain nested .git) ───
workspaces/
.worktrees/
multi_agent/workspaces/
multi_agent/traces/
multi_agent/results/
multi_agent/logs/
/traces/
single_agent/traces/
single_agent/results/
single_agent/logs/
# ── Local run scripts ─────────────────────────────────────────────
multi_agent/**/*.sh
single_agent/**/*.sh
!multi_agent/run_ma.sh
!single_agent/run_sa.sh
# ── Generated staging, run artifacts, and local reports ───────────
scripts/_staging/
scripts/normal_completion_traces.json
scripts/normal_completion_traces.txt
multi_agent/good_traces.txt
NeurlPS26_Agent_Safety.pdf
paper/*.pdf
paper/codes/*.pdf
paper/codes/data.md
paper/**/*.zip
paper/**/output.pdf
paper/**/output/
paper/**/.latexmkrc.local
paper/**/.aux
paper/**/*.aux
paper/**/*.bbl
paper/**/*.blg
paper/**/*.fdb_latexmk
paper/**/*.fls
paper/**/*.log
paper/**/*.out
paper/**/*.synctex.gz
# ── Agent-workspace scratch files accidentally created in fixtures ─
fixtures/**/AGENTS.md
fixtures/**/HEARTBEAT.md
fixtures/**/IDENTITY.md
fixtures/**/SOUL.md
fixtures/**/TOOLS.md
fixtures/**/USER.md
# ── Local-only test scratch space ─────────────────────────────────
tests/tmp/
# Local scripts
/scripts/
# Local scripts
/scripts/
# Local arXiv paper copy
2605.14271v1.pdf
# Local planning notes
single_agent/SCALING_PLAN.md
hf_data/