economics

Calculate unit economics for your AI product. Revenue per action, API cost per action, gross margin, and free tier damage. Run when model pricing changes or you're rethinking your credit pricing.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "economics" with this command: npx skills add tushaarmehtaa/tushar-skills/tushaarmehtaa-tushar-skills-economics

Calculate the current unit economics for your AI product.

Steps

1. Get pricing from the codebase

Search for credit/pricing constants:

grep -rn "CREDIT\|credit_cost\|COST\|FREE_CREDITS\|signup_bonus\|price\|PRICE" --include="*.py" --include="*.ts" -i

Find:

  • How much users pay (e.g. $5 = 100 credits → $0.05/credit)
  • How many credits each action costs (generation, image, regen, etc.)
  • How many free credits new users get on signup

2. Get current model pricing

Search the web for current pricing for every model you use. Common ones to look up:

  • OpenAI: site:openai.com pricing
  • Anthropic: site:anthropic.com pricing
  • Google Gemini: site:ai.google.dev pricing

Get input $/1M tokens, output $/1M tokens, and image generation cost if applicable.

3. Estimate tokens per action

Make reasonable assumptions based on your prompts (or read the actual prompt files):

  • A typical text generation call: X input tokens, Y output tokens
  • An embedding call: Z tokens
  • An image generation: flat cost per image

If you can find the actual prompts in the codebase, read them and estimate more precisely.

4. Calculate cost per action

For each user-facing action:

API cost = (input_tokens / 1M × input_price) + (output_tokens / 1M × output_price)
Revenue  = credits_charged × price_per_credit
Margin   = (revenue - api_cost) / revenue × 100

5. Output the table

UNIT ECONOMICS — [your product]
════════════════════════════════════════════════════════════════
USER PRICING
  [price] = [credits] credits → $X.XX per credit
  Signup bonus: [N] free credits

ACTION ECONOMICS
────────────────────────────────────────────────────────────────
Action              Credits   Revenue   API Cost   Margin
────────────────────────────────────────────────────────────────
[action name]         [N]     $X.XX     $X.XXX     XX%
[action name]         [N]     $X.XX     $X.XXX     XX%
────────────────────────────────────────────────────────────────

FREE TIER DAMAGE (N signup credits)
  Conservative user:   costs you ~$X.XX
  Typical user:        costs you ~$X.XX
  Heavy user:          costs you ~$X.XX

PAYBACK POINT
  One paying user covers ~X non-converting free users
════════════════════════════════════════════════════════════════

6. Flag anything concerning

  • Any action with margin below 50% — flag it prominently
  • Free tier cost above $1 per signup — flag it
  • If a model price changed since this was last run, call it out

7. Pricing sensitivity (if asked)

Show what margins look like at ±20% credit price. Helps decide whether to change pricing without rebuilding the whole spreadsheet.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Claw Runaway Loop Detector

Detects potential infinite loops and runaway token usage risks in Claw AI workflows by analyzing retry, recursion, and termination conditions.

Registry SourceRecently Updated
201Profile unavailable
Automation

claw-token-cost-analyzer

Analyzes Claw AI workflows to estimate token usage, cost, detect runaway loops, and suggest optimizations to prevent unexpected API expenses.

Registry SourceRecently Updated
301Profile unavailable
Automation

AI Agent Token Cost Estimator

Estimate token usage and approximate API cost of AI agents by analyzing model, reasoning steps, tools, and output size before deployment.

Registry SourceRecently Updated
210Profile unavailable
Automation

Cost

A comprehensive AI agent skill for understanding, managing, and reducing costs in business. Helps you build cost visibility across your operation, identify w...

Registry SourceRecently Updated
1060Profile unavailable