forked from davekilleen/Dex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
206 lines (170 loc) · 3.78 KB
/
.gitignore
File metadata and controls
206 lines (170 loc) · 3.78 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# OS
.DS_Store
Thumbs.db
# Editor
.vscode/
*.swp
*.swo
# Node (if MCP servers are used)
node_modules/
.env
.env.local
# MCP Configuration (generated by install.sh)
.mcp.json
# Obsidian
.obsidian/workspace.json
.obsidian/workspace-mobile.json
# Logs
*.log
# ============================================
# User Customizations - Protected from Updates
# ============================================
# User configuration
System/user-profile.yaml
System/pillars.yaml
System/.last-update-check
System/.update-available
# Custom extensions (user-created, never in upstream)
CLAUDE-custom.md
.claude/skills-custom/
core/mcp-custom/
core/mcp-premium/
# User data folders (PARA structure)
00-Inbox/
01-Quarter_Goals/
02-Week_Priorities/
03-Tasks/
04-Projects/
05-Areas/
07-Archives/
# User customization notes
System/my-customizations.md
# ============================================
# Beta Features (created on activation)
# ============================================
# Pi integration (created when user activates Pi beta)
.pi/
# Symlink to pi-extensions/dex (tracked via pi-extensions/)
!.pi/agent/extensions/dex
# Beta documentation (created on feature activation)
System/Beta/
# Beta hooks (copied from templates on activation)
.claude/hooks/
# But track core hooks — these ship with Dex
!.claude/hooks/
!.claude/hooks/dex-safety-guard.sh
!.claude/hooks/person-context-injector.cjs
!.claude/hooks/company-context-injector.cjs
!.claude/hooks/paths.cjs
!.claude/hooks/tests/
!.claude/hooks/tests/*.test.cjs
# Beta skills (copied from templates on activation)
.claude/skills/commitment-extractor/
.claude/skills/pi-tools/
.claude/skills/pi-generated/
.claude/skills/pi/
# Pi extensions registry (generated by sync hook)
.claude/pi-extensions-registry.json
# ============================================
# Python (for MCP servers)
# ============================================
# Generated path constants (per-vault)
core/paths.json
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
*.egg
*.egg-info/
dist/
build/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.whl
# Virtual environments
venv/
env/
ENV/
.venv/
# pytest
.pytest_cache/
.coverage
htmlcov/
# ============================================
# Secrets and Credentials
# ============================================
# Secrets
.secrets
.secrets.reference
*.key
*.pem
# OAuth tokens
*token.json
*credentials.json
gmail-token.json
gmail-credentials.json
# ============================================
# Session and Runtime Data
# ============================================
# Session learnings (user-specific)
System/Session_Learnings/
System/Session_Memory/
System/usage_log.md
System/Work_In_Progress.md
System/PRDs/
System/Beta_Communications/
System/Dex_Backlog.md
System/Demo/
System/highlights.json
System/Innovation_Research/
# Onboarding state
System/.onboarding/state.json
# MCP cache and state
core/mcp/__pycache__/
*.pyc
# ============================================
# Test and Development
# ============================================
# Test vaults
test-vault/
demo-vault/
*-test/
# Keep fixture vault tracked for deterministic tests
!core/tests/
!core/tests/fixtures/
!core/tests/fixtures/vault/
!core/tests/fixtures/vault/**
!packages/dex-contracts/dist/
!packages/dex-contracts/dist/*
core/tests/fixtures/vault/System/.dex/*
!core/tests/fixtures/vault/System/.dex/.gitkeep
# Personal experiments
playground/
experiments/
.scripts/private/
scripts/private/
# Backup files
*.backup
*.bak
*~
# ============================================
# Keep Template Files (for distribution)
# ============================================
# These are needed for new users
!System/user-profile.example.yaml
!System/pillars.example.yaml
!.claude/
!core/
!scripts/
!docs/
!README.md
!LICENSE
!CHANGELOG.md
!.claude-plugin/