forked from lidge-jun/opencodex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
94 lines (84 loc) · 3.78 KB
/
Copy path.gitignore
File metadata and controls
94 lines (84 loc) · 3.78 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
node_modules/
dist/
.env
*.log
.DS_Store
# Generated CL compatibility identity embedded by prepare:package. It must stay
# untracked so the manifest cannot hash itself.
src/generated/compatibility-version.json
# Maintainer planning notes are TRACKED in this repository (`devlog/`). Security
# material is not: see the "Security working notes" section of AGENTS.md.
#
# These exclusions were previously enforced by devlog's own .gitignore, which stops
# applying now that devlog is not a separate repository. Reference clones are
# third-party source with their own licenses and must never enter this history.
devlog/_chase/_cca/
devlog/_chase/_litellm/
devlog/_chase/DSCodex/
devlog/_chase/CLIProxyAPIPlus/
devlog/_fin/opencode-cursor/
devlog/_plan/*/_ref_*/
devlog/**/*-security-redaction/
devlog/**/*_security_findings/
devlog/**/security-advisory-draft*
# Scratch space. Security working notes — unreleased findings, draft advisories,
# exploit reasoning, pre-disclosure patch plans — belong here or in a
# `mktemp -d` path, and nowhere else. Not devlog/, not a private repo. See the
# "Security working notes" section of AGENTS.md.
.tmp/
.opencode/
# Capability probes from the trusted-artifact directory check
# (src/lab/artifacts/secure-fs.ts detectArtifactIoMode). The probe is normally
# unlinked immediately, but a process that dies between rename and unlink leaves
# an empty file behind, and they accumulate in whatever directory the check ran
# from. They are machine-local scratch and must never be committed.
.dirfd-probe-*
# Local agent/session artifacts
# These are per-machine agent state (goalplans, ledgers, evidence scratch).
# They are never part of the product and must not be committed, not even with
# `git add -f` — see tests/ci-workflows/repo-hygiene.test.ts, which fails if any path here
# becomes tracked again.
.codexclaw/
**/.codexclaw/
.omo/
**/.omo/
# Local development worktrees
.worktrees/
# Test-generated artifacts
# Trailing slash matched directories only, but the same tests also leave plain
# files behind when a run dies mid-write -- and on Windows those can stay locked
# by an exiting child, so they cannot simply be deleted. An unignorable leftover
# blocks the release preflight's clean-tree check for work that has nothing to do
# with it, so ignore both shapes.
tests/.tmp-*
tests/**/.tmp-*
.claude/
# Retired Go native-runtime experiment. `go/` is not part of the build, the
# typecheck, or the test path, and nothing in `src/` imports it. A single file
# from it (go/internal/cli/config_parity.go) has now been committed by a broad
# `git add` three separate times and reached `dev` once — see
# tests/ci-workflows/repo-hygiene.test.ts, which fails if any path here becomes tracked again.
go/
# Retired root docs/ folder and the pull-request screenshot folders that used to
# collect evidence images. Screenshots belong in the PR description or on the
# orphan `pr-assets` branch; tests/ci-workflows/repo-hygiene.test.ts fails if any
# path here becomes tracked again. Root-anchored so docs-site/src/content/docs/
# is not caught by the docs/ rule.
/docs/
/.github/pr-assets/
/assets/pr-screenshots/
/docs-site/public/pr-screenshots/
# Rust native helpers keep their reproducible sources and lockfile in git, never local artifacts.
native/**/target/
dist/macos/
dist/release/
desktop/src-tauri/binaries/
desktop/src-tauri/resources/
desktop/src-tauri/widget/
desktop/src-tauri/gen/
desktop/src-tauri/target/
# Running `bun install` inside desktop/ writes a second lockfile that shadows the root one for
# any command run from that directory. CI installs the desktop workspace with --frozen-lockfile
# on an older Bun, so a shadowing lockfile written by a newer Bun fails the job with "Unknown
# lockfile version" before anything is built. The root lockfile is the only one this repo keeps.
desktop/bun.lock