-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (54 loc) · 1.25 KB
/
Copy path.gitignore
File metadata and controls
64 lines (54 loc) · 1.25 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
# Dependencies
node_modules/
.pnpm-store/
# Build outputs
dist/
build/
.next/
out/
*.tsbuildinfo
# Test outputs
# Ignore coverage build artifacts but allow the dashboard /coverage route
coverage/
!apps/dashboard/app/coverage/
.nyc_output/
playwright-report/
test-results/
playwright-report-live-smoke/
test-results-live-smoke/
# Turbo
.turbo/
# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# OS
.DS_Store
*.swp
# Editor
.vscode/
.idea/
*.iml
# Env files (per-package; root has nothing sensitive)
.env
.env.local
.env.*.local
# Lockfiles per package (workspace lockfile is at root)
**/package-lock.json
**/yarn.lock
# autonomous spawner per-task worktrees (do not commit)
.spawn-worktrees/
# Runtime sidecars (added 2026-05-10 to keep the spawner's dirty-parent guard happy)
# Idle-detector writes here; canonical agent-memory dir is at ~/Documents/projects/agent-memory/
agent-memory/
# Operator + agent outputs land here ad-hoc; canonical destination is ~/Documents/projects/reports/
outputs/
# Legacy claude worktree path (live spawner uses .spawn-worktrees/ — see WORKTREE_SUBDIR_NAME in claude_spawner_agent.py)
.claude/
# Python bytecode caches (from python -m unittest in py-client and similar)
__pycache__/
*.pyc
.caia/scratch/