-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
139 lines (117 loc) · 2.77 KB
/
Copy path.gitignore
File metadata and controls
139 lines (117 loc) · 2.77 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
136
137
138
139
# Dependencies
node_modules/
.pnpm-store/
# Build outputs
dist/
dist-electron/
build/
!apps/desktop/build/
out/
release/
*.tsbuildinfo
# Caches
.turbo/
.vite/
.cache/
.eslintcache
.next/
# Test outputs
coverage/
playwright-report/
test-results/
test-screenshots/
*.lcov
# Environment
.env
.env.*
!.env.example
scripts/.smoke-keys.env
# Editor
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
desktop.ini
# Logs
*.log
logs/
npm-debug.log*
pnpm-debug.log*
# Local data
.claude/workspace/
.claude/worktrees/
*.local
# VitePress
website/.vitepress/dist/
website/.vitepress/cache/
# Playwright MCP screenshots
.playwright-mcp/
# Internal docs (research, handoffs, internal roadmap) — not for public repo.
# Note: exclude *contents* (docs/*) not the directory itself, so negations
# below can re-include specific children. Excluding `docs/` blocks Git from
# descending and silently disables the !docs/... patterns.
docs/*
# But ADRs are governance artifacts and MUST be tracked
!docs/adr/
!docs/adr/**
# Skill-loader rationale is referenced by code reviews
!docs/skill-loader.md
!docs/oauth-setup.md
!docs/known-issues.md
!docs/superpowers/
!docs/superpowers/**
# Internal marketing drafts — not for public repo
promo-copy/
# Demo speedup source files — not used in README
website/public/demos/_speedup/
# Agent worktrees / transcripts
.claude/projects/
.worktrees/
.codex-temp/
# OMC runtime state (per-session, not source). Plans/specs/handoff stay tracked.
.omc/state/
.omc/logs/
.omc/notepad.md
.omc/project-memory.json
.omc/specs/
# OMX runtime state (per-session, not source). Plans/specs/handoff stay tracked.
.omx/state/
.omx/logs/
.omx/metrics.json
.omx/notepad.md
.omx/project-memory.json
# Per-session memory buffer (not source)
.remember/
.omc/prd.json
# Intermediate render artifacts from HyperFrames demo pipeline.
# The final muxed demo (assets/video/atv-design-demo.mp4) IS tracked;
# the silent pre-mux video and the Kokoro model cache are not.
assets/video/atv-design-demo-silent.mp4
assets/video/hyperframes/node_modules/
assets/video/hyperframes/.cache/
assets/video/hyperframes/out/
# Local agent / tooling scratch directories — not for public repo.
.gstack/
.playwright-cli/
graphify-out/
output/
.graphify_python
# Stray nested dirs from misrun tools — defensive.
apps/desktop/.omc/
apps/desktop/apps/
# Local fork-bootstrap scratch (pre-overlay artifacts; not for public repo).
.atv-design-fork-files/
# Defensive catch-all for *new* local-only dot-folders at the repo root.
# Existing tracked dot-folders are explicitly re-included below so this
# rule cannot silently drop governance/config dirs. If you add a new
# tracked dot-folder, add a matching `!/.<name>/` line below.
/.*/
!/.changeset/
!/.github/
!/.husky/
!/.vscode/