-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (73 loc) · 2.45 KB
/
Copy path.gitignore
File metadata and controls
86 lines (73 loc) · 2.45 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
# Dependencies
# No trailing slash: worktrees symlink node_modules to the main tree, and
# `node_modules/` matches only directories -- a `git add -A` in such a
# worktree committed the SYMLINK and broke CI's pnpm install (2026-07-30).
node_modules
# Build output
dist/
*.tsbuildinfo
# Testing
coverage/
.vitest/
# Environment
.env
.env.local
.env.*.local
# IDE
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# CDK
cdk.out/
.cdk.staging/
# Temporary files
*.tmp
.cache/
cdk.context.json
# Benchmark artifacts
tests/benchmark/results-*.md
# Claude Code runtime state
.claude/scheduled_tasks.lock
.claude/worktrees/
# markgate pr-review sentinel (records the PR HEAD sha that /review-pr last
# verified; bound to the `pr-review` markgate gate's include scope so a
# new push to the PR invalidates the marker automatically)
.markgate-pr-review-sha
# markgate integ-broad sentinel (records the test name + timestamp of the
# last broad real-AWS integ run, e.g. bench-cdk-sample; updated by
# /run-integ for tests in the broad set; bound to the `integ-broad`
# markgate gate's include scope so /verify-pr's cross-cutting check
# can enforce a broad integ in addition to the feature-specific one)
.markgate-broad-integ-test
# bug-hunt cleanup sentinel (lists the stacks a /hunt-bugs session deployed
# to real AWS; the bughunt-clean-gate.sh PreToolUse hook blocks git commit /
# gh pr create / gh pr merge while it is non-empty, so bug-hunt resources
# cannot be forgotten. Written by bughunt-track.sh add, cleared by
# bughunt-track.sh clear after destroy + orphan-zero verification).
# `.d/` is the per-owner directory variant (one file per concurrent hunt
# owner — parallel-safe); the flat file is the legacy single-owner sentinel.
.markgate-bughunt-pending
.markgate-bughunt-pending.d/
# Worktree-local scratch files used by sub-agents for `git commit -F` /
# `gh --body-file` / `gh api --field body=@<file>` payloads. The
# `feedback_parallel_agent_tmp_paths.md` memory rule directs sub-agents
# to use worktree-local files (NOT /tmp/...) to avoid collisions with
# parallel sub-agents sharing /tmp. Without these patterns the files
# stay untracked — but a sub-agent's `git add -A` / `git add .` in its
# commit workflow stages them too, leading to follow-up "remove scratch
# files" commits (surfaced across PRs #297 / #304 / #305).
.commit-msg*.txt
.commit-msg*.md
.pr-body*.md
.pr-body*.txt
.gh-body*.md
.gh-body*.txt