Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

revenue-optimizer收入优化器

Agent Skill

revenue-optimizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

682

周安装

29

GitHub Stars

1

下载量

239
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:revenue-optimizer(收入优化器)
来源仓库:https://github.com/acaprino/alfio-claude-plugins
仓库路径:skills/revenue-optimizer
安装命令:
npx skills add https://github.com/acaprino/alfio-claude-plugins --skill revenue-optimizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/acaprino/alfio-claude-plugins --skill revenue-optimizer

简介

revenue-optimizer 用于查找、检索和筛选收入增长优化策略与技术实现方案。

  • 适用于电商、SaaS 或订阅业务中提升变现效率的场景。
  • 通过 GitHub 安装,使用 npx skills add 命令从指定仓库添加技能。
  • 使用前需确认权限范围和维护状态,注意是否涉及价格策略或用户行为分析。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Revenue Optimizer

Build revenue features and monetization systems. Analyze existing codebases to understand features, calculate costs, and create data-driven pricing strategies.

Workflow

  1. Discover - Scan codebase for features, services, and integrations
  2. Cost Analysis - Calculate per-user and per-feature costs from services
  3. Design - Create pricing tiers based on value + cost data
  4. Implement - Build payment integration, pricing logic, and checkout flows
  5. Optimize - Add conversion optimization and revenue tracking

Feature Discovery

Scan codebase to build feature inventory:

Feature Discovery Process:
1. Scan routes/endpoints → identify user-facing features
2. Scan components/pages → map UI features
3. Scan service integrations → identify cost-generating features
4. Scan database models → understand data entities
5. Cross-reference → map features to their cost drivers

Look for these patterns:

  • Routes/Controllers: Each endpoint = potential feature
  • React/Vue components: Feature-specific UI modules
  • Service clients: AWS SDK, OpenAI, Stripe, Twilio, etc.
  • Background jobs: Compute-intensive operations
  • Storage operations: S3, database writes, file uploads

Example feature inventory output:

Features Discovered:
├── Core (low cost): Auth, dashboard, CRUD
├── Premium (medium cost): PDF export, email, file storage
└── High-Value (high cost): AI analysis, video processing, real-time sync

Cost Analysis

Analyze services to calculate true costs per user/feature. See references/cost-analysis.md for detailed patterns.

Service Detection

Scan for these cost sources:

  • Config files: .env, config/, secrets
  • Package.json/requirements.txt: SDK dependencies
  • Infrastructure: terraform/, cloudformation/, docker-compose
  • Code imports: aws-sdk, openai, stripe, twilio, etc.

Cost Mapping

Map fixed costs, variable costs (per user), and feature costs (per use). See references/cost-analysis.md for detailed cost mapping patterns and output format.

Pricing Strategy Design

Combine feature value + cost data:

  1. Calculate cost floor (break-even per user)
  2. Assess feature value (what users pay for alternatives)
  3. Set price = max(cost + margin, perceived value)
  4. Group features into tiers by cost similarity:

- Free: Low-cost features only, cap variable costs, goal < $0.50/user/month - Pro: Medium-cost features, price at 3-5x cost, primary revenue driver - Enterprise: High-cost features (AI, video), value-based pricing (10x+ cost OK)

Optimal Price = (Cost Floor x 0.3) + (Value Ceiling x 0.7) where Cost Floor = Cost to Serve / (1 - Target Margin).

See references/pricing-patterns.md for implementation examples.

Complete Analysis Example

When asked to create a pricing strategy, produce a full analysis:

PRICING STRATEGY REPORT
=======================================

CODEBASE ANALYSIS
---------------------------------------
Services: AWS S3, OpenAI GPT-4, SendGrid, Auth0, Vercel, PlanetScale

Features:
  Core (6): Dashboard, project mgmt, collaboration, reporting
  Premium (3): PDF export (Lambda), analytics (Postgres), API access
  AI-Powered (2): AI writing + smart suggestions (GPT-4)

COST BREAKDOWN
---------------------------------------
Fixed (Monthly):
  Vercel $20 + PlanetScale $29 + Auth0 $0 = $49/month

Variable (Per User/Month):
  Auth0 $0.02 + Storage $0.01 + Email $0.01 = $0.04/user

