@girardmedia/bootspring 1.2.0 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. package/README.md +107 -14
  2. package/bin/bootspring.js +166 -27
  3. package/cli/agent.js +189 -17
  4. package/cli/analyze.js +499 -0
  5. package/cli/audit.js +557 -0
  6. package/cli/auth.js +495 -38
  7. package/cli/billing.js +302 -0
  8. package/cli/build.js +695 -0
  9. package/cli/business.js +109 -26
  10. package/cli/checkpoint-utils.js +168 -0
  11. package/cli/checkpoint.js +639 -0
  12. package/cli/cloud-sync.js +447 -0
  13. package/cli/content.js +198 -0
  14. package/cli/context.js +1 -1
  15. package/cli/deploy.js +543 -0
  16. package/cli/fundraise.js +112 -50
  17. package/cli/github-cmd.js +435 -0
  18. package/cli/health.js +477 -0
  19. package/cli/init.js +84 -13
  20. package/cli/legal.js +107 -95
  21. package/cli/log.js +2 -2
  22. package/cli/loop.js +976 -73
  23. package/cli/manager.js +711 -0
  24. package/cli/metrics.js +480 -0
  25. package/cli/monitor.js +812 -0
  26. package/cli/onboard.js +521 -0
  27. package/cli/orchestrator.js +12 -24
  28. package/cli/prd.js +594 -0
  29. package/cli/preseed-start.js +1483 -0
  30. package/cli/preseed.js +2302 -0
  31. package/cli/project.js +436 -0
  32. package/cli/quality.js +233 -0
  33. package/cli/security.js +913 -0
  34. package/cli/seed.js +1441 -5
  35. package/cli/skill.js +273 -211
  36. package/cli/suggest.js +989 -0
  37. package/cli/switch.js +453 -0
  38. package/cli/visualize.js +527 -0
  39. package/cli/watch.js +769 -0
  40. package/cli/workspace.js +607 -0
  41. package/core/analyze-workflow.js +1134 -0
  42. package/core/api-client.js +535 -22
  43. package/core/audit-workflow.js +1350 -0
  44. package/core/build-orchestrator.js +480 -0
  45. package/core/build-state.js +577 -0
  46. package/core/checkpoint-engine.js +408 -0
  47. package/core/config.js +1109 -26
  48. package/core/context-loader.js +21 -1
  49. package/core/deploy-workflow.js +836 -0
  50. package/core/entitlements.js +93 -22
  51. package/core/github-sync.js +610 -0
  52. package/core/index.js +8 -1
  53. package/core/ingest.js +1111 -0
  54. package/core/metrics-engine.js +768 -0
  55. package/core/onboard-workflow.js +1007 -0
  56. package/core/preseed-workflow.js +934 -0
  57. package/core/preseed.js +1617 -0
  58. package/core/project-context.js +325 -0
  59. package/core/project-state.js +694 -0
  60. package/core/r2-sync.js +583 -0
  61. package/core/scaffold.js +525 -7
  62. package/core/session.js +258 -0
  63. package/core/task-extractor.js +758 -0
  64. package/core/telemetry.js +28 -6
  65. package/core/tier-enforcement.js +737 -0
  66. package/core/utils.js +38 -14
  67. package/generators/questionnaire.js +15 -12
  68. package/generators/sections/ai.js +7 -7
  69. package/generators/sections/content.js +300 -0
  70. package/generators/sections/index.js +3 -0
  71. package/generators/sections/plugins.js +7 -6
  72. package/generators/templates/build-planning.template.js +596 -0
  73. package/generators/templates/content.template.js +819 -0
  74. package/generators/templates/index.js +2 -1
  75. package/hooks/git-autopilot.js +1250 -0
  76. package/hooks/index.js +9 -0
  77. package/intelligence/agent-collab.js +2057 -0
  78. package/intelligence/auto-suggest.js +634 -0
  79. package/intelligence/content-gen.js +1589 -0
  80. package/intelligence/cross-project.js +1647 -0
  81. package/intelligence/index.js +184 -0
  82. package/intelligence/learning/insights.json +517 -7
  83. package/intelligence/learning/pattern-learner.js +1008 -14
  84. package/intelligence/memory/decision-tracker.js +1431 -31
  85. package/intelligence/memory/decisions.jsonl +0 -0
  86. package/intelligence/orchestrator.js +2896 -1
  87. package/intelligence/prd.js +92 -1
  88. package/intelligence/recommendation-weights.json +14 -2
  89. package/intelligence/recommendations.js +463 -9
  90. package/intelligence/workflow-composer.js +1451 -0
  91. package/marketplace/index.d.ts +324 -0
  92. package/marketplace/index.js +1921 -0
  93. package/mcp/contracts/mcp-contract.v1.json +342 -4
  94. package/mcp/registry.js +680 -3
  95. package/mcp/response-formatter.js +23 -0
  96. package/mcp/tools/assist-tool.js +78 -4
  97. package/mcp/tools/autopilot-tool.js +408 -0
  98. package/mcp/tools/content-tool.js +571 -0
  99. package/mcp/tools/dashboard-tool.js +251 -5
  100. package/mcp/tools/mvp-tool.js +344 -0
  101. package/mcp/tools/plugin-tool.js +23 -1
  102. package/mcp/tools/prd-tool.js +579 -0
  103. package/mcp/tools/seed-tool.js +447 -0
  104. package/mcp/tools/skill-tool.js +43 -14
  105. package/mcp/tools/suggest-tool.js +147 -0
  106. package/package.json +15 -6
  107. package/agents/README.md +0 -93
  108. package/agents/ai-integration-expert/context.md +0 -386
  109. package/agents/api-expert/context.md +0 -416
  110. package/agents/architecture-expert/context.md +0 -454
  111. package/agents/auth-expert/context.md +0 -399
  112. package/agents/backend-expert/context.md +0 -483
  113. package/agents/business-strategy-expert/context.md +0 -180
  114. package/agents/code-review-expert/context.md +0 -365
  115. package/agents/competitive-analysis-expert/context.md +0 -239
  116. package/agents/data-modeling-expert/context.md +0 -352
  117. package/agents/database-expert/context.md +0 -250
  118. package/agents/devops-expert/context.md +0 -446
  119. package/agents/email-expert/context.md +0 -379
  120. package/agents/financial-expert/context.md +0 -213
  121. package/agents/frontend-expert/context.md +0 -364
  122. package/agents/fundraising-expert/context.md +0 -257
  123. package/agents/growth-expert/context.md +0 -249
  124. package/agents/index.js +0 -140
  125. package/agents/investor-relations-expert/context.md +0 -266
  126. package/agents/legal-expert/context.md +0 -284
  127. package/agents/marketing-expert/context.md +0 -236
  128. package/agents/monitoring-expert/context.md +0 -362
  129. package/agents/operations-expert/context.md +0 -279
  130. package/agents/partnerships-expert/context.md +0 -286
  131. package/agents/payment-expert/context.md +0 -340
  132. package/agents/performance-expert/context.md +0 -377
  133. package/agents/private-equity-expert/context.md +0 -246
  134. package/agents/railway-expert/context.md +0 -284
  135. package/agents/research-expert/context.md +0 -245
  136. package/agents/sales-expert/context.md +0 -241
  137. package/agents/security-expert/context.md +0 -343
  138. package/agents/testing-expert/context.md +0 -414
  139. package/agents/ui-ux-expert/context.md +0 -448
  140. package/agents/vercel-expert/context.md +0 -426
  141. package/skills/index.js +0 -787
  142. package/skills/patterns/README.md +0 -163
  143. package/skills/patterns/ai/agents.md +0 -281
  144. package/skills/patterns/ai/claude.md +0 -138
  145. package/skills/patterns/ai/embeddings.md +0 -150
  146. package/skills/patterns/ai/rag.md +0 -266
  147. package/skills/patterns/ai/streaming.md +0 -170
  148. package/skills/patterns/ai/structured-output.md +0 -162
  149. package/skills/patterns/ai/tools.md +0 -154
  150. package/skills/patterns/analytics/tracking.md +0 -220
  151. package/skills/patterns/api/errors.md +0 -296
  152. package/skills/patterns/api/graphql.md +0 -440
  153. package/skills/patterns/api/middleware.md +0 -279
  154. package/skills/patterns/api/openapi.md +0 -285
  155. package/skills/patterns/api/rate-limiting.md +0 -231
  156. package/skills/patterns/api/route-handler.md +0 -217
  157. package/skills/patterns/api/server-action.md +0 -249
  158. package/skills/patterns/api/versioning.md +0 -443
  159. package/skills/patterns/api/webhooks.md +0 -247
  160. package/skills/patterns/auth/clerk.md +0 -132
  161. package/skills/patterns/auth/mfa.md +0 -313
  162. package/skills/patterns/auth/nextauth.md +0 -140
  163. package/skills/patterns/auth/oauth.md +0 -237
  164. package/skills/patterns/auth/rbac.md +0 -152
  165. package/skills/patterns/auth/session-management.md +0 -367
  166. package/skills/patterns/auth/session.md +0 -120
  167. package/skills/patterns/database/audit.md +0 -177
  168. package/skills/patterns/database/migrations.md +0 -177
  169. package/skills/patterns/database/pagination.md +0 -230
  170. package/skills/patterns/database/pooling.md +0 -357
  171. package/skills/patterns/database/prisma.md +0 -180
  172. package/skills/patterns/database/relations.md +0 -187
  173. package/skills/patterns/database/seeding.md +0 -246
  174. package/skills/patterns/database/soft-delete.md +0 -153
  175. package/skills/patterns/database/transactions.md +0 -162
  176. package/skills/patterns/deployment/ci-cd.md +0 -231
  177. package/skills/patterns/deployment/docker.md +0 -188
  178. package/skills/patterns/deployment/monitoring.md +0 -387
  179. package/skills/patterns/deployment/vercel.md +0 -160
  180. package/skills/patterns/email/resend.md +0 -143
  181. package/skills/patterns/email/templates.md +0 -245
  182. package/skills/patterns/email/transactional.md +0 -503
  183. package/skills/patterns/email/verification.md +0 -176
  184. package/skills/patterns/files/download.md +0 -243
  185. package/skills/patterns/files/upload.md +0 -239
  186. package/skills/patterns/i18n/nextintl.md +0 -188
  187. package/skills/patterns/logging/structured.md +0 -292
  188. package/skills/patterns/notifications/email-queue.md +0 -248
  189. package/skills/patterns/notifications/push.md +0 -279
  190. package/skills/patterns/payments/checkout.md +0 -303
  191. package/skills/patterns/payments/invoices.md +0 -287
  192. package/skills/patterns/payments/portal.md +0 -245
  193. package/skills/patterns/payments/stripe.md +0 -272
  194. package/skills/patterns/payments/subscriptions.md +0 -300
  195. package/skills/patterns/payments/usage.md +0 -279
  196. package/skills/patterns/performance/caching.md +0 -276
  197. package/skills/patterns/performance/code-splitting.md +0 -233
  198. package/skills/patterns/performance/edge.md +0 -254
  199. package/skills/patterns/performance/isr.md +0 -266
  200. package/skills/patterns/performance/lazy-loading.md +0 -281
  201. package/skills/patterns/realtime/sse.md +0 -327
  202. package/skills/patterns/realtime/websockets.md +0 -336
  203. package/skills/patterns/search/filtering.md +0 -329
  204. package/skills/patterns/search/fulltext.md +0 -260
  205. package/skills/patterns/security/audit-logging.md +0 -444
  206. package/skills/patterns/security/csrf.md +0 -234
  207. package/skills/patterns/security/headers.md +0 -252
  208. package/skills/patterns/security/sanitization.md +0 -258
  209. package/skills/patterns/security/secrets.md +0 -261
  210. package/skills/patterns/security/validation.md +0 -268
  211. package/skills/patterns/security/xss.md +0 -229
  212. package/skills/patterns/seo/metadata.md +0 -252
  213. package/skills/patterns/state/context.md +0 -349
  214. package/skills/patterns/state/react-query.md +0 -313
  215. package/skills/patterns/state/url-state.md +0 -482
  216. package/skills/patterns/state/zustand.md +0 -262
  217. package/skills/patterns/testing/api.md +0 -259
  218. package/skills/patterns/testing/component.md +0 -233
  219. package/skills/patterns/testing/coverage.md +0 -207
  220. package/skills/patterns/testing/fixtures.md +0 -225
  221. package/skills/patterns/testing/integration.md +0 -436
  222. package/skills/patterns/testing/mocking.md +0 -177
  223. package/skills/patterns/testing/playwright.md +0 -162
  224. package/skills/patterns/testing/snapshot.md +0 -175
  225. package/skills/patterns/testing/vitest.md +0 -307
  226. package/skills/patterns/ui/accordions.md +0 -395
  227. package/skills/patterns/ui/cards.md +0 -299
  228. package/skills/patterns/ui/dropdowns.md +0 -476
  229. package/skills/patterns/ui/empty-states.md +0 -320
  230. package/skills/patterns/ui/forms.md +0 -405
  231. package/skills/patterns/ui/inputs.md +0 -319
  232. package/skills/patterns/ui/layouts.md +0 -282
  233. package/skills/patterns/ui/loading.md +0 -291
  234. package/skills/patterns/ui/modals.md +0 -338
  235. package/skills/patterns/ui/navigation.md +0 -374
  236. package/skills/patterns/ui/tables.md +0 -407
  237. package/skills/patterns/ui/toasts.md +0 -300
  238. package/skills/patterns/ui/tooltips.md +0 -396
  239. package/skills/patterns/utils/dates.md +0 -435
  240. package/skills/patterns/utils/errors.md +0 -451
  241. package/skills/patterns/utils/formatting.md +0 -345
  242. package/skills/patterns/utils/validation.md +0 -434
  243. package/templates/bootspring.config.js +0 -83
  244. package/templates/business/business-model-canvas.md +0 -246
  245. package/templates/business/business-plan.md +0 -266
  246. package/templates/business/competitive-analysis.md +0 -312
  247. package/templates/fundraising/data-room-checklist.md +0 -300
  248. package/templates/fundraising/investor-research.md +0 -243
  249. package/templates/fundraising/pitch-deck-outline.md +0 -253
  250. package/templates/legal/gdpr-checklist.md +0 -339
  251. package/templates/legal/privacy-policy.md +0 -285
  252. package/templates/legal/terms-of-service.md +0 -222
  253. package/templates/mcp.json +0 -9
