-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (35 loc) · 1.23 KB
/
Copy path.gitignore
File metadata and controls
45 lines (35 loc) · 1.23 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
bin/
obj/
*.user
.vs/
.vscode/
.idea/
# Local state
/.build/
*.db
*.db-journal
/local-state/
# Per-developer dev/test helpers (see local/README.md after creation).
/local/
# Runtime preempt scratchpads emitted by the codeybox agent harness.
.codeybox/
# Serilog rolling-file output (see CodeyBox:AuditLog options) and per-agent
# structured-stream logs (see CodeyBox:AgentStreamCapture options).
/logs/
**/logs/*.json
**/logs/agents/
# `dotnet test --logger trx` writes per-run result files here; they're
# time/machine-stamped and not meant to be committed.
**/TestResults/
# ACP bridge native binary is intentionally tracked. It is produced by
# scripts/publish-acp-bridge.sh as a static linux-musl-x64 artifact and embedded
# by CodeyBox.Agents.Claude so ACP is usable without an out-of-band publish job.
# Runtime console/audit log output written by CodeyBox.Api when run from source
# (local-only dev artifact; can grow to GBs; never commit).
src/CodeyBox.Api/logs/
# Local rubric annotation workspace (operator notes on audit prompts; not source of truth)
rubric-annotations/
# Repo-local NuGet package cache (see NuGet.Config globalPackagesFolder).
.nuget/
# Repo-local dotnet CLI home (DOTNET_CLI_HOME for sandboxed builds).
.dotnet-cli-home/