-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (68 loc) · 2.35 KB
/
Copy path.gitignore
File metadata and controls
80 lines (68 loc) · 2.35 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
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Worker image build artifact — the cross-compiled Go supervisor. Source lives in
# cmd/runtime-agent/; build.sh regenerates this into the docker build context.
docker/worker/runtime_agent
docker/worker/blackboard.py
docker/worker/blackboard.SKILL.md
# Slim worker image (docker/worker-slim/) build context — ALL four are regenerated by
# docker/worker-slim/build.sh (runtime_agent cross-compiled; AGENTS.md/blackboard.*
# copied from the Kali context + skills/). Unlike the Kali context's AGENTS.md (which
# is hand-maintained + tracked), the slim AGENTS.md is a build-time copy → ignore it.
docker/worker-slim/runtime_agent
docker/worker-slim/AGENTS.md
docker/worker-slim/blackboard.py
docker/worker-slim/blackboard.SKILL.md
# Virtual environments
.venv
# OS / editor cruft
.DS_Store
# Runtime output (artifacts the kernel writes, session event logs, eval runs,
# distilled knowledge templates)
artifacts/
sessions/
eval_runs/
knowledge/
# pytest / tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
harness-assessment.html
# Secrets — NEVER commit real API keys / MCP bearer tokens.
# .mcp.json is the LOCAL knowledge-base MCP client config (may point at a private
# service + token) and is NOT committed; .mcp.json.example is the sanitized template.
.env
.env.*
!.env.example
.mcp.json
.mcp.local.json
!.mcp.json.example
*.local.json
secrets/
.secrets/
.claude/scheduled_tasks.lock
# VPS residue archive (272MB pretask backup — not part of the codebase)
vps_archive_backup/
# Re-test marathon runtime data — ledgers, session JSONL, staged inputs, logs,
# pulled challenge containers' artifacts. Pure eval output, not source. The
# distilled public report lives in public_eval/ (committed); the raw run data here
# (retest_runs/ledger.jsonl, _sessions/*.jsonl, _inputs_*, _logs) stays out.
retest_runs/
# Go binary built into the source dir by a bare `go build .` (the real build
# artifact goes to docker/worker/runtime_agent via build.sh).
cmd/runtime-agent/runtime-agent
# internal dev-tracking files (not part of the OSS distribution)
progress.md
feature_list.json
session-handoff.md
# Local-only working notes — kept on disk for reference, NOT part of the
# distribution (working notes, not user-facing documentation).
docs/_local/
docs/internal-design/
docs/wechat/
docs/assets/wechat-promo/