-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
200 lines (177 loc) · 6.01 KB
/
.gitignore
File metadata and controls
200 lines (177 loc) · 6.01 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
# agentic-oriented-development-kit .gitignore
# ============================================================================
# Node.js
# ============================================================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# ============================================================================
# Build outputs
# ============================================================================
dist/
build/
out/
*.tsbuildinfo
# ============================================================================
# Environment files (NEVER commit secrets)
# ============================================================================
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.*.local
# ============================================================================
# IDE and editor files
# ============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
.history/
# ============================================================================
# Testing and coverage
# ============================================================================
coverage/
.nyc_output/
*.lcov
test-results/
# Allow archived test evidence in specs (Feature 110)
!specs/*/test-results/
!specs/*/test-results/**
playwright-report/
playwright/.cache/
# ============================================================================
# Logs
# ============================================================================
*.log
logs/
*.log.*
# ============================================================================
# OS files
# ============================================================================
.DS_Store
Thumbs.db
desktop.ini
# ============================================================================
# Temporary files
# ============================================================================
tmp/
temp/
*.tmp
*.temp
.cache/
# ============================================================================
# Database files (local development)
# ============================================================================
*.db
*.sqlite
*.sqlite3
*.db-shm
*.db-wal
prisma/dev.db*
# ============================================================================
# Package manager files
# ============================================================================
.pnpm-store/
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# ============================================================================
# MCP and AI tools
# ============================================================================
.mcp/
.ai/
.anthropic/
# ============================================================================
# Playwright MCP cache
# ============================================================================
.playwright-mcp/
# ============================================================================
# AOD specific
# ============================================================================
# Keep .aod/ tracked (it's part of the template)
# But ignore local customizations that shouldn't be in template
.aod/local/
.aod/*.lock
.aod/memory/github-project.json
# Runtime state files (created by /aod.run orchestrator)
.aod/run-state.json
.aod/run-state.json.tmp
.aod/run-state.json.corrupt.*
# Log files (keep logs local, not in version control)
.aod/logs/
# Stack Packs runtime state (per-developer, not versioned)
.claude/rules/stack/
.aod/stack-active.json
# Feature 129 (downstream template update mechanism) — adopter-side state
# Lock file is already covered by .aod/*.lock above (.aod/update.lock)
# Transient staging directory for in-flight updates
.aod/update-tmp/
# Personalization values — adopters may remove this line for reproducible installs
# (committing personalization.env locks substitution values into git history).
.aod/personalization.env
# ============================================================================
# Product-led specific
# ============================================================================
# Ignore per-user customizations after template instantiation
.customize/
# ============================================================================
# Dependencies and vendor
# ============================================================================
vendor/
.bundle/
# ============================================================================
# Build artifacts
# ============================================================================
*.o
*.a
*.so
*.dylib
*.exe
*.dll
# ============================================================================
# Certificates and keys (NEVER commit)
# ============================================================================
*.pem
*.key
*.crt
*.cert
*.p12
*.pfx
# ============================================================================
# Backup files
# ============================================================================
*.bak
*.backup
*~
# ============================================================================
# Cloud provider credentials (NEVER commit)
# ============================================================================
.aws/
.gcp/
.azure/
credentials.json
service-account.json
# ============================================================================
# Keep important files (override patterns above if needed)
# ============================================================================
# None currently - add with !pattern if needed
# ============================================================================
# Documentation build artifacts
# ============================================================================
_site/
.jekyll-cache/
.jekyll-metadata
# ============================================================================
# Project-specific (customize as needed)
# ============================================================================
# Add your project-specific ignores here after template instantiation
# Subagent result artifacts (ephemeral, session-scoped)
.aod/results/