-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
322 lines (277 loc) · 6.57 KB
/
.gitignore
File metadata and controls
322 lines (277 loc) · 6.57 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# BMAD Framework .gitignore
# Generated for public GitHub release
# ===================
# BMAD Framework
# ===================
# BMAD module directory
_bmad/
# ===================
# Output Directories
# ===================
# User-generated outputs - created during workflow execution
_output/
_bmad-output/
# ===================
# Data Files
# ===================
# Active legal holds - contains sensitive case data
data/legal-holds/active-holds.json
# ===================
# Claude Code Settings
# ===================
# Local settings contain user-specific configurations
.claude/settings.local.json
.claude/settings-python-backup.json
.claude/audio/
.claude/projects/
.claude/validators-node/.env.example
# Runtime state files - NEVER commit
.claude/.rate_limit_state.json
.claude/.confidence_state.json
.claude/.override_state.json
.claude/.resource_state.json
.claude/.session_claims.json
.claude/.session_validated
.claude/*.lock
.claude/dashboard.html
# User preference files
.claude/github-star-reminder.txt
.claude/llm-provider.txt
# Log files - contain sensitive runtime data
.claude/logs/*.log
.claude/logs/*.json
.claude/logs/*.jsonl
.claude/logs/.chain_state.json
.claude/logs/.anomaly_baseline.json
.claude/logs/.jailbreak_session.json
.claude/logs/.session_security_state.json
.claude/logs/.session_risk.json
# Validator state
.claude/validators-node/state/
# ===================
# Archive Directories
# ===================
# Archived Python validators (development artifacts)
.claude/validators-python-backup/
# Legacy output artifacts
Docs/archive/
Docs/07-archive/legacy-documents/
Docs/07-archive/test-archives/
# ===================
# Docs - Internal Folders
# ===================
# Internal documentation not for public release
Docs/03-developer-docs/
Docs/04-operations/
Docs/05-project-management/
Docs/06-reference/
# Exception: track required security docs for tests
!Docs/04-operations/security/ARCHITECTURE.md
!Docs/04-operations/security/THREAT-MODEL-TEMPLATE.md
!Docs/04-operations/security/SECRET-MANAGEMENT.md
!Docs/04-operations/security/RISK-REGISTER.md
!Docs/04-operations/security/owasp-controls.yaml
!Docs/03-developer-docs/RBAC-MIGRATION-MATRIX.md
!Docs/03-developer-docs/ADR-007-help-system-design.md
# But ignore these subdirectories in Docs/04-operations/
Docs/04-operations/security/testing/
Docs/04-operations/security/audit-reports/
# ===================
# Docs - Generated Test Output
# ===================
# Test fixtures and generated test data (regenerated during testing)
Docs/03-developer-docs/testing/fixtures/
Docs/03-developer-docs/testing/reports/
Docs/03-developer-docs/testing/benchmarks/
Docs/03-developer-docs/testing/performance/
Docs/03-developer-docs/testing/security/
Docs/TestingLogs/
# QA generated files
Docs/03-developer-docs/qa/progress-dashboard.json
# ===================
# Docs - Security Testing Output
# ===================
# Penetration test results and vulnerability reports
Docs/04-operations/security/testing/penetration-tests/results/
Docs/04-operations/security/testing/alerts/
Docs/04-operations/security/testing/revalidation/
# ===================
# Dev Tools
# ===================
# Internal development, testing, and security tools (not for public release)
dev-tools/
# ===================
# Private Projects
# ===================
# Internal security investigations and private project documentation
docs/projects/
privateproject/
# ===================
# Planning Artifacts
# ===================
# Workflow planning documents (development artifacts)
**/workflow-plan-*.md
**/COMPLETE-*.md
**/VERIFICATION-REPORT.md
**/PRODUCTION-READY.md
**/MODULE-CREATION-PLAYBOOK.md
**/TROUBLESHOOTING-GUIDE.md
# ===================
# Security Keys & Certificates
# ===================
# Private signing key - NEVER commit
_bmad/core/security/bmad-private-key.asc
src/core/security/bmad-private-key.asc
.bmad-token
.bmad-key
# SSL/TLS certificates and private keys
*.pem
*.key
*.crt
*.cer
*.p12
*.pfx
id_rsa*
*.pub
# ===================
# Backup Files
# ===================
# Editor and manual backup files - NEVER commit
*.bak
*.backup
*.old
*.orig
# ===================
# OS Generated Files
# ===================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ===================
# Editor/IDE Files
# ===================
*.swp
*.swo
*~
.idea/
.vscode/
*.sublime-workspace
*.sublime-project
# ===================
# Claude AI Configuration
# ===================
CLAUDE.md
# ===================
# Logs and Temp Files
# ===================
*.log
*.tmp
*.temp
.cache/
.version-check-cache
# Root-level logs directory
logs/
# Test artifacts
packages/*/output.txt
packages/*/test_debug.js
test_*.js
*.json.bak
# Path traversal test artifacts (URL-encoded filenames)
**/%2e%2e%2f*
**/*.passwd
# ===================
# Environment Files
# ===================
.env
.env.local
.env.*.local
*.env
# ===================
# Build Output
# ===================
# TypeScript compiled output - generated by `npm run build`
dist/
build/
# Package distribution artifacts
*.tgz
*.tar.gz
*.sha256
*.sbom.json
# Exception: validators-node dist is used by tests (bin files import from dist)
!.claude/validators-node/dist/
# Source maps - generated during TypeScript compilation
*.map
# Test coverage
coverage/
# ===================
# Node.js
# ===================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ===================
# Python (if applicable)
# ===================
__pycache__/
*.py[cod]
*$py.class
.Python
venv/
.venv/
# ===================
# Team - Internal Files
# ===================
# Internal team documentation and working files
team/audit-report-*.md
team/ci-test-summary.md
team/lessonslearned.md
team/remaining-errors-summary.md
team/test-fixes-plan.md
# Backup files - NEVER commit
team/backups/
# ===================
# Private Development
# ===================
# Private development workspace - never commit
dev-private/
# ===================
# BMAD Generated Files
# ===================
# BMAD-generated documents and outputs
docs/01-briefs/
docs/02-prds/
docs/03-architectures/
docs/04-epics/
docs/05-stories/
docs/06-tech-specs/
docs/07-sprints/
docs/08-retrospectives/
docs/09-ux-designs/
docs/10-test-plans/
docs/11-gdds/
docs/12-game-briefs/
docs/13-game-architectures/
# BMAD workflow state files
*.workflow-state.yaml
*.sprint-status.yaml
.project-context.md
# BMAD planning documents
**/IMPLEMENTATION_PLAN.md
**/TROUBLESHOOTING-GUIDE.md
# BMAD project artifacts at root level (if generated)
/bmad-*.md
/bmad-*.json
/bmad-*.tar.gz*
/brief.md
/gdd.md
/prd.md
/architecture.md
/tech-spec.md
# BMAD state and tracking files
.project-status.yaml
project-status.md