@@ -1,339 +0,0 @@
1
- # GDPR Compliance Checklist: {{PROJECT_NAME}}
2
-
3
- > **Version**: 1.0 | **Created**: {{DATE}} | **Status**: In Progress
4
-
5
- ---
6
-
7
- ## Overview
8
-
9
- The General Data Protection Regulation (GDPR) applies if you:
10
- - Are established in the EU/EEA
11
- - Process personal data of EU/EEA residents
12
- - Offer goods/services to EU/EEA residents
13
- - Monitor behavior of EU/EEA residents
14
-
15
- ---
16
-
17
- ## 1. Lawful Basis for Processing
18
-
19
- ### Documentation Required
20
- - [ ] Identify lawful basis for each processing activity
21
- - [ ] Document lawful basis in privacy policy
22
- - [ ] Maintain records of processing activities
23
-
24
- ### Lawful Bases (Choose One Per Activity)
25
- | Processing Activity | Lawful Basis | Documentation |
26
- |--------------------|--------------|---------------|
27
- | Account creation | Contract | |
28
- | Marketing emails | Consent | |
29
- | Analytics | Legitimate Interest | |
30
- | Payment processing | Contract | |
31
- | Security monitoring | Legitimate Interest | |
32
- | Legal compliance | Legal Obligation | |
33
-
34
- ### Consent Requirements (If Using Consent)
35
- - [ ] Consent is freely given
36
- - [ ] Consent is specific to purpose
37
- - [ ] Consent is informed (clear explanation)
38
- - [ ] Consent is unambiguous (affirmative action)
39
- - [ ] No pre-ticked boxes
40
- - [ ] Easy to withdraw consent
41
- - [ ] Consent records maintained
42
-
43
- ---
44
-
45
- ## 2. Data Subject Rights
46
-
47
- ### Right to Be Informed
48
- - [ ] Privacy policy is accessible
49
- - [ ] Information provided at point of collection
50
- - [ ] Clear and plain language used
51
- - [ ] All required information included
52
-
53
- ### Right of Access (Subject Access Request)
54
- - [ ] Process to verify identity
55
- - [ ] Process to respond within 30 days
56
- - [ ] Ability to provide data in common format
57
- - [ ] Process for handling complex requests
58
- - [ ] No charge for reasonable requests
59
-
60
- ### Right to Rectification
61
- - [ ] Users can update their information
62
- - [ ] Process to correct inaccurate data
63
- - [ ] Notification to third parties when corrected
64
-
65
- ### Right to Erasure ("Right to Be Forgotten")
66
- - [ ] Process to delete user data
67
- - [ ] Criteria for when erasure applies
68
- - [ ] Process for notifying third parties
69
- - [ ] Exceptions documented (legal requirements)
70
-
71
- ### Right to Restrict Processing
72
- - [ ] Process to restrict processing on request
73
- - [ ] Technical ability to restrict processing
74
- - [ ] Notification when restriction lifted
75
-
76
- ### Right to Data Portability
77
- - [ ] Ability to export data in machine-readable format
78
- - [ ] Process for handling portability requests
79
- - [ ] Common format defined (JSON, CSV, etc.)
80
-
81
- ### Right to Object
82
- - [ ] Process to handle objections
83
- - [ ] Immediate stop for direct marketing
84
- - [ ] Legitimate interest balancing for other processing
85
-
86
- ### Rights Related to Automated Decision-Making
87
- - [ ] Identify any automated decisions
88
- - [ ] Process for human review when requested
89
- - [ ] Safeguards in place
90
-
91
- ---
92
-
93
- ## 3. Privacy by Design & Default
94
-
95
- ### Design Principles
96
- - [ ] Data minimization (collect only what's needed)
97
- - [ ] Purpose limitation (use only for stated purposes)
98
- - [ ] Storage limitation (don't keep longer than necessary)
99
- - [ ] Accuracy (keep data up to date)
100
- - [ ] Security (protect data appropriately)
101
- - [ ] Privacy by default (most private settings by default)
102
-
103
- ### Technical Measures
104
- - [ ] Data minimization in database schema
105
- - [ ] Privacy-friendly default settings
106
- - [ ] Automatic data deletion after retention period
107
- - [ ] Pseudonymization where appropriate
108
- - [ ] Anonymization for analytics
109
-
110
- ---
111
-
112
- ## 4. Data Protection Impact Assessment (DPIA)
113
-
114
- ### When Required
115
- - [ ] Systematic monitoring of public areas
116
- - [ ] Large-scale processing of sensitive data
117
- - [ ] Automated decision-making with legal effects
118
- - [ ] New technologies with high risk
119
- - [ ] Combining data sets
120
-
121
- ### DPIA Process
122
- - [ ] Describe processing operations
123
- - [ ] Assess necessity and proportionality
124
- - [ ] Identify and assess risks
125
- - [ ] Identify measures to address risks
126
- - [ ] Document the assessment
127
- - [ ] Consult with DPO (if required)
128
-
129
- ---
130
-
131
- ## 5. Security Measures
132
-
133
- ### Technical Measures
134
- - [ ] Encryption at rest
135
- - [ ] Encryption in transit (TLS/SSL)
136
- - [ ] Access controls and authentication
137
- - [ ] Secure password storage (hashing)
138
- - [ ] Regular security testing
139
- - [ ] Vulnerability management
140
- - [ ] Logging and monitoring
141
- - [ ] Backup and recovery
142
-
143
- ### Organizational Measures
144
- - [ ] Security policies documented
145
- - [ ] Employee training on data protection
146
- - [ ] Access limited to need-to-know
147
- - [ ] Confidentiality agreements
148
- - [ ] Incident response procedures
149
- - [ ] Regular security reviews
150
-
151
- ---
152
-
153
- ## 6. Data Breach Procedures
154
-
155
- ### Detection and Assessment
156
- - [ ] Monitoring for breaches
157
- - [ ] Process to assess severity
158
- - [ ] Documentation of all breaches
159
-
160
- ### Notification to Supervisory Authority
161
- - [ ] Notify within 72 hours if risk to rights
162
- - [ ] Template notification prepared
163
- - [ ] Contact information for relevant authority
164
-
165
- ### Notification to Data Subjects
166
- - [ ] Process for notifying affected individuals
167
- - [ ] Clear communication of impact
168
- - [ ] Advice on protective measures
169
-
170
- ### Documentation
171
- - [ ] Breach register maintained
172
- - [ ] Post-incident review process
173
- - [ ] Lessons learned documented
174
-
175
- ---
176
-
177
- ## 7. Third-Party Processors
178
-
179
- ### Due Diligence
180
- - [ ] List all third-party processors
181
- - [ ] Verify processor GDPR compliance
182
- - [ ] Review processor security measures
183
-
184
- ### Contracts (Data Processing Agreements)
185
- - [ ] Written contracts with all processors
186
- - [ ] Required GDPR clauses included:
187
- - [ ] Subject matter and duration
188
- - [ ] Nature and purpose of processing
189
- - [ ] Types of personal data
190
- - [ ] Categories of data subjects
191
- - [ ] Processor obligations
192
- - [ ] Controller rights
193
-
194
- ### Processor List
195
- | Processor | Purpose | Data Processed | DPA Signed | Location |
196
- |-----------|---------|----------------|------------|----------|
197
- | [Cloud Provider] | Hosting | All | [ ] | |
198
- | [Payment Provider] | Payments | Payment data | [ ] | |
199
- | [Email Service] | Email | Email, name | [ ] | |
200
- | [Analytics] | Analytics | Usage data | [ ] | |
201
-
202
- ---
203
-
204
- ## 8. International Transfers
205
-
206
- ### Assessment
207
- - [ ] Identify all international data transfers
208
- - [ ] Determine adequacy status of destination countries
209
- - [ ] Implement appropriate safeguards
210
-
211
- ### Transfer Mechanisms
212
- | Destination | Mechanism | Status |
213
- |-------------|-----------|--------|
214
- | USA | Standard Contractual Clauses | [ ] |
215
- | UK | Adequacy Decision | [ ] |
216
- | [Country] | [Mechanism] | [ ] |
217
-
218
- ### Safeguards
219
- - [ ] Standard Contractual Clauses signed
220
- - [ ] Binding Corporate Rules (if applicable)
221
- - [ ] Transfer Impact Assessments completed
222
- - [ ] Supplementary measures implemented
223
-
224
- ---
225
-
226
- ## 9. Records of Processing Activities
227
-
228
- ### Controller Records (Article 30)
229
- - [ ] Name and contact details
230
- - [ ] Purposes of processing
231
- - [ ] Categories of data subjects
232
- - [ ] Categories of personal data
233
- - [ ] Categories of recipients
234
- - [ ] International transfers
235
- - [ ] Retention periods
236
- - [ ] Security measures description
237
-
238
- ### Record Template
239
- | Activity | Purpose | Legal Basis | Data Categories | Recipients | Retention | Transfers |
240
- |----------|---------|-------------|-----------------|------------|-----------|-----------|
241
- | User accounts | Service provision | Contract | Name, email | [List] | Account + 3yr | US (SCCs) |
242
- | Analytics | Improvement | Legitimate interest | Usage data | [List] | 2 years | US (SCCs) |
243
-
244
- ---
245
-
246
- ## 10. Data Protection Officer (DPO)
247
-
248
- ### When Required
249
- - [ ] Public authority
250
- - [ ] Core activities require regular monitoring at scale
251
- - [ ] Core activities involve sensitive data at scale
252
-
253
- ### DPO Responsibilities (If Appointed)
254
- - [ ] DPO appointed and registered
255
- - [ ] DPO contact information published
256
- - [ ] DPO involved in all data protection matters
257
- - [ ] DPO reports to highest management level
258
- - [ ] DPO has adequate resources
259
-
260
- ---
261
-
262
- ## 11. Privacy Policy Requirements
263
-
264
- ### Required Information
265
- - [ ] Identity and contact details of controller
266
- - [ ] DPO contact details (if applicable)
267
- - [ ] Purposes of processing
268
- - [ ] Legal basis for processing
269
- - [ ] Legitimate interests (if applicable)
270
- - [ ] Categories of recipients
271
- - [ ] International transfer details
272
- - [ ] Retention periods
273
- - [ ] Data subject rights
274
- - [ ] Right to withdraw consent
275
- - [ ] Right to complain to supervisory authority
276
- - [ ] Whether provision is required/obligatory
277
- - [ ] Automated decision-making details
278
-
279
- ---
280
-
281
- ## 12. Cookie Compliance
282
-
283
- ### Requirements
284
- - [ ] Cookie banner/notice displayed
285
- - [ ] Prior consent before non-essential cookies
286
- - [ ] Easy to reject cookies
287
- - [ ] No pre-selected options
288
- - [ ] Cookie policy accessible
289
- - [ ] List of all cookies with purposes
290
- - [ ] Third-party cookie disclosure
291
-
292
- ### Cookie Categories
293
- | Cookie | Purpose | Duration | Type |
294
- |--------|---------|----------|------|
295
- | Session | Essential | Session | Necessary |
296
- | Auth token | Essential | 30 days | Necessary |
297
- | Analytics | Analytics | 2 years | Requires consent |
298
- | Marketing | Advertising | 1 year | Requires consent |
299
-
300
- ---
301
-
302
- ## 13. Regular Review
303
-
304
- ### Annual Tasks
305
- - [ ] Review and update privacy policy
306
- - [ ] Review processing activities
307
- - [ ] Review data retention
308
- - [ ] Update third-party processor list
309
- - [ ] Conduct security assessment
310
- - [ ] Review breach procedures
311
- - [ ] Employee training refresh
312
-
313
- ### Ongoing Tasks
314
- - [ ] Monitor regulatory guidance
315
- - [ ] Handle data subject requests
316
- - [ ] Document processing changes
317
- - [ ] Report to management
318
-
319
- ---
320
-
321
- ## Resources
322
-
323
- ### Regulatory Guidance
324
- - ICO (UK): https://ico.org.uk/
325
- - CNIL (France): https://www.cnil.fr/
326
- - EDPB: https://edpb.europa.eu/
327
-
328
- ### Tools
329
- - Cookie consent platforms
330
- - DPIA templates
331
- - DPA templates
332
-
333
- ---
334
-
335
- **IMPORTANT**: This checklist is for guidance only and does not constitute legal advice. Consult a qualified attorney for compliance requirements specific to your situation.
336
-
337
- ---
338
-
339
- *Generated with Bootspring*
@@ -1,285 +0,0 @@
1
- # Privacy Policy
2
-
3
- **{{PROJECT_NAME}}**
4
-
5
- **Last Updated**: {{DATE}}
6
-
7
- ---
8
-
9
- ## 1. Introduction
10
-
11
- Welcome to {{PROJECT_NAME}} ("we," "our," or "us"). We are committed to protecting your privacy and personal information.
12
-
13
- This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our service ("Service").
14
-
15
- ---
16
-
17
- ## 2. Information We Collect
18
-
19
- ### 2.1 Information You Provide
20
-
21
- **Account Information**
22
- - Name
23
- - Email address
24
- - Password (encrypted)
25
- - Profile information
26
-
27
- **Payment Information**
28
- - Payment card details (processed by payment provider)
29
- - Billing address
30
- - Transaction history
31
-
32
- **Communications**
33
- - Support inquiries
34
- - Feedback and surveys
35
- - Email correspondence
36
-
37
- **User Content**
38
- - Content you create or upload
39
- - Comments and interactions
40
-
41
- ### 2.2 Information Collected Automatically
42
-
43
- **Usage Data**
44
- - Pages visited
45
- - Features used
46
- - Time spent on Service
47
- - Click patterns
48
-
49
- **Device Information**
50
- - Device type and model
51
- - Operating system
52
- - Browser type and version
53
- - Screen resolution
54
-
55
- **Log Data**
56
- - IP address
57
- - Access times
58
- - Referring URLs
59
- - Error logs
60
-
61
- **Cookies and Tracking**
62
- - Session cookies
63
- - Preference cookies
64
- - Analytics cookies
65
- - See our Cookie Policy for details
66
-
67
- ### 2.3 Information from Third Parties
68
-
69
- - Social login providers (if used)
70
- - Payment processors
71
- - Analytics services
72
- - Marketing partners
73
-
74
- ---
75
-
76
- ## 3. How We Use Your Information
77
-
78
- We use collected information to:
79
-
80
- ### 3.1 Provide and Maintain Service
81
- - Create and manage your account
82
- - Process transactions
83
- - Deliver requested features
84
- - Provide customer support
85
-
86
- ### 3.2 Improve Service
87
- - Analyze usage patterns
88
- - Develop new features
89
- - Fix bugs and issues
90
- - Optimize performance
91
-
92
- ### 3.3 Communications
93
- - Send service notifications
94
- - Respond to inquiries
95
- - Send marketing communications (with consent)
96
- - Share updates and news
97
-
98
- ### 3.4 Security and Compliance
99
- - Prevent fraud and abuse
100
- - Enforce our terms
101
- - Comply with legal obligations
102
- - Protect rights and safety
103
-
104
- ---
105
-
106
- ## 4. How We Share Your Information
107
-
108
- ### 4.1 Service Providers
109
- We share information with third parties that perform services on our behalf:
110
- - Cloud hosting providers
111
- - Payment processors
112
- - Analytics services
113
- - Customer support tools
114
- - Email service providers
115
-
116
- ### 4.2 Business Transfers
117
- In the event of a merger, acquisition, or sale, your information may be transferred to the acquiring entity.
118
-
119
- ### 4.3 Legal Requirements
120
- We may disclose information when required by law or to:
121
- - Comply with legal process
122
- - Protect our rights
123
- - Prevent fraud or abuse
124
- - Ensure safety of users
125
-
126
- ### 4.4 With Your Consent
127
- We may share information for purposes you have consented to.
128
-
129
- ### 4.5 Aggregated Data
130
- We may share aggregated, de-identified data that cannot identify you.
131
-
132
- ---
133
-
134
- ## 5. Data Retention
135
-
136
- We retain your information for as long as:
137
- - Your account is active
138
- - Needed to provide services
139
- - Required by law
140
- - Necessary for legitimate business purposes
141
-
142
- After account deletion, we may retain certain information as required by law or for legitimate business purposes.
143
-
144
- ---
145
-
146
- ## 6. Data Security
147
-
148
- We implement appropriate security measures including:
149
- - Encryption in transit and at rest
150
- - Access controls
151
- - Regular security assessments
152
- - Employee training
153
- - Incident response procedures
154
-
155
- However, no method of transmission is 100% secure. We cannot guarantee absolute security.
156
-
157
- ---
158
-
159
- ## 7. Your Rights and Choices
160
-
161
- ### 7.1 Account Information
162
- You can access, update, or delete your account information through your account settings.
163
-
164
- ### 7.2 Marketing Communications
165
- You can opt out of marketing emails by:
166
- - Clicking "unsubscribe" in emails
167
- - Adjusting notification settings
168
- - Contacting us directly
169
-
170
- ### 7.3 Cookies
171
- You can control cookies through browser settings. Note that disabling cookies may affect functionality.
172
-
173
- ### 7.4 Do Not Track
174
- We currently do not respond to Do Not Track signals.
175
-
176
- ### 7.5 Data Portability
177
- You may request a copy of your data in a portable format.
178
-
179
- ### 7.6 Deletion
180
- You may request deletion of your personal information, subject to legal retention requirements.
181
-
182
- ---
183
-
184
- ## 8. International Data Transfers
185
-
186
- If you are located outside [COUNTRY], your information may be transferred to and processed in [COUNTRY]. We ensure appropriate safeguards for international transfers.
187
-
188
- ---
189
-
190
- ## 9. Children's Privacy
191
-
192
- Our Service is not intended for children under 13 (or applicable age of consent). We do not knowingly collect information from children. If we learn we have collected information from a child, we will delete it promptly.
193
-
194
- ---
195
-
196
- ## 10. Third-Party Links
197
-
198
- Our Service may contain links to third-party websites. We are not responsible for their privacy practices. We encourage you to review their privacy policies.
199
-
200
- ---
201
-
202
- ## 11. Updates to This Policy
203
-
204
- We may update this Privacy Policy periodically. We will notify you of material changes via:
205
- - Email notification
206
- - Service announcement
207
- - Updated "Last Updated" date
208
-
209
- Continued use after changes constitutes acceptance.
210
-
211
- ---
212
-
213
- ## 12. California Privacy Rights (CCPA)
214
-
215
- If you are a California resident, you have additional rights:
216
-
217
- ### 12.1 Right to Know
218
- You may request disclosure of:
219
- - Categories of information collected
220
- - Sources of information
221
- - Purpose of collection
222
- - Categories of third parties we share with
223
- - Specific pieces of information collected
224
-
225
- ### 12.2 Right to Delete
226
- You may request deletion of your personal information.
227
-
228
- ### 12.3 Right to Opt-Out
229
- You may opt out of the "sale" of personal information.
230
-
231
- ### 12.4 Non-Discrimination
232
- We will not discriminate against you for exercising your rights.
233
-
234
- ### 12.5 How to Exercise Rights
235
- Submit requests to: privacy@{{DOMAIN}}
236
- We will verify your identity before processing requests.
237
-
238
- ---
239
-
240
- ## 13. European Privacy Rights (GDPR)
241
-
242
- If you are in the European Economic Area, you have additional rights:
243
-
244
- ### 13.1 Legal Basis
245
- We process data based on:
246
- - Consent
247
- - Contract performance
248
- - Legal obligations
249
- - Legitimate interests
250
-
251
- ### 13.2 Your Rights
252
- - Access your data
253
- - Rectify inaccurate data
254
- - Erase your data
255
- - Restrict processing
256
- - Data portability
257
- - Object to processing
258
- - Withdraw consent
259
-
260
- ### 13.3 Data Protection Officer
261
- Contact our DPO at: dpo@{{DOMAIN}}
262
-
263
- ### 13.4 Supervisory Authority
264
- You may lodge a complaint with your local data protection authority.
265
-
266
- ---
267
-
268
- ## 14. Contact Us
269
-
270
- For questions about this Privacy Policy or our privacy practices:
271
-
272
- **{{PROJECT_NAME}}**
273
- Email: privacy@{{DOMAIN}}
274
- Address: [ADDRESS]
275
-
276
- For data protection inquiries:
277
- Email: dpo@{{DOMAIN}}
278
-
279
- ---
280
-
281
- **IMPORTANT**: This template is for informational purposes only and does not constitute legal advice. Consult a qualified attorney to ensure compliance with applicable laws.
282
-
283
- ---
284
-
285
- *Generated with Bootspring*