-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (81 loc) · 2.16 KB
/
.gitignore
File metadata and controls
89 lines (81 loc) · 2.16 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
# Build and virtualenv
__pycache__/
*.pyc
*.pyo
.venv/
# All dotfiles/dotdirs (local tooling, IDE, CI, etc.)
.*
!.gitignore
!.gitattributes
# Repo CI (workflows live here; do not ignore)
!.github/
!.github/**
# Ephemeral run artifacts
archive/
jobs/
results/
runs/
!runs/
runs/*
!runs/official/
!runs/official/**
!runs/analysis/
!runs/analysis/**
# Ignore newly generated run artifacts under official runs by default.
# (Already tracked files remain tracked; this suppresses local run noise.)
runs/official/**
runs/official/**/agent/sessions/
runs/official/**/agent/.mcp.json
runs/official/_raw/
runs/official/_meta/
runs/official/_views_legacy/
runs/analysis/**/agent/sessions/
runs/analysis/**/agent/.mcp.json
tasks/
# Keep published official-results pages tracked.
!docs/official_results/runs/
!docs/official_results/runs/**
!docs/official_results/tasks/
!docs/official_results/tasks/**
# Agent traces can contain OAuth tokens — exclude from repo
docs/official_results/traces/
# Local/generated analysis caches and intermediate figure exports
docs/analysis/github_repo_size_kb_cache.json
docs/assets/blog/codescalebench_mcp/figure_1_*
docs/assets/blog/codescalebench_mcp/figure_2_*
docs/assets/blog/codescalebench_mcp/figure_2b_*
docs/assets/blog/codescalebench_mcp/figure_3_*
docs/assets/blog/codescalebench_mcp/figure_4_*
docs/assets/blog/codescalebench_mcp/figure_5_*
docs/assets/blog/codescalebench_mcp/figure_6_*
docs/assets/blog/codescalebench_mcp/figure_8_haiku_cost_size_vs_overall.*
docs/assets/blog/codescalebench_mcp/figure_9_*
scripts/daytona_snapshot_cleanup.py
scripts/plot_csb_mcp_blog_figures.py
ralph/
ralph-*/
reports/
!reports/nightly/
!reports/nightly/**
eval_reports/
tmp/
*.log
ds
# Large external datasets (reference by symlink or variable)
ccb_crossrepo/
!benchmarks/ccb_crossrepo/
harbor-ccb_crossrepo-dataset/
vendor/DependEval/
vendor/dependeval_repos/
# Oracle curation logs (auto-generated, not needed for benchmark)
oracle_curation_log.json
# Experimental / internal task mining (not for public benchmark)
sourcegraph_tasks/
# Credentials
*.key
*.pem
# Private outreach docs (not for public repo)
docs/outreach/
# Dolt database files (added by bd init)
.dolt/
*.db