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.
Files changed (67) hide show
  1. package/.editorconfig +12 -0
  2. package/.github/CLAUDE_MD_AUTOMATION.md +248 -0
  3. package/.github/PROGRESSIVE_QUALITY_IMPLEMENTATION.md +408 -0
  4. package/.github/PROGRESSIVE_QUALITY_PROPOSAL.md +443 -0
  5. package/.github/RELEASE_CHECKLIST.md +100 -0
  6. package/.github/dependabot.yml +50 -0
  7. package/.github/git-sync.sh +48 -0
  8. package/.github/workflows/claude-md-validation.yml +82 -0
  9. package/.github/workflows/nightly-gitleaks-verification.yml +176 -0
  10. package/.github/workflows/pnpm-ci.yml.example +53 -0
  11. package/.github/workflows/python-ci.yml.example +69 -0
  12. package/.github/workflows/quality-legacy.yml.backup +165 -0
  13. package/.github/workflows/quality-progressive.yml.example +291 -0
  14. package/.github/workflows/quality.yml +436 -0
  15. package/.github/workflows/release.yml +53 -0
  16. package/.nvmrc +1 -0
  17. package/.prettierignore +14 -0
  18. package/.prettierrc +9 -0
  19. package/.stylelintrc.json +5 -0
  20. package/README.md +212 -0
  21. package/config/.lighthouserc.js +45 -0
  22. package/config/.pre-commit-config.yaml +66 -0
  23. package/config/constants.js +128 -0
  24. package/config/defaults.js +124 -0
  25. package/config/pyproject.toml +124 -0
  26. package/config/quality-config.schema.json +97 -0
  27. package/config/quality-python.yml +89 -0
  28. package/config/requirements-dev.txt +15 -0
  29. package/create-saas-monetization.js +1465 -0
  30. package/eslint.config.cjs +117 -0
  31. package/eslint.config.ts.cjs +99 -0
  32. package/legal/README.md +106 -0
  33. package/legal/copyright.md +76 -0
  34. package/legal/disclaimer.md +146 -0
  35. package/legal/privacy-policy.html +324 -0
  36. package/legal/privacy-policy.md +196 -0
  37. package/legal/terms-of-service.md +224 -0
  38. package/lib/billing-dashboard.html +645 -0
  39. package/lib/config-validator.js +163 -0
  40. package/lib/dependency-monitoring-basic.js +185 -0
  41. package/lib/dependency-monitoring-premium.js +1490 -0
  42. package/lib/error-reporter.js +444 -0
  43. package/lib/interactive/prompt.js +128 -0
  44. package/lib/interactive/questions.js +146 -0
  45. package/lib/license-validator.js +403 -0
  46. package/lib/licensing.js +989 -0
  47. package/lib/package-utils.js +187 -0
  48. package/lib/project-maturity.js +516 -0
  49. package/lib/security-enhancements.js +340 -0
  50. package/lib/setup-enhancements.js +317 -0
  51. package/lib/smart-strategy-generator.js +344 -0
  52. package/lib/telemetry.js +323 -0
  53. package/lib/template-loader.js +252 -0
  54. package/lib/typescript-config-generator.js +210 -0
  55. package/lib/ui-helpers.js +74 -0
  56. package/lib/validation/base-validator.js +174 -0
  57. package/lib/validation/cache-manager.js +158 -0
  58. package/lib/validation/config-security.js +741 -0
  59. package/lib/validation/documentation.js +326 -0
  60. package/lib/validation/index.js +186 -0
  61. package/lib/validation/validation-factory.js +153 -0
  62. package/lib/validation/workflow-validation.js +172 -0
  63. package/lib/yaml-utils.js +120 -0
  64. package/marketing/beta-user-email-campaign.md +372 -0
  65. package/marketing/landing-page.html +721 -0
  66. package/package.json +165 -0
  67. package/setup.js +2076 -0
