-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (39 loc) · 917 Bytes
/
.gitignore
File metadata and controls
51 lines (39 loc) · 917 Bytes
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
# Common ignored files
*.bak
*.log
.DS_Store
npm-debug.log
node_modules/
.env
.vscode/
.idea/
build/
dist/
*.pem
.cursor/
# Playwright
/test-results/
/playwright-report/
/blob--report/
/playwright/.cache/
/playwright/.auth/
.playwright-mcp/
# Ignore runtime-generated agent data and state
external/clawdbot-state/
external/commonly-bot-state/
*.bak
# _external/clawdbot is a git submodule — tracked, not ignored
# Ignore any other dirs that may appear under _external/
_external/*/
!_external/clawdbot
# Claude Code — local dev tooling, not for OSS contributors
.claude/
# Codex skills backup after migration to commonly-skills repo (2026-04-12)
.codex/skills.bak.*
# Local env overrides (copy from .env.example, never commit real values)
frontend/.env.local
frontend/.env.development.local
frontend/.env.production.local
# Playwright browser state (may contain session tokens)
state.json
__pycache__