@daemux/store-automator 0.1.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 (41) hide show
  1. package/.claude-plugin/marketplace.json +19 -0
  2. package/LICENSE +21 -0
  3. package/README.md +122 -0
  4. package/bin/cli.mjs +77 -0
  5. package/package.json +33 -0
  6. package/plugins/store-automator/.claude-plugin/plugin.json +9 -0
  7. package/plugins/store-automator/agents/appstore-media-designer.md +227 -0
  8. package/plugins/store-automator/agents/appstore-meta-creator.md +185 -0
  9. package/plugins/store-automator/agents/appstore-reviewer.md +180 -0
  10. package/src/dependency-check.mjs +26 -0
  11. package/src/install.mjs +140 -0
  12. package/src/mcp-setup.mjs +93 -0
  13. package/src/prompt.mjs +55 -0
  14. package/src/settings.mjs +106 -0
  15. package/src/templates.mjs +55 -0
  16. package/src/uninstall.mjs +100 -0
  17. package/src/utils.mjs +46 -0
  18. package/templates/CLAUDE.md.template +219 -0
  19. package/templates/Gemfile.template +2 -0
  20. package/templates/ci.config.yaml.template +51 -0
  21. package/templates/codemagic.template.yaml +289 -0
  22. package/templates/fastlane/android/Appfile.template +2 -0
  23. package/templates/fastlane/android/Fastfile.template +36 -0
  24. package/templates/fastlane/android/Pluginfile.template +1 -0
  25. package/templates/fastlane/app_rating_config.json.template +17 -0
  26. package/templates/fastlane/iap_config.json.template +53 -0
  27. package/templates/fastlane/ios/Appfile.template +2 -0
  28. package/templates/fastlane/ios/Deliverfile.template +1 -0
  29. package/templates/fastlane/ios/Fastfile.template +47 -0
  30. package/templates/fastlane/ios/Pluginfile.template +1 -0
  31. package/templates/fastlane/ios/Snapfile.template +26 -0
  32. package/templates/scripts/check_changed.sh +23 -0
  33. package/templates/scripts/check_google_play.py +139 -0
  34. package/templates/scripts/generate.sh +77 -0
  35. package/templates/scripts/manage_version_ios.py +168 -0
  36. package/templates/web/deploy-cloudflare.mjs +240 -0
  37. package/templates/web/marketing.html +121 -0
  38. package/templates/web/privacy.html +119 -0
  39. package/templates/web/styles.css +377 -0
  40. package/templates/web/support.html +156 -0
  41. package/templates/web/terms.html +101 -0
