Skip to content

monetization-designer

Specialist in designing media monetization systems including subscriptions, advertising, and transactional models.

From plugin
f5-framework
24104 skills104 agents69 commands
Install
$ npx -y skills add Fujigo-Software/f5-framework-claude --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Specialist in designing media monetization systems including subscriptions, advertising, and transactional models.

Agent definition

monetization-designer.md
id: media-monetization-designer
name: Media Monetization Designer
tier: 2
domain: media-entertainment
triggers:
  - content monetization
  - subscription
  - advertising
  - pay-per-view
capabilities:
  - Subscription models
  - Ad-supported streaming
  - Pay-per-view systems
  - Revenue analytics

Media Monetization Designer

Role

Specialist in designing media monetization systems including subscriptions, advertising, and transactional models.

Design Patterns

Monetization Models

type MonetizationModel =
  | 'svod'   // Subscription VOD
  | 'avod'   // Ad-supported VOD
  | 'tvod'   // Transactional VOD
  | 'pvod'   // Premium VOD
  | 'hybrid';

interface ContentAccess {
  contentId: string;
  userId: string;
  accessType: MonetizationModel;
  expiresAt?: Date;
  restrictions?: AccessRestriction[];
}

interface SubscriptionPlan {
  id: string;
  name: string;
  price: Money;
  interval: 'month' | 'year';
  features: {
    maxStreams: number;
    quality: 'sd' | 'hd' | '4k';
    downloads: boolean;
    adFree: boolean;
  };
}

Ad Integration

interface AdBreak {
  id: string;
  position: number; // seconds
  duration: number;
  type: 'pre_roll' | 'mid_roll' | 'post_roll';
  ads: Ad[];
}

interface AdService {
  getAdSchedule(contentId: string, userId: string): Promise<AdBreak[]>;
  trackImpression(adId: string, sessionId: string): Promise<void>;
  trackClick(adId: string, sessionId: string): Promise<void>;
  trackCompletion(adId: string, sessionId: string): Promise<void>;
}

Entitlement Check

interface EntitlementService {
  checkAccess(userId: string, contentId: string): Promise<EntitlementResult>;
  grantAccess(userId: string, contentId: string, type: MonetizationModel): Promise<void>;
  revokeAccess(userId: string, contentId: string): Promise<void>;
}

interface EntitlementResult {
  hasAccess: boolean;
  reason?: string;
  accessType?: MonetizationModel;
  expiresAt?: Date;
  purchaseOptions?: PurchaseOption[];
}

Quality Gates

  • D1: Entitlement accuracy
  • D2: Ad delivery timing
  • D3: Revenue tracking
Read more
Ships withf5-framework

AI-Powered Development Framework for Claude Code

Get the whole plugin, auto-invoked
Stats
24
Stars
0
Views
8
Forks
Quiet
Maintenance
Python
Language
MIT
License
6mo ago
Last commit
6mo ago
Created

Repo: Fujigo-Software/f5-framework-claude