Agent Skillspollinations/pollinations › spending-analysis

spending-analysis

GitHub

分析Pollinations Stripe收入、套餐购买及余额桶支出模式,结合Tinybird生产数据与自动充值逻辑,区分现金与 earned funding。

.claude/skills/spending-analysis/SKILL.md pollinations/pollinations

Trigger Scenarios

查询每周套餐收入 查看近期套餐购买记录 分析客户收入贡献 统计每周余额桶支出 核对资金流入与消耗差异

Install

npx skills add pollinations/pollinations --skill spending-analysis -g -y
More Options

Non-standard path

npx skills add https://github.com/pollinations/pollinations/tree/main/.claude/skills/spending-analysis -g -y

Use without installing

npx skills use pollinations/pollinations@spending-analysis

指定 Agent (Claude Code)

npx skills add pollinations/pollinations --skill spending-analysis -a claude-code -g -y

安装 repo 全部 skill

npx skills add pollinations/pollinations --all -g -y

预览 repo 内 skill

npx skills add pollinations/pollinations --list

SKILL.md

Frontmatter
{
    "name": "spending-analysis",
    "description": "Analyze Pollinations Stripe revenue, pack purchases, and balance-bucket spending patterns with Tinybird production data."
}

Requirements

  • Run from the pollinations repository root.
  • Install jq and sops.
  • Query with enter.pollinations.ai/observability/scripts/tb-prod.sh "<sql>" (below written as tb-prod.sh). It uses the production read token from SOPS; the staging workspace has no real revenue.

Revenue queries must filter successful Stripe checkout events so asynchronous payment methods are counted exactly once.

Weekly pack revenue

tb-prod.sh "SELECT toStartOfWeek(timestamp) AS week, round(sum(amount_cents) / 100, 2) AS revenue_usd, count() AS purchases FROM stripe_event WHERE payment_status = 'paid' AND event_type IN ('checkout.session.completed', 'checkout.session.async_payment_succeeded') AND timestamp >= now() - INTERVAL 90 DAY GROUP BY week ORDER BY week DESC FORMAT JSON" | jq '.data'

Recent pack purchases

tb-prod.sh "SELECT timestamp, user_id, session_id, amount_cents / 100 AS amount, currency, payment_method FROM stripe_event WHERE payment_status = 'paid' AND event_type IN ('checkout.session.completed', 'checkout.session.async_payment_succeeded') ORDER BY timestamp DESC LIMIT 100 FORMAT JSON" | jq '.data'

Revenue by customer

tb-prod.sh "SELECT user_id, round(sum(amount_cents) / 100, 2) AS revenue_usd, count() AS purchases FROM stripe_event WHERE payment_status = 'paid' AND event_type IN ('checkout.session.completed', 'checkout.session.async_payment_succeeded') AND timestamp >= now() - INTERVAL 30 DAY GROUP BY user_id ORDER BY revenue_usd DESC LIMIT 50 FORMAT JSON" | jq '.data'

Weekly spend by balance bucket

tb-prod.sh "SELECT toStartOfWeek(start_time) AS week, splitByChar(':', selected_meter_slug)[-1] AS meter_source, sum(total_price) AS total_spend, count() AS requests FROM generation_event_v2 WHERE start_time >= now() - INTERVAL 60 DAY AND environment = 'production' GROUP BY week, meter_source ORDER BY week DESC FORMAT JSON" | jq '.data'

Where the money came from vs what was spent