Feature (Per Use):
  AI Writing $0.03 | PDF Export $0.01 | API $0.001

USAGE PATTERNS
---------------------------------------
  API Calls/month:   Casual 50% ~50 | Regular 40% ~500 | Power 10% ~5K
  AI Generations:    Casual ~5 | Regular ~50 | Power ~300

Tier Limits: Free 100 API/10 AI | Pro 5K API/100 AI | Business unlimited

REVENUE MODEL
---------------------------------------
Distribution: Free 80% | Pro 15% | Business 5%
ARPU: (80% x $0) + (15% x $19) + (5% x $49) = $5.30/user
LTV: ($5.30 x 0.87) / 0.04 = $115
Cost to Serve: Free $0.10 | Pro $2.50 | Business $12
Break-Even: 62 users

12-Month Projection (15% growth):
  M1: 100 users, $530 MRR
  M6: 266 users, $1,410 MRR
  M12: 814 users, $4,314 MRR -- $51,768 ARR

RECOMMENDED TIERS
---------------------------------------
FREE ($0)       3 projects | 100 API | 10 AI | 500MB
PRO ($19/mo)    Unlimited | 5K API | 100 AI | 10GB | Margin 87%
BUSINESS ($49)  All Pro + 50K API | 500 AI | 50GB | 5 seats | Margin 76%
ENTERPRISE      Custom $200+ | Unlimited | SSO | SLA

Overage: AI $0.10/use | API $0.005/call
=======================================

Payment Provider Selection

ProviderBest ForIntegration Complexity
StripeSaaS, subscriptions, globalLow
PaddleSaaS with tax complianceLow
LemonSqueezyDigital products, simpleVery Low
PayPalMarketplaces, existing usersMedium

For detailed integration patterns, see:

Pricing Tier Design

Common patterns:

  • Good-Better-Best: 3 tiers with clear value escalation
  • Freemium: Free tier with premium upsell
  • Usage-Based: Pay per API call, storage, or compute
  • Per-Seat: Charge per team member

For tier structure examples and implementation, see references/pricing-patterns.md.

Subscription Implementation

Key components:

  1. Subscription state management - Track active, canceled, past_due
  2. Webhook handling - Process payment events reliably
  3. Entitlement system - Gate features based on plan
  4. Billing portal - Self-service plan management

For subscription system patterns, see references/subscription-patterns.md.

Checkout Optimization

Conversion-focused checkout implementation:

  • Minimize form fields (email → payment in 2 steps max)
  • Show trust signals (security badges, money-back guarantee)
  • Display social proof near purchase button
  • Offer annual discount prominently (20-40% standard)
  • Pre-select recommended plan

For checkout implementation details, see references/checkout-optimization.md.

Feature Gating Pattern

// Entitlement check pattern
async function checkFeatureAccess(userId: string, feature: string): Promise<boolean> {
  const subscription = await getSubscription(userId);
  const plan = PLANS[subscription.planId];
  return plan.features.includes(feature);
}

// Usage in route/component
if (!await checkFeatureAccess(user.id, 'advanced_export')) {
  return showUpgradePrompt('advanced_export');
}

Revenue Tracking

Essential metrics to implement:

  • MRR (Monthly Recurring Revenue)
  • Churn Rate (cancellations / total subscribers)
  • LTV (Lifetime Value = ARPU / churn rate)
  • Conversion Rate (paid / total signups)

Implementation: Send events to analytics (Mixpanel, Amplitude, or custom) on:

  • subscription.created
  • subscription.upgraded
  • subscription.canceled
  • payment.succeeded
  • payment.failed

Quick Implementation Checklist

  • Payment provider account and API keys configured
  • Webhook endpoint receiving and verifying events
  • Subscription state synced to database
  • Feature entitlement checks on protected routes
  • Billing portal or plan management UI
  • Upgrade prompts at key user moments
  • Revenue events tracked in analytics
  • Failed payment retry and dunning emails

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.42%
按下载量换算85

Claude

32.19%
按下载量换算77

Cursor

19.15%
按下载量换算46

Gemini CLI

9.07%
按下载量换算22

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills