-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
153 lines (130 loc) · 4.4 KB
/
.gitignore
File metadata and controls
153 lines (130 loc) · 4.4 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# Gas Town HQ .gitignore
# Track: Role context, handoff docs, beads config/data, rig configs
# Ignore: Git worktrees (polecats) and clones (mayor/refinery rigs), runtime state
# =============================================================================
# Runtime state files (transient)
# =============================================================================
**/state.json
**/*.lock
**/registry.json
# =============================================================================
# Rig git worktrees (recreate with 'gt sling' or 'gt rig add')
# =============================================================================
# Polecats - worker worktrees
**/polecats/
# Mayor rig clones
**/mayor/rig/
# Refinery working clones
**/refinery/rig/
# Crew workspaces (user-managed)
**/crew/
# =============================================================================
# Runtime state directories (gitignored ephemeral data)
# =============================================================================
**/.runtime/
# =============================================================================
# Rig .beads symlinks (point to ignored mayor/rig/.beads, recreated on setup)
# =============================================================================
# Add rig-specific symlinks here, e.g.:
# gastown/.beads
# =============================================================================
# Rigs directory (clones created by 'gt rig add')
# =============================================================================
/rigs/*/
# =============================================================================
# OS and editor files
# =============================================================================
.DS_Store
*~
*.swp
*.swo
.vscode/
.idea/
# =============================================================================
# Explicitly track (override above patterns)
# =============================================================================
# Note: .beads/ has its own .gitignore that handles SQLite files
# and keeps issues.jsonl, metadata.json, config file as source of truth
ADR
# bv (beads viewer) local config and caches
.bv/
# =============================================================================
# Gas Town runtime directories (created by gt daemon)
# =============================================================================
/daemon/
/deacon/
/spawn/
/plugins/
/logs/
/.events.jsonl
/.feed.jsonl
# Rig directories (created by gt rig add)
/gastown-ui/
/gtui/
# =============================================================================
# Mistakenly committed directories (local only)
# =============================================================================
docs/
gastown_ui/
settings/
# =============================================================================
# SvelteKit / Node.js
# =============================================================================
node_modules/
.svelte-kit/
build/
.env
.env.*
!.env.example
# =============================================================================
# Claude Code
# =============================================================================
.claude/
bundle-stats.html
# =============================================================================
# Temporary session & handoff docs (cleaned up 2026-01-10)
# =============================================================================
HANDOFF.md
SESSION_HANDOFF.md
START_HERE.md
START_FIXES.md
SPRINT_STATUS.md
CRITICAL_FIXES_COMPLETE.md
EXECUTION_READY.md
LAUNCH.md
INDEX.md
MERGE_CHECKLIST.md
REVIEW_INDEX.md
README_RALPH.md
prompt-fixes.md
IMPROVEMENT.md
prd-fixes.json
ralph_execution.log
TEST_PHASE_2_VERIFICATION.md
# Phase/Session docs (historical, archived locally in .archive/)
PHASE*.md
SESSION*.md
PROGRESS_SUMMARY.md
CURRENT_STATUS.md
SPRINT_MOLECULES.md
AUDIT_REPORT.md
BUNDLE_ANALYSIS.md
DESIGN_CRITIQUE.md
prompt.md
.archive/
# Planning/audit docs (session artifacts)
ACTION_PLAN.md
CODE_HEALTH_AUDIT.md
RESPONSIVE_DESIGN_AUDIT.md
# =============================================================================
# Package managers (use bun only)
# =============================================================================
package-lock.json
yarn.lock
pnpm-lock.yaml
.beads/
# =============================================================================
# Test artifacts (NO TESTS policy)
# =============================================================================
playwright-report/
test-results/