generation_event_v2 spend (pack_spend, selected_meter_slug) says which bucket was consumed, not how it was funded. pack_balance is credited by Stripe purchases and auto-top-ups, but also by BYOP markup and community-model rewards (paid into the payer's bucket, shared/billing/track-helpers.ts) and some quest rewards. So pack spend ≠ cash. And Stripe checkout rows alone miss auto-top-ups, which never create a checkout.session.* event. To separate cash from earned funding, reconcile each source on its own and don't add figures with different monetary bases:

  • Stripe checkout pollen_credited (stripe_event, payment_status = 'paid')
  • Auto-top-up amount_usd (principal credited — see below)
  • Historical Polar credits (Nov 2025–Jan 2026)
  • Claimed community/BYOP rewards, by bucket

No cash purchase ≠ non-payment or abuse; pack spend ≠ proof of cash.

Auto-top-up: principal vs gross payment

Auto-top-up amount_usd in D1 is the Pollen principal credited; Stripe fees and taxes sit on top. Gross cash is in Tinybird stripe_event as payment_intent.succeeded rows with an empty user_id (auto top-ups are not attributed there); per user, fetch the invoice by stripe_invoice_id and use amount_paid. Keep principal, gross payment, tax, refunds and net revenue as separate numbers.

Historical pricing changes

Define a past price change from the code deployed at the time, not the PR title or announcement — an "X% cheaper" announcement can coexist with a same-day multiplier change that cancels it. Confirm billed unit prices in generation_event_v2:

tb-prod.sh "SELECT toDate(start_time) AS day, round(avg(total_price), 6) AS avg_unit_price, count() AS requests FROM generation_event_v2 WHERE model_used = '<model>' AND start_time BETWEEN '<before>' AND '<after>' GROUP BY day ORDER BY day FORMAT JSON" | jq '.data'

Provider cost, priceMultiplier markup and pack-credit promotions move independently; check all three. Keep cash paid separate from Pollen credited — a Pollen discount doesn't change cash buying power. Note who was exposed before the payment event you're explaining and any simultaneous changes.

Conversion cohort analysis

For "these users pay more" or "X caused conversion" claims, define the comparison first:

  • Pick the cohort without looking at the outcome. Don't select on payment or on rewards that require a payment. Contribution rewards (PR/quest merges) are fine; payment-triggered rewards are not.
  • Freeze a cutoff date for both membership and the payment check.
  • Match observation windows. A last-7-days cohort has had 0–7 days to convert; compare it only with another cohort measured the same way, or use a fixed per-user window ("first 7 days after signup").
  • Check ordering. For a reward-linked cohort, count who paid before the reward vs after. If most paid first, the reward didn't drive conversion.
  • Count each user once.
  • Report group sizes and caveats with the percentage.

Notes

  • stripe_event is the source of truth for pack-purchase revenue analytics.
  • generation_event_v2 records Pollen consumption, not cash revenue.
  • Both datasets use user_id, so revenue and usage can be joined directly.
  • The dashboard's daily_stripe_revenue pipe applies the same paid-event filter.
  • For pre-migration revenue history, note that Polar was the pre-Stripe merchant of record (Nov 2025–Jan 2026) and is retired. Do not combine historical Polar and Stripe totals without checking the cutoff for overlap.
  • Request-count shares (e.g. BYOP share) are dominated by free traffic and drift fast. Always state the date window, and prefer revenue share (% of total_price) for strategic claims.

Version History

  • 55af554 Current 2026-09-22 18:01

    移除不存在的auto-top-up gross-amount列引用,修正为指向Tinybird stripe_event和Stripe发票。

  • 8303332 2026-08-20 04:57

    修复了获取 Tinybird 读取令牌时 sops 解密配置文件的路径错误(从 apps/operation/kpi/secrets/env.json 更正为 operations/kpi/secrets/env.json)。

  • 99bce92 2026-07-25 10:39

Same Skill Collection

.claude/skills/abuse-detection/SKILL.md
.claude/skills/candidate-evaluation/SKILL.md
.claude/skills/code-formatting/SKILL.md
.claude/skills/community-leaderboard/SKILL.md
.claude/skills/economics-provider-collection/SKILL.md
.claude/skills/enter-services/SKILL.md
.claude/skills/issue-maker/SKILL.md
.claude/skills/manage-vast-gpu-fleet/SKILL.md
.claude/skills/model-debugging/SKILL.md
.claude/skills/model-management/SKILL.md
.claude/skills/monitor-services/SKILL.md
.claude/skills/polli-video/SKILL.md
.claude/skills/polli/SKILL.md
.claude/skills/quest-solution-review/SKILL.md
.claude/skills/r2-glacier-migration/SKILL.md
.claude/skills/sync-production/SKILL.md
.claude/skills/tinybird-deploy/SKILL.md
.claude/skills/voting-status/SKILL.md
.claude/skills/web-research/SKILL.md
apps/openclaw/skills/founder-meditation/SKILL.md
packages/polli-cli/SKILL.md

Metadata

Files
0
Version
55af554
Hash
37c8286a
Indexed
2026-07-25 10:39

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-23 07:19
浙ICP备14020137号-1