ginskill-init 1.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 (92) hide show
  1. package/README.md +77 -0
  2. package/agents/developer.md +56 -0
  3. package/agents/frontend-design.md +69 -0
  4. package/agents/mobile-reviewer.md +36 -0
  5. package/agents/review-code.md +49 -0
  6. package/agents/security-scanner.md +50 -0
  7. package/agents/tester.md +72 -0
  8. package/bin/cli.js +226 -0
  9. package/package.json +20 -0
  10. package/skills/ai-asset-generator/SKILL.md +255 -0
  11. package/skills/ai-asset-generator/docs/gen-image.md +274 -0
  12. package/skills/ai-asset-generator/docs/genvideo.md +341 -0
  13. package/skills/ai-asset-generator/docs/remove-background.md +19 -0
  14. package/skills/ai-asset-generator/generate-credit-assets.mjs +180 -0
  15. package/skills/ai-asset-generator/generate-ginbrowser-assets.mjs +242 -0
  16. package/skills/ai-asset-generator/generate-sty-icon.mjs +149 -0
  17. package/skills/ai-asset-generator/lib/bg-remove.mjs +34 -0
  18. package/skills/ai-asset-generator/lib/env.mjs +38 -0
  19. package/skills/ai-asset-generator/lib/kie-client.mjs +88 -0
  20. package/skills/ai-asset-generator/scripts/scaffold-generator.mjs +203 -0
  21. package/skills/ai-build-ai/SKILL.md +124 -0
  22. package/skills/ai-build-ai/docs/agent-teams.md +293 -0
  23. package/skills/ai-build-ai/docs/checkpointing.md +161 -0
  24. package/skills/ai-build-ai/docs/create-agent.md +399 -0
  25. package/skills/ai-build-ai/docs/create-mcp.md +395 -0
  26. package/skills/ai-build-ai/docs/create-skill.md +299 -0
  27. package/skills/ai-build-ai/docs/headless-mode.md +614 -0
  28. package/skills/ai-build-ai/docs/hooks.md +578 -0
  29. package/skills/ai-build-ai/docs/memory-claude-md.md +375 -0
  30. package/skills/ai-build-ai/docs/output-styles.md +208 -0
  31. package/skills/ai-build-ai/docs/overview.md +162 -0
  32. package/skills/ai-build-ai/docs/permissions.md +391 -0
  33. package/skills/ai-build-ai/docs/plugins.md +396 -0
  34. package/skills/ai-build-ai/docs/sandbox.md +262 -0
  35. package/skills/ai-build-ai/scripts/load-tutorial.sh +54 -0
  36. package/skills/icon-generator/SKILL.md +270 -0
  37. package/skills/mobile-app-review/SKILL.md +321 -0
  38. package/skills/mobile-app-review/references/apple-review.md +132 -0
  39. package/skills/mobile-app-review/references/google-play-review.md +203 -0
  40. package/skills/mongodb/SKILL.md +667 -0
  41. package/skills/mongodb/references/mongoose-patterns.md +368 -0
  42. package/skills/nestjs-architecture/SKILL.md +1086 -0
  43. package/skills/nestjs-architecture/references/advanced-patterns.md +590 -0
  44. package/skills/performance/SKILL.md +509 -0
  45. package/skills/react-fsd-architecture/SKILL.md +693 -0
  46. package/skills/react-fsd-architecture/references/fsd-patterns.md +747 -0
  47. package/skills/react-query/SKILL.md +685 -0
  48. package/skills/react-query/references/query-patterns.md +365 -0
  49. package/skills/review-code/SKILL.md +321 -0
  50. package/skills/review-code/references/clean-code-principles.md +395 -0
  51. package/skills/review-code/references/frontend-patterns.md +136 -0
  52. package/skills/review-code/references/nestjs-patterns.md +184 -0
  53. package/skills/review-code/scripts/check-module.sh +201 -0
  54. package/skills/review-code/scripts/deep-scan.sh +604 -0
  55. package/skills/review-code/scripts/dep-check.sh +522 -0
  56. package/skills/review-code/scripts/detect-duplicates.sh +466 -0
  57. package/skills/review-code/scripts/format-check.sh +577 -0
  58. package/skills/review-code/scripts/run-review.sh +167 -0
  59. package/skills/review-code/scripts/scan-codebase.sh +152 -0
  60. package/skills/security-scanner/SKILL.md +327 -0
  61. package/skills/security-scanner/references/nestjs-security.md +260 -0
  62. package/skills/security-scanner/references/nextjs-security.md +201 -0
  63. package/skills/security-scanner/references/react-native-security.md +199 -0
  64. package/skills/security-scanner/scripts/security-scan.sh +478 -0
  65. package/skills/ui-ux-pro-max/SKILL.md +377 -0
  66. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  67. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  68. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  69. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  70. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  71. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  72. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  73. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  74. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  75. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  76. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  77. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  78. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  79. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  80. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  81. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  82. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  83. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  84. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  85. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  86. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  87. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  88. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  89. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  90. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  91. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  92. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