@@ -0,0 +1,101 @@
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>Terms of Service - ${APP_NAME}</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <nav class="nav">
11
+ <div class="container">
12
+ <a href="/" class="nav-brand">${APP_NAME}</a>
13
+ <ul class="nav-links">
14
+ <li><a href="/">Home</a></li>
15
+ <li><a href="support.html">Support</a></li>
16
+ <li><a href="privacy.html">Privacy</a></li>
17
+ </ul>
18
+ </div>
19
+ </nav>
20
+
21
+ <div class="legal">
22
+ <h1>Terms of Service</h1>
23
+ <p class="updated">Last updated: ${LAST_UPDATED}</p>
24
+
25
+ <p>Please read these Terms of Service ("Terms") carefully before using ${APP_NAME} ("the App") operated by ${COMPANY_NAME} ("we", "our", or "us").</p>
26
+
27
+ <h2>1. Acceptance of Terms</h2>
28
+ <p>By downloading, installing, or using ${APP_NAME}, you agree to be bound by these Terms. If you do not agree to these Terms, do not use the App.</p>
29
+
30
+ <h2>2. Use of the App</h2>
31
+ <p>You may use ${APP_NAME} for your personal, non-commercial use, subject to these Terms. You agree not to:</p>
32
+ <ul>
33
+ <li>Use the App for any unlawful purpose</li>
34
+ <li>Attempt to reverse engineer, decompile, or disassemble the App</li>
35
+ <li>Interfere with or disrupt the App's servers or networks</li>
36
+ <li>Impersonate any person or entity</li>
37
+ <li>Transmit any viruses, malware, or harmful code</li>
38
+ <li>Use the App to infringe on the rights of others</li>
39
+ </ul>
40
+
41
+ <h2>3. Account Registration</h2>
42
+ <p>You may be required to create an account to use certain features. You are responsible for maintaining the confidentiality of your account credentials and for all activities under your account. You agree to provide accurate and complete information.</p>
43
+
44
+ <h2>4. Subscriptions and Purchases</h2>
45
+ <p>Some features of ${APP_NAME} may require a paid subscription or in-app purchase.</p>
46
+ <ul>
47
+ <li><strong>Billing:</strong> Subscriptions are billed through your App Store or Google Play account</li>
48
+ <li><strong>Auto-Renewal:</strong> Subscriptions automatically renew unless canceled at least 24 hours before the end of the current period</li>
49
+ <li><strong>Cancellation:</strong> You can cancel subscriptions through your device's subscription settings</li>
50
+ <li><strong>Refunds:</strong> Refund requests are handled by Apple (App Store) or Google (Google Play) according to their respective policies</li>
51
+ <li><strong>Free Trials:</strong> If offered, free trials convert to paid subscriptions unless canceled before the trial ends</li>
52
+ </ul>
53
+
54
+ <h2>5. Intellectual Property</h2>
55
+ <p>The App and its original content, features, and functionality are owned by ${COMPANY_NAME} and are protected by international copyright, trademark, patent, trade secret, and other intellectual property laws.</p>
56
+
57
+ <h2>6. User Content</h2>
58
+ <p>You retain ownership of content you create or upload. By submitting content, you grant us a non-exclusive, worldwide, royalty-free license to use, reproduce, and display such content solely for operating and improving the App.</p>
59
+
60
+ <h2>7. Privacy</h2>
61
+ <p>Your use of ${APP_NAME} is also governed by our <a href="privacy.html">Privacy Policy</a>, which is incorporated into these Terms by reference.</p>
62
+
63
+ <h2>8. Disclaimers</h2>
64
+ <p>THE APP IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED. WE DO NOT WARRANT THAT THE APP WILL BE UNINTERRUPTED, ERROR-FREE, OR SECURE.</p>
65
+
66
+ <h2>9. Limitation of Liability</h2>
67
+ <p>TO THE MAXIMUM EXTENT PERMITTED BY LAW, ${COMPANY_NAME} SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR DATA, ARISING FROM YOUR USE OF THE APP.</p>
68
+
69
+ <h2>10. Indemnification</h2>
70
+ <p>You agree to indemnify and hold harmless ${COMPANY_NAME} from any claims, damages, or expenses arising from your use of the App or violation of these Terms.</p>
71
+
72
+ <h2>11. Modifications</h2>
73
+ <p>We reserve the right to modify these Terms at any time. We will notify users of material changes through the App or by email. Continued use of the App after changes constitutes acceptance of the updated Terms.</p>
74
+
75
+ <h2>12. Termination</h2>
76
+ <p>We may terminate or suspend your access to the App immediately, without prior notice, for any reason, including breach of these Terms. Upon termination, your right to use the App ceases immediately.</p>
77
+
78
+ <h2>13. Governing Law</h2>
79
+ <p>These Terms shall be governed by and construed in accordance with the laws of the ${JURISDICTION}, without regard to its conflict of law provisions.</p>
80
+
81
+ <h2>14. Severability</h2>
82
+ <p>If any provision of these Terms is found to be unenforceable, the remaining provisions will remain in full force and effect.</p>
83
+
84
+ <h2>15. Contact Us</h2>
85
+ <p>If you have questions about these Terms, please contact us at:</p>
86
+ <p><a href="mailto:${CONTACT_EMAIL}">${CONTACT_EMAIL}</a></p>
87
+ <p>${COMPANY_NAME}</p>
88
+ </div>
89
+
90
+ <footer class="footer">
91
+ <div class="container">
92
+ <div class="footer-bottom">
93
+ &copy; ${CURRENT_YEAR} ${COMPANY_NAME}. All rights reserved.
94
+ | <a href="privacy.html">Privacy</a>
95
+ | <a href="terms.html">Terms</a>
96
+ | <a href="support.html">Support</a>
97
+ </div>
98
+ </div>
99
+ </footer>
100
+ </body>
101
+ </html>