-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
135 lines (118 loc) · 1.96 KB
/
Copy path.gitignore
File metadata and controls
135 lines (118 loc) · 1.96 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Environment and secrets
.env
.env.*
.env.local
.env.production
frontend/.env
.env.*.local
.env.openclaude.local
.env.openclaude.*.local
!.env.example
!.env.openclaude.example
!frontend/.env.example
!backend/rust/.env.example
.openclaude-profile.json
.claude/settings.json
.claude/*.private.json
# Build caches
*.tsbuildinfo
# Runtime logs
*.log
.logs/
.logs/
logs/
runtime_logs/
learning_logs/
.phase9-temp/
.tmp-tests/
tmp/
temp/
*.tmp
*.trace.json
*.debug.json
swarm_log.json
backend/python/brain/runtime/swarm_log.json
backend/python/brain/runtime/sessions/
backend/python/transcripts/
backend/python/brain/evolution/*.json
backend/python/brain/evolution/snapshots/
backend/python/memory/learning.json
backend/python/memory.json
backend/python/memory.json.lock
memory.json
sessions/
*.session.json
# Node
node_modules/
frontend/node_modules/
npm-debug.log*
dist/
build/
.cache/
.vite/
# Python
__pycache__/
*.py[cod]
.pytest_cache/
.venv/
venv/
# Build outputs
dist/*
!dist/
!dist/QueryEngine.js
!dist/package.json
build/
target/
frontend/dist/
# OS/editor noise
.DS_Store
Thumbs.db
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/extensions.json
!.frontend/src/env.d.ts
!.frontend/src/vite-env.d.ts
# Local tooling caches
vendor/openclaude-upstream/
vendor/**/openclaude-vscode-*.vsix
# AI coding agent local skills/config
.agents/
.antigravity*
# Cursor / local worktrees (must not be committed)
.worktrees/
# wrangler files
.wrangler
.dev.vars*
!.dev.vars.example
# Local databases
*.sqlite
*.sqlite3
*.db
# Private runtime memory
memory/
memories/
private-memory/
local-memory/
runtime-memory/
storage/local/
# Exception for tracked source/test/docs memory directories
!backend/python/brain/memory/
!backend/python/tests/memory/
!docs/memory/
# Private datasets
datasets/private/
private-datasets/
# Credentials
secrets/
credentials/
*.pem
*.key
# Local archives and handoff bundles
SESSION_HANDOFF*.zip
.aider*
# Coverage artifacts
.coverage
.coverage.*
htmlcov/