@@ -0,0 +1,132 @@
1
+ # Apple App Store Review Guidelines — Deep Dive
2
+
3
+ Detailed reference for Apple-specific review requirements. The main SKILL.md covers the actionable checklist — this file provides background, edge cases, and policy details.
4
+
5
+ ## Apple's Five Review Categories
6
+
7
+ Apple organizes its guidelines into five pillars:
8
+
9
+ ### 1. Safety
10
+ - Apps must not include objectionable, offensive, or harmful content
11
+ - User-generated content requires moderation tools
12
+ - Physical harm risks must be mitigated
13
+ - Apps dealing with regulated goods (alcohol, tobacco, gambling) need age gating
14
+
15
+ ### 2. Performance
16
+ - Apps must be complete and fully functional at submission
17
+ - Beta, demo, trial, or test versions are rejected
18
+ - Apps must work without modification on the current shipping OS version
19
+ - Hardware compatibility must be declared accurately
20
+
21
+ ### 3. Business
22
+ - In-app purchases for digital goods must use Apple IAP
23
+ - "Reader" apps (Spotify, Netflix) may link to external sign-up but cannot prompt in-app purchase
24
+ - Commission: 30% standard, 15% for Small Business Program (<$1M/year)
25
+ - Subscriptions must auto-renew through Apple's system
26
+ - Free apps cannot become paid; must use IAP for upgrades
27
+
28
+ ### 4. Design
29
+ - Apps must follow Human Interface Guidelines spirit (not pixel-perfect, but good UX)
30
+ - No custom UI that mimics iOS system dialogs
31
+ - Must support the latest device form factors
32
+ - App extensions and widgets must follow their specific guidelines
33
+ - Accessibility should be considered (VoiceOver, Dynamic Type)
34
+
35
+ ### 5. Legal
36
+ - Apps must comply with all applicable laws in territories where available
37
+ - Privacy policy is mandatory
38
+ - Data collection must be disclosed via App Privacy Labels
39
+ - GDPR, CCPA, and other regional privacy laws must be respected
40
+ - Developer must hold necessary licenses for regulated industries
41
+
42
+ ## Guideline Numbers That Matter Most
43
+
44
+ | Guideline | Topic | Common Issue |
45
+ |-----------|-------|-------------|
46
+ | **1.2** | User-Generated Content | Missing report/block/filter mechanisms |
47
+ | **2.1** | App Completeness | Crashes, bugs, blank screens |
48
+ | **2.3** | Accurate Metadata | Screenshots don't match app, misleading descriptions |
49
+ | **2.5.1** | Software Requirements | Using private APIs |
50
+ | **3.1.1** | In-App Purchase | Digital goods not using IAP |
51
+ | **3.1.2** | Subscriptions | Missing clear terms, no restore button |
52
+ | **4.0** | Design | Copycat apps, poor UI |
53
+ | **4.8** | Sign in with Apple | Missing when other social logins exist |
54
+ | **5.1** | Privacy | Missing policy, incorrect data labels |
55
+ | **5.1.1** | Data Collection | Undisclosed tracking or data sharing |
56
+ | **5.1.1(v)** | Account Deletion | No way to delete account from within app |
57
+
58
+ ## App Store Connect Requirements
59
+
60
+ ### App Information
61
+ - Primary language
62
+ - Bundle ID (cannot change after submission)
63
+ - SKU (your internal reference)
64
+ - Primary and secondary categories
65
+
66
+ ### Pricing & Availability
67
+ - Price tier or custom pricing
68
+ - Territory availability
69
+ - Pre-order configuration (optional)
70
+
71
+ ### App Privacy
72
+ - Privacy policy URL (required)
73
+ - App Privacy Labels questionnaire (all data types)
74
+
75
+ ### Version Information
76
+ - What's New text
77
+ - Description, keywords, support URL
78
+ - Screenshots for each device type
79
+ - App icon (1024×1024, no alpha, no rounded corners)
80
+ - App Review Information: demo account, notes, contact
81
+
82
+ ## Review Timeline & Appeals
83
+
84
+ - **90% of submissions** reviewed within 24 hours
85
+ - Rejections include specific guideline references
86
+ - **Appeal process**: Resolution Center in App Store Connect
87
+ - **Expedited review**: Available for critical bug fixes (use sparingly)
88
+ - **Guideline clarification**: Can request before building a feature
89
+
90
+ ## 2025-2026 Policy Updates
91
+
92
+ ### AI Disclosure (2025)
93
+ - Apps using external AI services must include consent modals
94
+ - Must specify the AI provider and data types shared
95
+ - User must be able to decline without losing core functionality
96
+
97
+ ### Age Ratings (July 2025)
98
+ - New tiers: 13+, 16+, 18+
99
+ - Updated questionnaire must be completed by January 31, 2026
100
+ - Apps not updated risk submission delays
101
+
102
+ ### SDK Requirements (April 2025+)
103
+ - All submissions must be built with SDKs for iOS 18
104
+ - Xcode 16+ required
105
+ - Check Apple Developer News for the latest requirements each spring
106
+
107
+ ### Alternative App Marketplaces (EU)
108
+ - Applies to EU users under the Digital Markets Act
109
+ - Developers can opt into alternative distribution
110
+ - Separate notarization process for sideloaded apps
111
+
112
+ ## Common Edge Cases
113
+
114
+ ### WebView-Heavy Apps
115
+ Apple may reject apps that are essentially web wrappers. The app must provide native value beyond what a website offers. Hybrid apps (React Native, Flutter) are fine because they compile to native code.
116
+
117
+ ### Subscription Gotchas
118
+ - Must clearly show: price, billing period, trial duration, cancellation terms
119
+ - "Start Free Trial" button must show what happens after the trial
120
+ - Introductory offers must not be misleading
121
+ - Management link: `https://apps.apple.com/account/subscriptions`
122
+
123
+ ### Push Notifications
124
+ - Must not be used for advertising, promotions, or spam
125
+ - Users must be able to opt out
126
+ - Silent push is fine for background data sync
127
+ - Rich notifications should enhance, not replace, in-app content
128
+
129
+ ### App Clips
130
+ - Must be under 15MB
131
+ - Cannot require sign-in for basic functionality
132
+ - Must link to the full app
@@ -0,0 +1,203 @@
1
+ # Google Play Store Review Guidelines — Deep Dive
2
+
3
+ Detailed reference for Google Play-specific review requirements. The main SKILL.md covers the actionable checklist — this file provides background, edge cases, and policy details.
4
+
5
+ ## Google Play Policy Categories
6
+
7
+ Google organizes policies under these areas:
8
+
9
+ ### Restricted Content
10
+ - Child sexual abuse material (CSAM) — zero tolerance
11
+ - Inappropriate content involving minors
12
+ - Hate speech, violence, bullying
13
+ - Terrorist content
14
+ - Dangerous organizations
15
+ - Marijuana, tobacco, alcohol — restricted by region
16
+ - Financial services — must be licensed where required
17
+ - Gambling — requires specific licensing
18
+ - Illegal activities — cannot facilitate
19
+
20
+ ### Privacy, Deception & Device Abuse
21
+ - Must not deceive users about functionality
22
+ - No impersonation of other apps, companies, or entities
23
+ - Must not abuse device features (accessibility services, VPN, etc.)
24
+ - No unauthorized data collection or surveillance
25
+ - Data must be encrypted in transit
26
+
27
+ ### Monetization & Ads
28
+ - Play Billing required for digital goods and subscriptions
29
+ - Physical goods can use external payment
30
+ - Ads must not interfere with app functionality
31
+ - Full-screen ads must be dismissible
32
+ - Ad content must be appropriate for app's content rating
33
+ - No deceptive ads that mimic system notifications
34
+
35
+ ### Store Listing & Promotion
36
+ - Title, icon, screenshots must accurately represent the app
37
+ - No misleading claims or fake urgency
38
+ - No keyword stuffing in metadata
39
+ - User ratings and reviews cannot be manipulated
40
+ - Promotional materials must match app content
41
+
42
+ ### Spam & Minimum Functionality
43
+ - Apps must provide lasting user value
44
+ - No apps that merely duplicate other apps
45
+ - No apps that exist solely to send traffic to a website
46
+ - Minimum functionality required — WebView wrappers usually rejected
47
+
48
+ ## Data Safety Section — Detailed Requirements
49
+
50
+ The Data Safety form is **mandatory for all apps**. Google uses ML to cross-verify declarations against actual app behavior.
51
+
52
+ ### Data Types to Declare
53
+
54
+ | Category | Examples |
55
+ |----------|---------|
56
+ | **Location** | Approximate, precise location |
57
+ | **Personal info** | Name, email, phone, address |
58
+ | **Financial info** | Payment info, purchase history |
59
+ | **Health & fitness** | Health data, fitness data |
60
+ | **Messages** | Emails, SMS, other messages |
61
+ | **Photos & videos** | Photos, videos |
62
+ | **Audio** | Voice recordings, music files |
63
+ | **Files & docs** | Documents, file metadata |
64
+ | **Calendar** | Calendar events |
65
+ | **Contacts** | Contact list |
66
+ | **App activity** | Page views, taps, search history |
67
+ | **Web browsing** | Browsing history |
68
+ | **App info & performance** | Crash logs, diagnostics, performance data |
69
+ | **Device identifiers** | Device ID, advertising ID |
70
+
71
+ ### For Each Data Type Declare:
72
+ 1. **Is it collected?** (data leaves the device)
73
+ 2. **Is it shared?** (transferred to third parties)
74
+ 3. **Is it required or optional?**
75
+ 4. **Purpose**: App functionality, analytics, advertising, fraud prevention, etc.
76
+ 5. **Is it processed ephemerally?** (not stored beyond the request)
77
+
78
+ ### Common SDK Data Collection
79
+
80
+ Don't forget to declare data collected by your SDKs:
81
+
82
+ | SDK | Typically Collects |
83
+ |-----|-------------------|
84
+ | Firebase Analytics | App activity, device identifiers |
85
+ | Firebase Crashlytics | Crash logs, device info |
86
+ | Google Ads / AdMob | Device identifiers, app activity |
87
+ | Facebook SDK | Device identifiers, app activity |
88
+ | Sentry | Crash logs, device info |
89
+ | Amplitude / Mixpanel | App activity, device identifiers |
90
+ | Adapty / RevenueCat | Purchase history, device identifiers |
91
+ | OneSignal / FCM | Device identifiers (push token) |
92
+
93
+ ## API Level Requirements
94
+
95
+ | Date | New Apps | App Updates |
96
+ |------|----------|-------------|
97
+ | **Aug 31, 2025** | API 35 (Android 15) | API 34 (Android 14) |
98
+ | **Prior** | API 34 | API 33 |
99
+
100
+ Apps not targeting the minimum API level:
101
+ - New submissions are rejected
102
+ - Existing apps become unavailable to new users on newer Android versions
103
+ - Existing installs continue to work
104
+
105
+ ## Android App Bundle (.aab)
106
+
107
+ - **Required** for new app submissions (APK no longer accepted for new apps)
108
+ - Enables dynamic delivery (smaller downloads)
109
+ - Google Play generates optimized APKs per device
110
+ - Max download size: 200MB (base module); use asset packs for larger content
111
+
112
+ ## Google Play Console Requirements
113
+
114
+ ### Store Listing
115
+ - **App name**: Max 30 characters
116
+ - **Short description**: Max 80 characters
117
+ - **Full description**: Max 4000 characters
118
+ - **App icon**: 512×512px, 32-bit PNG
119
+ - **Feature graphic**: 1024×500px (required)
120
+ - **Screenshots**: Min 2, max 8 per device type (phone, tablet, TV, etc.)
121
+ - **Video**: Optional YouTube URL for promo video
122
+
123
+ ### Content Rating
124
+ - IARC questionnaire must be completed
125
+ - Ratings applied automatically based on answers
126
+ - Inaccurate answers can lead to removal
127
+ - Re-rate if content significantly changes
128
+
129
+ ### Financial Features Declaration (2025+)
130
+ - Required for **all apps** regardless of whether they have financial features
131
+ - Must be completed before any app update can be published
132
+ - Covers: payments, loans, crypto, trading, insurance, etc.
133
+
134
+ ### Target Audience & Content
135
+ - Must declare target age groups
136
+ - If targeting children (<13), stricter requirements apply:
137
+ - No personalized ads
138
+ - Limited data collection
139
+ - Teacher Approved program eligibility
140
+ - Must comply with Families Policy
141
+
142
+ ## 2025-2026 Policy Updates
143
+
144
+ ### CSAE Policy (January 2026)
145
+ - All apps must have explicit content policies prohibiting CSAE
146
+ - In-app reporting mechanisms required
147
+ - Apps must act on reports promptly
148
+ - Applies to all apps, not just social/communication apps
149
+
150
+ ### US Age Verification (January 2026)
151
+ - Some US states require age verification for certain app types
152
+ - Developers must implement verification mechanisms
153
+ - Affects dating, social media, alcohol, gambling apps
154
+
155
+ ### SDK Attestations (2025+)
156
+ - Third-party SDK developers must provide attestations about data handling
157
+ - App developers must ensure their SDKs are compliant
158
+ - Google cross-checks SDK behavior with declared data practices
159
+
160
+ ### Play Integrity API
161
+ - Replaces SafetyNet Attestation
162
+ - Verifies device integrity and app authenticity
163
+ - Recommended for apps with sensitive operations (payments, competitive gaming)
164
+
165
+ ## Common Rejection Scenarios
166
+
167
+ ### Metadata Rejection
168
+ - Title contains "best", "#1", or unverifiable superlatives
169
+ - Screenshots show features not in the app
170
+ - Description contains competitor names or trademarks
171
+ - Keyword stuffing in title or description
172
+
173
+ ### Permission Rejection
174
+ - Requesting SMS permission without clear justification
175
+ - Requesting CALL_PHONE without a calling feature
176
+ - Background location without approved use case
177
+ - Accessibility service usage without disability-assistance purpose
178
+
179
+ ### Payment Policy Violation
180
+ - Using Stripe/PayPal for digital goods instead of Play Billing
181
+ - Linking to external payment for subscriptions
182
+ - Not implementing Google Play Billing Library v5+
183
+
184
+ ### Content Policy Violation
185
+ - Gambling features without proper licensing
186
+ - Health claims without medical verification
187
+ - Financial advice without appropriate disclaimers
188
+ - Real-money contests without age verification
189
+
190
+ ## Review Timeline
191
+
192
+ - Most apps reviewed within **hours to 3 days**
193
+ - New developer accounts may face extended review (up to 7 days)
194
+ - Sensitive categories (finance, health, children) take longer
195
+ - Policy violation appeals via Play Console
196
+ - Escalation available through Google developer support
197
+
198
+ ## Useful Links
199
+
200
+ - Play Console: https://play.google.com/console
201
+ - Policy Center: https://play.google.com/about/developer-content-policy/
202
+ - Data Safety: https://support.google.com/googleplay/android-developer/answer/10787469
203
+ - Play Integrity: https://developer.android.com/google/play/integrity