重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
monetization by rshankras/claude-code-apple-skills
npx skills add https://github.com/rshankras/claude-code-apple-skills --skill monetization为 Apple 平台应用提供端到端的盈利指导——从“我该收费吗?”到“这是你的定价页面结构”。
当用户出现以下情况时使用此技能:
在推荐定价模型之前,评估应用是否准备好盈利。通过 AskUserQuestion 询问以下问题:
1. 应用阶段
2. 价值主张
3. 当前状态
根据以下标准进行评估:
| 信号 | 已就绪 | 未就绪 |
|---|---|---|
| 核心价值 |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 清晰、有差异化 |
| 仍在寻找产品市场契合点 |
| 用户留存 | D7 > 20% | D7 < 10% |
| 用户反馈 | “我愿意为此付费” | 沉默或抱怨 |
| 功能深度 | 足以区分免费和付费功能 | 所有功能都感觉必不可少 |
| 竞争情况 | 你提供了独特的东西 | 功能集同质化 |
| 完善度 | 专业品质 | 各方面都很粗糙 |
推荐阈值:
根据应用类型和用户行为,推荐合适的模型。
Is the app used daily/weekly?
├── YES → Does it provide ongoing value?
│ ├── YES → SUBSCRIPTION
│ └── NO → ONE-TIME PURCHASE (with optional tip jar)
└── NO → Is it a utility/tool?
├── YES → ONE-TIME PURCHASE or FREEMIUM
└── NO → Is it content-based?
├── YES → SUBSCRIPTION or CONSUMABLE IAP
└── NO → FREEMIUM with premium unlock
阅读 pricing-models.md 以获取每个模型的详细比较:
阅读 app-type-guides.md 以获取按应用类别的具体指导:
选定模型后,设计层级结构。
双层结构(推荐给大多数独立开发者应用):
FREE PRO ($X.99/mo or $XX.99/yr)
───────────────────── ─────────────────────────────
Core functionality Everything in Free
Limited usage/storage Unlimited usage
Basic features Advanced features
Priority support (optional)
Early access to new features
三层结构(适用于用户群体划分清晰的应用):
FREE PLUS ($X.99/mo) PRO ($XX.99/mo)
──────────── ────────────────── ──────────────────
Basic use Power user Professional/team
Ads/limits No ads, more quota Unlimited + extras
这是最困难的决定。遵循以下原则:
免费层级应该:
付费层级应该:
❌ 糟糕的划分:
✅ 良好的划分:
| 类型 | 最适合 | Apple 支持 |
|---|---|---|
| 介绍性优惠(免费) | 订阅 | 通过 App Store 内置支持 |
| 介绍性优惠(折扣) | 高价值订阅 | 通过 App Store 内置支持 |
| 功能限制的免费层级 | 免费增值应用 | 不适用(需自行实现逻辑) |
| 限时完全访问 | 效率工具应用 | 通过 App Store 内置支持 |
| 应用类型 | 试用时长 | 原因 |
|---|---|---|
| 每日使用的效率工具 | 7 天 | 能快速看到价值 |
| 健康/健身追踪 | 14 天 | 需要时间养成习惯 |
| 创意工具 | 7 天 | 一个项目周期 |
| 商业/专业应用 | 14-30 天 | 需要时间集成到工作流程中 |
| 教育/学习应用 | 7 天 | 一个学习周期 |
策略确定后,指导实施。
| 场景 | Apple 分成 | 你获得 |
|---|---|---|
| 标准(订阅第一年) | 30% | 70% |
| 订阅一年后 | 15% | 85% |
| 小型企业计划(年收入 < $1M) | 15% | 85% |
| 小型企业 + 订阅第二年 | 15% | 85% |
重要提示: 收入计算应始终考虑 Apple 的分成。一个 $9.99/月的订阅,若符合小型企业计划,你大约能获得 $8.49/月。
对于代码生成,请引导用户使用 paywall-generator 技能:
Use the paywall-generator skill to create:
- StoreKit 2 subscription management
- Paywall UI (SwiftUI)
- Receipt validation
- Subscription status tracking
应该做:
不要做:
需遵循的关键规则:
将盈利策略呈现为:
# Monetization Strategy: [App Name]
## Readiness Assessment
**Score**: X/6 — [Ready to monetize / Soft-launch / Focus on product]
| Signal | Status | Notes |
|--------|--------|-------|
| Core value | ✅/❌ | ... |
| Retention | ✅/❌ | ... |
| User demand | ✅/❌ | ... |
| Feature depth | ✅/❌ | ... |
| Differentiation | ✅/❌ | ... |
| Polish | ✅/❌ | ... |
## Recommended Model
**[Model Name]** — [One-line rationale]
## Tier Structure
| Feature | Free | Pro ($X.99/mo) |
|---------|------|-----------------|
| ... | ✅ | ✅ |
| ... | Limited | Unlimited |
| ... | ❌ | ✅ |
**Annual pricing**: $XX.99/yr (XX% savings)
## Free Trial
**Type**: [Introductory offer / Feature-limited / etc.]
**Duration**: [X days]
**Conversion tactics**: [Bullet list]
## Revenue Projections (Conservative)
| Metric | Estimate |
|--------|----------|
| Monthly price | $X.99 |
| Annual price | $XX.99 |
| Conversion rate (free→paid) | X-X% |
| Revenue per 1K MAU | $XXX-$XXX/mo |
## Implementation Checklist
- [ ] Configure products in App Store Connect
- [ ] Implement StoreKit 2 (use paywall-generator skill)
- [ ] Design paywall UI
- [ ] Set up introductory offers
- [ ] Add analytics for conversion tracking
- [ ] Test with StoreKit Configuration file
- [ ] Submit for review
## Next Steps
1. [First action item]
2. [Second action item]
3. [Third action item]
每周安装量
52
代码仓库
GitHub 星标数
125
首次出现
Feb 26, 2026
安全审计
安装于
kimi-cli51
gemini-cli51
amp51
github-copilot51
codex51
opencode51
End-to-end monetization guidance for Apple platform apps — from "should I charge?" to "here's your pricing page structure."
Use this skill when the user:
Before recommending a pricing model, evaluate whether the app is ready to monetize. Ask these questions via AskUserQuestion:
1. App Stage
2. Value Proposition
3. Current State
Evaluate against these criteria:
| Signal | Ready | Not Ready |
|---|---|---|
| Core value | Clear, differentiated | Still finding product-market fit |
| User retention | D7 > 20% | D7 < 10% |
| User feedback | "I'd pay for this" | Silence or complaints |
| Feature depth | Enough for free + paid split | Everything feels essential |
| Competition | You offer something unique | Commodity feature set |
| Polish | Professional quality | Rough edges everywhere |
Recommendation thresholds:
Based on app type and user behavior, recommend the right model.
Is the app used daily/weekly?
├── YES → Does it provide ongoing value?
│ ├── YES → SUBSCRIPTION
│ └── NO → ONE-TIME PURCHASE (with optional tip jar)
└── NO → Is it a utility/tool?
├── YES → ONE-TIME PURCHASE or FREEMIUM
└── NO → Is it content-based?
├── YES → SUBSCRIPTION or CONSUMABLE IAP
└── NO → FREEMIUM with premium unlock
Read pricing-models.md for detailed comparison of each model:
Read app-type-guides.md for specific guidance by app category:
Once a model is selected, design the tier structure.
Two-tier structure (recommended for most indie apps):
FREE PRO ($X.99/mo or $XX.99/yr)
───────────────────── ─────────────────────────────
Core functionality Everything in Free
Limited usage/storage Unlimited usage
Basic features Advanced features
Priority support (optional)
Early access to new features
Three-tier structure (for apps with clear user segments):
FREE PLUS ($X.99/mo) PRO ($XX.99/mo)
──────────── ────────────────── ──────────────────
Basic use Power user Professional/team
Ads/limits No ads, more quota Unlimited + extras
The hardest decision. Follow these principles:
Free tier should:
Paid tier should:
❌ Bad splits:
✅ Good splits:
| Type | Best For | Apple Support |
|---|---|---|
| Introductory offer (free) | Subscriptions | Built-in via App Store |
| Introductory offer (discounted) | High-value subscriptions | Built-in via App Store |
| Feature-limited free tier | Freemium apps | N/A (your logic) |
| Time-limited full access | Productivity apps | Built-in via App Store |
| App Type | Trial Length | Reason |
|---|---|---|
| Daily-use productivity | 7 days | Quick to see value |
| Health/fitness tracking | 14 days | Need time to build habit |
| Creative tools | 7 days | One project cycle |
| Business/professional | 14-30 days | Need to integrate into workflow |
| Education/learning | 7 days | One learning cycle |
After strategy is set, guide implementation.
| Scenario | Apple's Cut | You Keep |
|---|---|---|
| Standard (Year 1) | 30% | 70% |
| After Year 1 of subscription | 15% | 85% |
| Small Business Program (< $1M/yr) | 15% | 85% |
| Small Business + Year 2 subscription | 15% | 85% |
Important: Revenue calculations should always account for Apple's cut. A $9.99/mo subscription with Small Business Program = ~$8.49/mo to you.
For code generation, refer users to the paywall-generator skill:
Use the paywall-generator skill to create:
- StoreKit 2 subscription management
- Paywall UI (SwiftUI)
- Receipt validation
- Subscription status tracking
Do:
Don't:
Key rules to follow:
Present monetization strategy as:
# Monetization Strategy: [App Name]
## Readiness Assessment
**Score**: X/6 — [Ready to monetize / Soft-launch / Focus on product]
| Signal | Status | Notes |
|--------|--------|-------|
| Core value | ✅/❌ | ... |
| Retention | ✅/❌ | ... |
| User demand | ✅/❌ | ... |
| Feature depth | ✅/❌ | ... |
| Differentiation | ✅/❌ | ... |
| Polish | ✅/❌ | ... |
## Recommended Model
**[Model Name]** — [One-line rationale]
## Tier Structure
| Feature | Free | Pro ($X.99/mo) |
|---------|------|-----------------|
| ... | ✅ | ✅ |
| ... | Limited | Unlimited |
| ... | ❌ | ✅ |
**Annual pricing**: $XX.99/yr (XX% savings)
## Free Trial
**Type**: [Introductory offer / Feature-limited / etc.]
**Duration**: [X days]
**Conversion tactics**: [Bullet list]
## Revenue Projections (Conservative)
| Metric | Estimate |
|--------|----------|
| Monthly price | $X.99 |
| Annual price | $XX.99 |
| Conversion rate (free→paid) | X-X% |
| Revenue per 1K MAU | $XXX-$XXX/mo |
## Implementation Checklist
- [ ] Configure products in App Store Connect
- [ ] Implement StoreKit 2 (use paywall-generator skill)
- [ ] Design paywall UI
- [ ] Set up introductory offers
- [ ] Add analytics for conversion tracking
- [ ] Test with StoreKit Configuration file
- [ ] Submit for review
## Next Steps
1. [First action item]
2. [Second action item]
3. [Third action item]
Weekly Installs
52
Repository
GitHub Stars
125
First Seen
Feb 26, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
kimi-cli51
gemini-cli51
amp51
github-copilot51
codex51
opencode51
并行功能开发策略:多代理协作、文件所有权与冲突避免指南
3,200 周安装
专业市场研究报告生成工具 - 50+页咨询级行业分析,含PESTLE、SWOT、波特五力等框架
171 周安装
表单验证最佳实践:React Hook Form、TypeScript与Vue VeeValidate完整指南
170 周安装
竞争分析师智能体:系统性竞争对手分析、市场定位评估与战略优势识别
170 周安装
ADHD/自闭症任务拆解指南:DECOMPOSE方法助你克服执行功能障碍,提升生产力
187 周安装
查询缓存策略指南:Redis、Memcached与数据库级缓存实现多级缓存优化
171 周安装
CI/CD 流水线实战指南:GitHub Actions、GitLab CI 设计优化与安全
172 周安装