create-qa-architect 5.0.0
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.
- package/.editorconfig +12 -0
- package/.github/CLAUDE_MD_AUTOMATION.md +248 -0
- package/.github/PROGRESSIVE_QUALITY_IMPLEMENTATION.md +408 -0
- package/.github/PROGRESSIVE_QUALITY_PROPOSAL.md +443 -0
- package/.github/RELEASE_CHECKLIST.md +100 -0
- package/.github/dependabot.yml +50 -0
- package/.github/git-sync.sh +48 -0
- package/.github/workflows/claude-md-validation.yml +82 -0
- package/.github/workflows/nightly-gitleaks-verification.yml +176 -0
- package/.github/workflows/pnpm-ci.yml.example +53 -0
- package/.github/workflows/python-ci.yml.example +69 -0
- package/.github/workflows/quality-legacy.yml.backup +165 -0
- package/.github/workflows/quality-progressive.yml.example +291 -0
- package/.github/workflows/quality.yml +436 -0
- package/.github/workflows/release.yml +53 -0
- package/.nvmrc +1 -0
- package/.prettierignore +14 -0
- package/.prettierrc +9 -0
- package/.stylelintrc.json +5 -0
- package/README.md +212 -0
- package/config/.lighthouserc.js +45 -0
- package/config/.pre-commit-config.yaml +66 -0
- package/config/constants.js +128 -0
- package/config/defaults.js +124 -0
- package/config/pyproject.toml +124 -0
- package/config/quality-config.schema.json +97 -0
- package/config/quality-python.yml +89 -0
- package/config/requirements-dev.txt +15 -0
- package/create-saas-monetization.js +1465 -0
- package/eslint.config.cjs +117 -0
- package/eslint.config.ts.cjs +99 -0
- package/legal/README.md +106 -0
- package/legal/copyright.md +76 -0
- package/legal/disclaimer.md +146 -0
- package/legal/privacy-policy.html +324 -0
- package/legal/privacy-policy.md +196 -0
- package/legal/terms-of-service.md +224 -0
- package/lib/billing-dashboard.html +645 -0
- package/lib/config-validator.js +163 -0
- package/lib/dependency-monitoring-basic.js +185 -0
- package/lib/dependency-monitoring-premium.js +1490 -0
- package/lib/error-reporter.js +444 -0
- package/lib/interactive/prompt.js +128 -0
- package/lib/interactive/questions.js +146 -0
- package/lib/license-validator.js +403 -0
- package/lib/licensing.js +989 -0
- package/lib/package-utils.js +187 -0
- package/lib/project-maturity.js +516 -0
- package/lib/security-enhancements.js +340 -0
- package/lib/setup-enhancements.js +317 -0
- package/lib/smart-strategy-generator.js +344 -0
- package/lib/telemetry.js +323 -0
- package/lib/template-loader.js +252 -0
- package/lib/typescript-config-generator.js +210 -0
- package/lib/ui-helpers.js +74 -0
- package/lib/validation/base-validator.js +174 -0
- package/lib/validation/cache-manager.js +158 -0
- package/lib/validation/config-security.js +741 -0
- package/lib/validation/documentation.js +326 -0
- package/lib/validation/index.js +186 -0
- package/lib/validation/validation-factory.js +153 -0
- package/lib/validation/workflow-validation.js +172 -0
- package/lib/yaml-utils.js +120 -0
- package/marketing/beta-user-email-campaign.md +372 -0
- package/marketing/landing-page.html +721 -0
- package/package.json +165 -0
- package/setup.js +2076 -0
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Privacy Policy - Create Quality Automation</title>
|
|
7
|
+
<style>
|
|
8
|
+
body {
|
|
9
|
+
font-family:
|
|
10
|
+
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
11
|
+
max-width: 800px;
|
|
12
|
+
margin: 0 auto;
|
|
13
|
+
padding: 20px;
|
|
14
|
+
line-height: 1.6;
|
|
15
|
+
color: #333;
|
|
16
|
+
}
|
|
17
|
+
h1 {
|
|
18
|
+
color: #2563eb;
|
|
19
|
+
border-bottom: 2px solid #e5e7eb;
|
|
20
|
+
padding-bottom: 10px;
|
|
21
|
+
}
|
|
22
|
+
h2 {
|
|
23
|
+
color: #374151;
|
|
24
|
+
margin-top: 30px;
|
|
25
|
+
}
|
|
26
|
+
h3 {
|
|
27
|
+
color: #4b5563;
|
|
28
|
+
}
|
|
29
|
+
.contact-info {
|
|
30
|
+
background: #f9fafb;
|
|
31
|
+
padding: 15px;
|
|
32
|
+
border-radius: 8px;
|
|
33
|
+
margin: 20px 0;
|
|
34
|
+
}
|
|
35
|
+
.highlight {
|
|
36
|
+
background: #fef3c7;
|
|
37
|
+
padding: 10px;
|
|
38
|
+
border-radius: 5px;
|
|
39
|
+
margin: 15px 0;
|
|
40
|
+
}
|
|
41
|
+
.rights-list {
|
|
42
|
+
background: #ecfdf5;
|
|
43
|
+
padding: 15px;
|
|
44
|
+
border-radius: 8px;
|
|
45
|
+
}
|
|
46
|
+
strong {
|
|
47
|
+
color: #1f2937;
|
|
48
|
+
}
|
|
49
|
+
.last-updated {
|
|
50
|
+
color: #6b7280;
|
|
51
|
+
font-style: italic;
|
|
52
|
+
}
|
|
53
|
+
</style>
|
|
54
|
+
</head>
|
|
55
|
+
<body>
|
|
56
|
+
<h1>Privacy Policy</h1>
|
|
57
|
+
|
|
58
|
+
<p class="last-updated">
|
|
59
|
+
<strong>Effective Date:</strong> November 22, 2025<br />
|
|
60
|
+
<strong>Last Updated:</strong> November 22, 2025
|
|
61
|
+
</p>
|
|
62
|
+
|
|
63
|
+
<h2>Introduction</h2>
|
|
64
|
+
<p>
|
|
65
|
+
Create Quality Automation ("we," "our," or "us") respects your privacy and
|
|
66
|
+
is committed to protecting your personal data. This Privacy Policy
|
|
67
|
+
explains how we collect, use, disclose, and safeguard your information
|
|
68
|
+
when you use our software development tool and related services.
|
|
69
|
+
</p>
|
|
70
|
+
|
|
71
|
+
<div class="contact-info">
|
|
72
|
+
<strong>Contact Information:</strong><br />
|
|
73
|
+
• <strong>Service Provider:</strong> Brett Stark<br />
|
|
74
|
+
• <strong>Email:</strong> [contact email needed]<br />
|
|
75
|
+
•
|
|
76
|
+
<strong>Website:</strong>
|
|
77
|
+
https://github.com/brettstark73/quality-automation-template
|
|
78
|
+
</div>
|
|
79
|
+
|
|
80
|
+
<h2>Information We Collect</h2>
|
|
81
|
+
|
|
82
|
+
<h3>1. Information You Provide Directly</h3>
|
|
83
|
+
<ul>
|
|
84
|
+
<li>
|
|
85
|
+
<strong>Account Information:</strong> Email address, name, company
|
|
86
|
+
details (for Pro/Enterprise tiers)
|
|
87
|
+
</li>
|
|
88
|
+
<li>
|
|
89
|
+
<strong>Payment Information:</strong> Billing details processed securely
|
|
90
|
+
through Stripe
|
|
91
|
+
</li>
|
|
92
|
+
<li>
|
|
93
|
+
<strong>Support Communications:</strong> Messages, bug reports, feature
|
|
94
|
+
requests
|
|
95
|
+
</li>
|
|
96
|
+
</ul>
|
|
97
|
+
|
|
98
|
+
<h3>2. Information Collected Automatically</h3>
|
|
99
|
+
<ul>
|
|
100
|
+
<li>
|
|
101
|
+
<strong>Usage Analytics:</strong> Commands run, features used, error
|
|
102
|
+
logs (anonymized)
|
|
103
|
+
</li>
|
|
104
|
+
<li>
|
|
105
|
+
<strong>Technical Data:</strong> Operating system, Node.js version,
|
|
106
|
+
project structure (no source code)
|
|
107
|
+
</li>
|
|
108
|
+
<li>
|
|
109
|
+
<strong>Installation Data:</strong> npm package downloads, CLI usage
|
|
110
|
+
frequency
|
|
111
|
+
</li>
|
|
112
|
+
</ul>
|
|
113
|
+
|
|
114
|
+
<div class="highlight">
|
|
115
|
+
<h3>3. Information We Do NOT Collect</h3>
|
|
116
|
+
<ul>
|
|
117
|
+
<li>
|
|
118
|
+
<strong>Source Code:</strong> We never read, store, or transmit your
|
|
119
|
+
actual code
|
|
120
|
+
</li>
|
|
121
|
+
<li>
|
|
122
|
+
<strong>Git History:</strong> No access to your repository contents or
|
|
123
|
+
commit messages
|
|
124
|
+
</li>
|
|
125
|
+
<li>
|
|
126
|
+
<strong>Environment Variables:</strong> No collection of secrets, API
|
|
127
|
+
keys, or sensitive data
|
|
128
|
+
</li>
|
|
129
|
+
<li>
|
|
130
|
+
<strong>File Contents:</strong> Only file paths and structure, never
|
|
131
|
+
file contents
|
|
132
|
+
</li>
|
|
133
|
+
</ul>
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
<h2>How We Use Your Information</h2>
|
|
137
|
+
|
|
138
|
+
<h3>Primary Purposes</h3>
|
|
139
|
+
<ol>
|
|
140
|
+
<li>
|
|
141
|
+
<strong>Service Delivery:</strong> Provide quality automation tools and
|
|
142
|
+
dependency monitoring
|
|
143
|
+
</li>
|
|
144
|
+
<li>
|
|
145
|
+
<strong>License Validation:</strong> Verify Pro/Enterprise tier access
|
|
146
|
+
and usage limits
|
|
147
|
+
</li>
|
|
148
|
+
<li>
|
|
149
|
+
<strong>Support:</strong> Respond to questions, issues, and feature
|
|
150
|
+
requests
|
|
151
|
+
</li>
|
|
152
|
+
<li>
|
|
153
|
+
<strong>Improvement:</strong> Analyze usage patterns to enhance our
|
|
154
|
+
tools (anonymized)
|
|
155
|
+
</li>
|
|
156
|
+
</ol>
|
|
157
|
+
|
|
158
|
+
<h2>Data Sharing and Disclosure</h2>
|
|
159
|
+
|
|
160
|
+
<h3>We Share Information With:</h3>
|
|
161
|
+
<ul>
|
|
162
|
+
<li>
|
|
163
|
+
<strong>Payment Processors:</strong> Stripe for subscription billing
|
|
164
|
+
(Pro/Enterprise tiers)
|
|
165
|
+
</li>
|
|
166
|
+
<li>
|
|
167
|
+
<strong>Cloud Providers:</strong> AWS/Vercel for service hosting
|
|
168
|
+
(encrypted data only)
|
|
169
|
+
</li>
|
|
170
|
+
<li>
|
|
171
|
+
<strong>Analytics Services:</strong> Anonymous usage statistics only
|
|
172
|
+
</li>
|
|
173
|
+
</ul>
|
|
174
|
+
|
|
175
|
+
<div class="highlight">
|
|
176
|
+
<h3>We Do NOT Share:</h3>
|
|
177
|
+
<ul>
|
|
178
|
+
<li><strong>Personal data with advertisers</strong> or data brokers</li>
|
|
179
|
+
<li>
|
|
180
|
+
<strong>Project details or technical information</strong> with third
|
|
181
|
+
parties
|
|
182
|
+
</li>
|
|
183
|
+
<li>
|
|
184
|
+
<strong>Any data for marketing purposes</strong> without explicit
|
|
185
|
+
consent
|
|
186
|
+
</li>
|
|
187
|
+
</ul>
|
|
188
|
+
</div>
|
|
189
|
+
|
|
190
|
+
<h2>Your Privacy Rights</h2>
|
|
191
|
+
|
|
192
|
+
<div class="rights-list">
|
|
193
|
+
<h3>Rights Available to All Users</h3>
|
|
194
|
+
<ul>
|
|
195
|
+
<li><strong>Access:</strong> Request copy of your personal data</li>
|
|
196
|
+
<li>
|
|
197
|
+
<strong>Correction:</strong> Update inaccurate or incomplete
|
|
198
|
+
information
|
|
199
|
+
</li>
|
|
200
|
+
<li><strong>Deletion:</strong> Request account and data deletion</li>
|
|
201
|
+
<li>
|
|
202
|
+
<strong>Portability:</strong> Export your data in machine-readable
|
|
203
|
+
format
|
|
204
|
+
</li>
|
|
205
|
+
<li>
|
|
206
|
+
<strong>Opt-out:</strong> Unsubscribe from marketing communications
|
|
207
|
+
</li>
|
|
208
|
+
</ul>
|
|
209
|
+
|
|
210
|
+
<h3>How to Exercise Rights</h3>
|
|
211
|
+
<p>
|
|
212
|
+
Email your request to <strong>[contact email]</strong> with subject
|
|
213
|
+
"Privacy Request"
|
|
214
|
+
</p>
|
|
215
|
+
<p>
|
|
216
|
+
<strong>Response Time:</strong> 30 days maximum, typically within 5
|
|
217
|
+
business days
|
|
218
|
+
</p>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
<h2>Data Security and Storage</h2>
|
|
222
|
+
|
|
223
|
+
<h3>Security Measures</h3>
|
|
224
|
+
<ul>
|
|
225
|
+
<li>
|
|
226
|
+
<strong>Encryption:</strong> All data encrypted in transit (TLS 1.3) and
|
|
227
|
+
at rest (AES-256)
|
|
228
|
+
</li>
|
|
229
|
+
<li>
|
|
230
|
+
<strong>Access Controls:</strong> Strict authentication and
|
|
231
|
+
authorization protocols
|
|
232
|
+
</li>
|
|
233
|
+
<li>
|
|
234
|
+
<strong>Regular Audits:</strong> Quarterly security assessments and
|
|
235
|
+
vulnerability scans
|
|
236
|
+
</li>
|
|
237
|
+
<li>
|
|
238
|
+
<strong>Incident Response:</strong> 24-hour breach notification
|
|
239
|
+
procedures
|
|
240
|
+
</li>
|
|
241
|
+
</ul>
|
|
242
|
+
|
|
243
|
+
<h3>Data Retention</h3>
|
|
244
|
+
<ul>
|
|
245
|
+
<li>
|
|
246
|
+
<strong>Account Data:</strong> Retained while account is active plus 30
|
|
247
|
+
days after cancellation
|
|
248
|
+
</li>
|
|
249
|
+
<li>
|
|
250
|
+
<strong>Usage Analytics:</strong> Aggregated and anonymized, retained
|
|
251
|
+
for 2 years maximum
|
|
252
|
+
</li>
|
|
253
|
+
<li><strong>Support Data:</strong> Deleted 1 year after case closure</li>
|
|
254
|
+
</ul>
|
|
255
|
+
|
|
256
|
+
<h2>California Privacy Rights (CCPA)</h2>
|
|
257
|
+
<p><strong>We do not sell personal information and never have.</strong></p>
|
|
258
|
+
|
|
259
|
+
<h3>California Consumer Rights</h3>
|
|
260
|
+
<ul>
|
|
261
|
+
<li>
|
|
262
|
+
<strong>Know:</strong> Categories of personal information collected and
|
|
263
|
+
shared
|
|
264
|
+
</li>
|
|
265
|
+
<li><strong>Delete:</strong> Request deletion of personal information</li>
|
|
266
|
+
<li><strong>Opt-Out:</strong> Prevent sale of personal information</li>
|
|
267
|
+
<li>
|
|
268
|
+
<strong>Non-Discrimination:</strong> Equal service regardless of privacy
|
|
269
|
+
choices
|
|
270
|
+
</li>
|
|
271
|
+
</ul>
|
|
272
|
+
|
|
273
|
+
<h2>European Privacy Rights (GDPR)</h2>
|
|
274
|
+
|
|
275
|
+
<h3>Legal Basis for Processing</h3>
|
|
276
|
+
<ul>
|
|
277
|
+
<li>
|
|
278
|
+
<strong>Contract Performance:</strong> Providing our services to you
|
|
279
|
+
</li>
|
|
280
|
+
<li>
|
|
281
|
+
<strong>Legitimate Interest:</strong> Improving our product, security,
|
|
282
|
+
support
|
|
283
|
+
</li>
|
|
284
|
+
<li>
|
|
285
|
+
<strong>Legal Obligation:</strong> Tax records, regulatory compliance
|
|
286
|
+
</li>
|
|
287
|
+
<li>
|
|
288
|
+
<strong>Consent:</strong> Marketing communications (opt-in required)
|
|
289
|
+
</li>
|
|
290
|
+
</ul>
|
|
291
|
+
|
|
292
|
+
<h2>Children's Privacy</h2>
|
|
293
|
+
<p>
|
|
294
|
+
Create Quality Automation is intended for professional software
|
|
295
|
+
developers. We do not knowingly collect personal information from children
|
|
296
|
+
under 13 years old.
|
|
297
|
+
</p>
|
|
298
|
+
|
|
299
|
+
<h2>Changes to This Policy</h2>
|
|
300
|
+
<p>
|
|
301
|
+
We may update this Privacy Policy to reflect changes in our practices or
|
|
302
|
+
applicable law. Material changes will receive 30-day advance notice via
|
|
303
|
+
email.
|
|
304
|
+
</p>
|
|
305
|
+
|
|
306
|
+
<h2>Contact Us</h2>
|
|
307
|
+
<div class="contact-info">
|
|
308
|
+
<p>For privacy questions, concerns, or requests:</p>
|
|
309
|
+
<p>
|
|
310
|
+
<strong>Email:</strong> [contact email needed]<br />
|
|
311
|
+
<strong>Subject Line:</strong> "Privacy Policy Inquiry"<br />
|
|
312
|
+
<strong>Response Time:</strong> 5 business days maximum
|
|
313
|
+
</p>
|
|
314
|
+
</div>
|
|
315
|
+
|
|
316
|
+
<hr style="margin: 40px 0; border: 1px solid #e5e7eb" />
|
|
317
|
+
<p class="last-updated">
|
|
318
|
+
<em
|
|
319
|
+
>This Privacy Policy is designed to comply with GDPR, CCPA, and other
|
|
320
|
+
applicable privacy laws. It was last reviewed on November 22, 2025.</em
|
|
321
|
+
>
|
|
322
|
+
</p>
|
|
323
|
+
</body>
|
|
324
|
+
</html>
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# Privacy Policy
|
|
2
|
+
|
|
3
|
+
**Effective Date:** November 22, 2025
|
|
4
|
+
**Last Updated:** November 22, 2025
|
|
5
|
+
|
|
6
|
+
## Introduction
|
|
7
|
+
|
|
8
|
+
Create Quality Automation ("we," "our," or "us") respects your privacy and is committed to protecting your personal data. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our software development tool and related services.
|
|
9
|
+
|
|
10
|
+
**Contact Information:**
|
|
11
|
+
|
|
12
|
+
- **Service Provider:** Brett Stark
|
|
13
|
+
- **Email:** [contact email needed]
|
|
14
|
+
- **Website:** https://github.com/brettstark73/quality-automation-template
|
|
15
|
+
|
|
16
|
+
## Information We Collect
|
|
17
|
+
|
|
18
|
+
### 1. Information You Provide Directly
|
|
19
|
+
|
|
20
|
+
- **Account Information:** Email address, name, company details (for Pro/Enterprise tiers)
|
|
21
|
+
- **Payment Information:** Billing details processed securely through Stripe
|
|
22
|
+
- **Support Communications:** Messages, bug reports, feature requests
|
|
23
|
+
|
|
24
|
+
### 2. Information Collected Automatically
|
|
25
|
+
|
|
26
|
+
- **Usage Analytics:** Commands run, features used, error logs (anonymized)
|
|
27
|
+
- **Technical Data:** Operating system, Node.js version, project structure (no source code)
|
|
28
|
+
- **Installation Data:** npm package downloads, CLI usage frequency
|
|
29
|
+
|
|
30
|
+
### 3. Information We Do NOT Collect
|
|
31
|
+
|
|
32
|
+
- **Source Code:** We never read, store, or transmit your actual code
|
|
33
|
+
- **Git History:** No access to your repository contents or commit messages
|
|
34
|
+
- **Environment Variables:** No collection of secrets, API keys, or sensitive data
|
|
35
|
+
- **File Contents:** Only file paths and structure, never file contents
|
|
36
|
+
|
|
37
|
+
## How We Use Your Information
|
|
38
|
+
|
|
39
|
+
### Primary Purposes
|
|
40
|
+
|
|
41
|
+
1. **Service Delivery:** Provide quality automation tools and dependency monitoring
|
|
42
|
+
2. **License Validation:** Verify Pro/Enterprise tier access and usage limits
|
|
43
|
+
3. **Support:** Respond to questions, issues, and feature requests
|
|
44
|
+
4. **Improvement:** Analyze usage patterns to enhance our tools (anonymized)
|
|
45
|
+
|
|
46
|
+
### Secondary Purposes
|
|
47
|
+
|
|
48
|
+
- **Security:** Detect and prevent abuse, unauthorized access
|
|
49
|
+
- **Legal Compliance:** Meet tax, regulatory, and legal obligations
|
|
50
|
+
- **Marketing:** Send product updates and feature announcements (opt-out available)
|
|
51
|
+
|
|
52
|
+
## Data Sharing and Disclosure
|
|
53
|
+
|
|
54
|
+
### We Share Information With:
|
|
55
|
+
|
|
56
|
+
- **Payment Processors:** Stripe for subscription billing (Pro/Enterprise tiers)
|
|
57
|
+
- **Cloud Providers:** AWS/Vercel for service hosting (encrypted data only)
|
|
58
|
+
- **Analytics Services:** Anonymous usage statistics only
|
|
59
|
+
|
|
60
|
+
### We Do NOT Share:
|
|
61
|
+
|
|
62
|
+
- **Personal data with advertisers** or data brokers
|
|
63
|
+
- **Project details or technical information** with third parties
|
|
64
|
+
- **Any data for marketing purposes** without explicit consent
|
|
65
|
+
|
|
66
|
+
### Legal Disclosures Only When Required:
|
|
67
|
+
|
|
68
|
+
- Court orders or legal process
|
|
69
|
+
- Protection of our rights and safety
|
|
70
|
+
- Prevention of fraud or illegal activity
|
|
71
|
+
|
|
72
|
+
## Data Security and Storage
|
|
73
|
+
|
|
74
|
+
### Security Measures
|
|
75
|
+
|
|
76
|
+
- **Encryption:** All data encrypted in transit (TLS 1.3) and at rest (AES-256)
|
|
77
|
+
- **Access Controls:** Strict authentication and authorization protocols
|
|
78
|
+
- **Regular Audits:** Quarterly security assessments and vulnerability scans
|
|
79
|
+
- **Incident Response:** 24-hour breach notification procedures
|
|
80
|
+
|
|
81
|
+
### Data Retention
|
|
82
|
+
|
|
83
|
+
- **Account Data:** Retained while account is active plus 30 days after cancellation
|
|
84
|
+
- **Usage Analytics:** Aggregated and anonymized, retained for 2 years maximum
|
|
85
|
+
- **Support Data:** Deleted 1 year after case closure
|
|
86
|
+
- **Payment Records:** Retained as required by law (typically 7 years)
|
|
87
|
+
|
|
88
|
+
## Your Privacy Rights
|
|
89
|
+
|
|
90
|
+
### Rights Available to All Users
|
|
91
|
+
|
|
92
|
+
- **Access:** Request copy of your personal data
|
|
93
|
+
- **Correction:** Update inaccurate or incomplete information
|
|
94
|
+
- **Deletion:** Request account and data deletion
|
|
95
|
+
- **Portability:** Export your data in machine-readable format
|
|
96
|
+
- **Opt-out:** Unsubscribe from marketing communications
|
|
97
|
+
|
|
98
|
+
### Additional Rights (GDPR/CCPA)
|
|
99
|
+
|
|
100
|
+
- **Right to Object:** Oppose certain data processing activities
|
|
101
|
+
- **Restrict Processing:** Limit how we use your data
|
|
102
|
+
- **Withdraw Consent:** Revoke previously granted permissions
|
|
103
|
+
- **File Complaints:** Contact supervisory authorities
|
|
104
|
+
|
|
105
|
+
### How to Exercise Rights
|
|
106
|
+
|
|
107
|
+
Email your request to [contact email] with subject "Privacy Request" and include:
|
|
108
|
+
|
|
109
|
+
- Account email address
|
|
110
|
+
- Specific right you wish to exercise
|
|
111
|
+
- Identity verification (account details)
|
|
112
|
+
|
|
113
|
+
**Response Time:** 30 days maximum, typically within 5 business days
|
|
114
|
+
|
|
115
|
+
## International Data Transfers
|
|
116
|
+
|
|
117
|
+
- **Primary Storage:** United States (AWS US regions)
|
|
118
|
+
- **Legal Basis:** Standard Contractual Clauses (EU-approved)
|
|
119
|
+
- **Safeguards:** Encryption, access controls, and contractual protections
|
|
120
|
+
- **EU Representatives:** [To be added if required]
|
|
121
|
+
|
|
122
|
+
## Cookies and Tracking
|
|
123
|
+
|
|
124
|
+
### Cookies We Use
|
|
125
|
+
|
|
126
|
+
- **Essential:** Session management, security protection (cannot be disabled)
|
|
127
|
+
- **Analytics:** Anonymous usage statistics (Google Analytics alternative)
|
|
128
|
+
- **Preferences:** Remember your settings and preferences
|
|
129
|
+
|
|
130
|
+
### Third-Party Cookies
|
|
131
|
+
|
|
132
|
+
- **Stripe:** Payment processing (strictly necessary for billing)
|
|
133
|
+
- **No advertising cookies** or behavioral tracking
|
|
134
|
+
|
|
135
|
+
### Cookie Controls
|
|
136
|
+
|
|
137
|
+
- Browser settings to block/delete cookies
|
|
138
|
+
- Opt-out links provided where applicable
|
|
139
|
+
- Essential cookies required for service functionality
|
|
140
|
+
|
|
141
|
+
## Children's Privacy
|
|
142
|
+
|
|
143
|
+
Create Quality Automation is intended for professional software developers. We do not knowingly collect personal information from children under 13 years old. If we learn that we have collected information from a child under 13, we will delete it immediately.
|
|
144
|
+
|
|
145
|
+
## California Privacy Rights (CCPA)
|
|
146
|
+
|
|
147
|
+
### California Consumer Rights
|
|
148
|
+
|
|
149
|
+
- **Know:** Categories of personal information collected and shared
|
|
150
|
+
- **Delete:** Request deletion of personal information
|
|
151
|
+
- **Opt-Out:** Prevent sale of personal information (note: we don't sell data)
|
|
152
|
+
- **Non-Discrimination:** Equal service regardless of privacy choices
|
|
153
|
+
|
|
154
|
+
### Information Categories Collected (Last 12 Months)
|
|
155
|
+
|
|
156
|
+
- **Identifiers:** Email addresses, account names
|
|
157
|
+
- **Commercial Information:** Subscription plans, billing records
|
|
158
|
+
- **Internet Activity:** Feature usage, error logs (anonymized)
|
|
159
|
+
- **Professional Information:** Company name, role (voluntary)
|
|
160
|
+
|
|
161
|
+
**We do not sell personal information and never have.**
|
|
162
|
+
|
|
163
|
+
## European Privacy Rights (GDPR)
|
|
164
|
+
|
|
165
|
+
### Legal Basis for Processing
|
|
166
|
+
|
|
167
|
+
- **Contract Performance:** Providing our services to you
|
|
168
|
+
- **Legitimate Interest:** Improving our product, security, support
|
|
169
|
+
- **Legal Obligation:** Tax records, regulatory compliance
|
|
170
|
+
- **Consent:** Marketing communications (opt-in required)
|
|
171
|
+
|
|
172
|
+
### Data Protection Officer
|
|
173
|
+
|
|
174
|
+
For GDPR-specific inquiries, contact: [DPO email when required]
|
|
175
|
+
|
|
176
|
+
## Changes to This Policy
|
|
177
|
+
|
|
178
|
+
We may update this Privacy Policy to reflect changes in our practices or applicable law. Changes will be posted with updated "Last Updated" date.
|
|
179
|
+
|
|
180
|
+
**Material Changes:** 30-day advance notice via email
|
|
181
|
+
**Minor Updates:** Posted immediately with date notation
|
|
182
|
+
|
|
183
|
+
## Contact Us
|
|
184
|
+
|
|
185
|
+
For privacy questions, concerns, or requests:
|
|
186
|
+
|
|
187
|
+
**Email:** [contact email needed]
|
|
188
|
+
**Subject Line:** "Privacy Policy Inquiry"
|
|
189
|
+
**Response Time:** 5 business days maximum
|
|
190
|
+
|
|
191
|
+
**Mailing Address:**
|
|
192
|
+
[Physical address needed for legal compliance]
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
_This Privacy Policy is designed to comply with GDPR, CCPA, and other applicable privacy laws. It was last reviewed on November 22, 2025._
|