monetization-systems
Game monetization strategies, in-app purchases, battle passes, ads integration, and player retention mechanics. Ethical monetization that respects players.
What this skill does
# Monetization Systems
## Monetization Models
```
CHOOSING YOUR MODEL:
┌─────────────────────────────────────────────────────────────┐
│ GAME TYPE → RECOMMENDED MODEL │
├─────────────────────────────────────────────────────────────┤
│ Story-driven / Single play → PREMIUM ($10-60) │
│ Competitive multiplayer → F2P + Battle Pass │
│ Mobile casual → F2P + Ads + Light IAP │
│ MMO / Live service → Subscription + Cosmetics │
│ Indie narrative → Premium + Optional tip jar │
└─────────────────────────────────────────────────────────────┘
ETHICAL PRINCIPLES:
┌─────────────────────────────────────────────────────────────┐
│ ✅ DO: ❌ DON'T: │
│ • Cosmetics only • Pay-to-win │
│ • Clear pricing • Hidden costs │
│ • Earnable alternatives • Predatory targeting │
│ • Transparent odds • Gambling mechanics │
│ • Respect time/money • Exploit psychology │
│ • Value for purchase • Bait and switch │
└─────────────────────────────────────────────────────────────┘
```
## IAP Implementation
```csharp
// ✅ Production-Ready: Unity IAP Manager
public class IAPManager : MonoBehaviour, IStoreListener
{
public static IAPManager Instance { get; private set; }
private IStoreController _storeController;
private IExtensionProvider _extensionProvider;
// Product IDs (match store configuration)
public const string PRODUCT_STARTER_PACK = "com.game.starterpack";
public const string PRODUCT_GEMS_100 = "com.game.gems100";
public const string PRODUCT_BATTLE_PASS = "com.game.battlepass";
public const string PRODUCT_VIP_SUB = "com.game.vip_monthly";
public event Action<string> OnPurchaseComplete;
public event Action<string, string> OnPurchaseFailed;
private void Awake()
{
if (Instance != null) { Destroy(gameObject); return; }
Instance = this;
DontDestroyOnLoad(gameObject);
InitializePurchasing();
}
private void InitializePurchasing()
{
var builder = ConfigurationBuilder.Instance(StandardPurchasingModule.Instance());
// Consumables
builder.AddProduct(PRODUCT_GEMS_100, ProductType.Consumable);
// Non-consumables
builder.AddProduct(PRODUCT_STARTER_PACK, ProductType.NonConsumable);
// Subscriptions
builder.AddProduct(PRODUCT_VIP_SUB, ProductType.Subscription);
builder.AddProduct(PRODUCT_BATTLE_PASS, ProductType.Subscription);
UnityPurchasing.Initialize(this, builder);
}
public void BuyProduct(string productId)
{
if (_storeController == null)
{
OnPurchaseFailed?.Invoke(productId, "Store not initialized");
return;
}
var product = _storeController.products.WithID(productId);
if (product != null && product.availableToPurchase)
{
_storeController.InitiatePurchase(product);
}
else
{
OnPurchaseFailed?.Invoke(productId, "Product not available");
}
}
public PurchaseProcessingResult ProcessPurchase(PurchaseEventArgs args)
{
var productId = args.purchasedProduct.definition.id;
// Validate receipt (server-side recommended for security)
if (ValidateReceipt(args.purchasedProduct.receipt))
{
// Grant the purchase
GrantPurchase(productId);
OnPurchaseComplete?.Invoke(productId);
}
return PurchaseProcessingResult.Complete;
}
private void GrantPurchase(string productId)
{
switch (productId)
{
case PRODUCT_GEMS_100:
PlayerInventory.AddGems(100);
break;
case PRODUCT_STARTER_PACK:
PlayerInventory.UnlockStarterPack();
break;
case PRODUCT_BATTLE_PASS:
BattlePassManager.Activate();
break;
}
}
// IStoreListener implementation...
public void OnInitialized(IStoreController controller, IExtensionProvider extensions)
{
_storeController = controller;
_extensionProvider = extensions;
}
public void OnInitializeFailed(InitializationFailureReason error) { }
public void OnPurchaseFailed(Product product, PurchaseFailureReason reason) { }
}
```
## Battle Pass Design
```
BATTLE PASS STRUCTURE:
┌─────────────────────────────────────────────────────────────┐
│ SEASON LENGTH: 8-12 weeks │
│ TIERS: 100 levels │
│ XP PER TIER: 1000 (increases gradually) │
├─────────────────────────────────────────────────────────────┤
│ FREE TRACK: │
│ • Common rewards every 5 levels │
│ • 1-2 rare items mid-season │
│ • Currency to buy next pass (partial) │
├─────────────────────────────────────────────────────────────┤
│ PREMIUM TRACK ($10): │
│ • Exclusive skin at level 1 (instant value) │
│ • Premium rewards every level │
│ • Legendary items at 25, 50, 75, 100 │
│ • Enough currency to buy next pass (with effort) │
├─────────────────────────────────────────────────────────────┤
│ XP SOURCES: │
│ • Daily challenges: 500 XP │
│ • Weekly challenges: 2000 XP each │
│ • Playtime: 50 XP per match │
│ • Special events: Bonus XP weekends │
└─────────────────────────────────────────────────────────────┘
```
## Economy Design
```
DUAL CURRENCY SYSTEM:
┌─────────────────────────────────────────────────────────────┐
│ SOFT CURRENCY (Gold/Coins): │
│ • Earned through gameplay │
│ • Used for: Upgrades, basic items, consumables │
│ • Sink: Level-gated purchases, repair costs │
├─────────────────────────────────────────────────────────────┤
│ HARD CURRENCY (Gems/Diamonds): │
│ • Purchased with real money │
│ • Small amounts earnable in-game │
│ • Used for: Premium cosmetics, time skips │
│ • NEVER required for core gameplay │
└─────────────────────────────────────────────────────────────┘
PRICING PSYCHOLOGY:
┌─────────────────────────────────────────────────────────────┐
│ $0.99 - Impulse buy, low barrier │
│ $4.99 - Starter pack sweet spot │
│ $9.99 - Battle pass standard │
│ $19.99 - High-value bundles │
│ $49.99 - Whale offering (best value/gem) │
│ $99.99 - Maximum purchase (regulations) │
└─────────────────────────────────────────────────────────────┘
```
## Key Metrics
```
MONETIZATION KPIS:
┌─────────────────────────────────────────────────────────────┐
│ CONVERSION RATE: 2-5% (F2P) │
│ ARPU: $0.05-0.50/DAU (casual mobile) │
│ ARPPU: $5-50/paying user │
│ LTV: Should exceed CPI by 1.5x+ │
├─────────────────────────────────────────────────────────────┤
│ HEALTHY INDICATORS: │
│ ✓ D1 retention > 40% │
│ ✓ D7 retention > 20% │
│ ✓ Conversion > Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".