@@ -0,0 +1,224 @@
1
+ # Terms of Service
2
+
3
+ **Effective Date:** November 22, 2025
4
+ **Last Updated:** November 22, 2025
5
+
6
+ ## 1. Acceptance of Terms
7
+
8
+ By installing, accessing, or using Create Quality Automation ("Service"), you ("User," "you," or "your") agree to be bound by these Terms of Service ("Terms"). If you do not agree to these Terms, do not use the Service.
9
+
10
+ **Service Provider:** Brett Stark ("Company," "we," "our," or "us")
11
+ **Contact:** [contact email needed]
12
+
13
+ ## 2. Description of Service
14
+
15
+ Create Quality Automation is a command-line tool that provides:
16
+
17
+ - Code quality automation (linting, formatting, pre-commit hooks)
18
+ - Dependency monitoring and management
19
+ - Security scanning capabilities
20
+ - GitHub Actions workflow generation
21
+ - Project configuration templates
22
+
23
+ ## 3. License and Intellectual Property
24
+
25
+ ### 3.1 License Grant
26
+
27
+ We grant you a limited, non-exclusive, non-transferable, revocable license to use the Service in accordance with these Terms and your subscription plan (Free, Pro, or Enterprise).
28
+
29
+ ### 3.2 Intellectual Property Rights
30
+
31
+ - **Our Rights:** All software, documentation, trademarks, and proprietary methods remain our exclusive property
32
+ - **Your Rights:** You retain all rights to your source code and project files
33
+ - **Restrictions:** You may not reverse engineer, decompile, or create derivative works of our Service
34
+
35
+ ### 3.3 Feedback
36
+
37
+ Any suggestions, feedback, or improvements you provide become our property and may be incorporated into the Service without compensation.
38
+
39
+ ## 4. User Responsibilities and Restrictions
40
+
41
+ ### 4.1 Acceptable Use
42
+
43
+ You agree to use the Service only for lawful purposes and in accordance with these Terms. You will NOT:
44
+
45
+ - Use the Service for any illegal, harmful, or unauthorized purpose
46
+ - Attempt to gain unauthorized access to our systems or other users' data
47
+ - Interfere with or disrupt the Service's functionality
48
+ - Use the Service to develop competing products or services
49
+ - Share your account credentials with others
50
+ - Exceed usage limits specified in your subscription plan
51
+
52
+ ### 4.2 Account Security
53
+
54
+ - You are responsible for maintaining the confidentiality of your account credentials
55
+ - You are liable for all activities that occur under your account
56
+ - You must notify us immediately of any unauthorized use of your account
57
+
58
+ ### 4.3 Compliance
59
+
60
+ You are responsible for ensuring your use of the Service complies with all applicable laws, regulations, and third-party rights.
61
+
62
+ ## 5. Subscription Plans and Payment
63
+
64
+ ### 5.1 Subscription Tiers
65
+
66
+ - **Free Tier:** Basic features as described in our documentation
67
+ - **Pro Tier:** $39/month with advanced features
68
+ - **Enterprise Tier:** $197/month with premium support and features
69
+
70
+ ### 5.2 Payment Terms
71
+
72
+ - **Billing Cycle:** Monthly subscription charges
73
+ - **Payment Method:** Processed securely through Stripe
74
+ - **Auto-Renewal:** Subscriptions automatically renew unless cancelled
75
+ - **Price Changes:** 30-day advance notice for subscription price increases
76
+
77
+ ### 5.3 Refunds and Cancellation
78
+
79
+ - **Cancellation:** You may cancel anytime through your account settings
80
+ - **Effective Date:** Cancellation effective at end of current billing cycle
81
+ - **No Refunds:** All payments are non-refundable except as required by law
82
+ - **Downgrade:** Pro/Enterprise accounts revert to Free tier upon cancellation
83
+
84
+ ## 6. Service Availability and Support
85
+
86
+ ### 6.1 Service Availability
87
+
88
+ - **Uptime Goal:** We strive for high availability but make no guarantees
89
+ - **Maintenance:** Scheduled maintenance windows may cause temporary unavailability
90
+ - **Third-Party Dependencies:** Service depends on npm, GitHub, and other external services
91
+
92
+ ### 6.2 Support
93
+
94
+ - **Free Tier:** Community support through GitHub issues
95
+ - **Pro Tier:** Email support with 48-hour response time goal
96
+ - **Enterprise Tier:** Priority support with 24-hour response time goal
97
+
98
+ ## 7. DISCLAIMERS AND LIMITATION OF LIABILITY
99
+
100
+ ### 7.1 SERVICE WARRANTIES DISCLAIMED
101
+
102
+ THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO:
103
+
104
+ - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT
105
+ - UNINTERRUPTED, ERROR-FREE, OR SECURE OPERATION
106
+ - ACCURACY, RELIABILITY, OR COMPLETENESS OF RESULTS
107
+ - COMPATIBILITY WITH YOUR SYSTEMS OR SOFTWARE
108
+
109
+ ### 7.2 LIMITATION OF LIABILITY
110
+
111
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL WE BE LIABLE FOR:
112
+
113
+ - **DIRECT DAMAGES:** Exceeding the amount you paid in the 12 months preceding the claim
114
+ - **INDIRECT DAMAGES:** Including but not limited to lost profits, data loss, business interruption, or consequential damages
115
+ - **THIRD-PARTY CLAIMS:** Arising from your use of the Service
116
+ - **FORCE MAJEURE:** Events beyond our reasonable control
117
+
118
+ ### 7.3 MAXIMUM LIABILITY
119
+
120
+ OUR TOTAL LIABILITY TO YOU FOR ALL CLAIMS RELATING TO THE SERVICE SHALL NOT EXCEED THE TOTAL AMOUNT YOU PAID US IN THE 12 MONTHS IMMEDIATELY PRECEDING THE EVENT GIVING RISE TO LIABILITY.
121
+
122
+ ## 8. Indemnification
123
+
124
+ You agree to indemnify, defend, and hold harmless the Company and its officers, directors, employees, and agents from and against any and all claims, damages, losses, costs, and expenses (including reasonable attorneys' fees) arising from or relating to:
125
+
126
+ - Your use or misuse of the Service
127
+ - Your violation of these Terms
128
+ - Your violation of any third-party rights
129
+ - Any content or data you submit through the Service
130
+
131
+ ## 9. Data and Privacy
132
+
133
+ ### 9.1 Data Processing
134
+
135
+ - **Your Data:** You retain ownership of your project files and source code
136
+ - **Service Data:** We may collect usage analytics as described in our Privacy Policy
137
+ - **Security:** We implement reasonable security measures but cannot guarantee absolute security
138
+
139
+ ### 9.2 Data Loss
140
+
141
+ - **Backup Responsibility:** You are solely responsible for backing up your data
142
+ - **No Backup Guarantee:** We are not responsible for data loss or corruption
143
+ - **Service Limitations:** Free tier includes no data recovery services
144
+
145
+ ## 10. Termination
146
+
147
+ ### 10.1 Termination by You
148
+
149
+ You may terminate your account at any time by cancelling your subscription.
150
+
151
+ ### 10.2 Termination by Us
152
+
153
+ We may terminate or suspend your access immediately, without prior notice, if you:
154
+
155
+ - Breach these Terms
156
+ - Engage in fraudulent or illegal activities
157
+ - Abuse or misuse the Service
158
+ - Fail to pay subscription fees
159
+
160
+ ### 10.3 Effect of Termination
161
+
162
+ Upon termination:
163
+
164
+ - Your right to use the Service ends immediately
165
+ - You remain liable for all charges incurred prior to termination
166
+ - Sections 3, 7, 8, 11, and 12 survive termination
167
+
168
+ ## 11. Modifications to Terms
169
+
170
+ ### 11.1 Changes to Terms
171
+
172
+ We reserve the right to modify these Terms at any time. Changes will be effective:
173
+
174
+ - **Material Changes:** 30 days after notice via email
175
+ - **Non-Material Changes:** Immediately upon posting
176
+
177
+ ### 11.2 Continued Use
178
+
179
+ Your continued use of the Service after changes constitutes acceptance of the new Terms.
180
+
181
+ ## 12. General Provisions
182
+
183
+ ### 12.1 Governing Law
184
+
185
+ These Terms are governed by the laws of [State/Country needed], without regard to conflict of law principles.
186
+
187
+ ### 12.2 Jurisdiction
188
+
189
+ Any disputes arising from these Terms will be resolved exclusively in the courts of [Jurisdiction needed].
190
+
191
+ ### 12.3 Severability
192
+
193
+ If any provision of these Terms is deemed invalid, the remaining provisions remain in full force and effect.
194
+
195
+ ### 12.4 Entire Agreement
196
+
197
+ These Terms, together with our Privacy Policy, constitute the entire agreement between you and us.
198
+
199
+ ### 12.5 Force Majeure
200
+
201
+ We are not liable for any failure to perform due to causes beyond our reasonable control, including natural disasters, war, terrorism, or government actions.
202
+
203
+ ### 12.6 Assignment
204
+
205
+ You may not assign your rights under these Terms. We may assign our rights to any affiliate or successor.
206
+
207
+ ### 12.7 No Waiver
208
+
209
+ Our failure to enforce any provision does not constitute a waiver of that provision.
210
+
211
+ ## 13. Contact Information
212
+
213
+ For questions about these Terms:
214
+
215
+ - **Email:** [contact email needed]
216
+ - **Subject:** "Terms of Service Inquiry"
217
+ - **Response Time:** 5 business days
218
+
219
+ **Mailing Address:**
220
+ [Physical address needed for legal compliance]
221
+
222
+ ---
223
+
224
+ _These Terms of Service provide comprehensive legal protection and comply with standard SaaS industry practices. Last reviewed on November 22, 2025._