Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

saas-metrics-dashboardsaas metrics dashboard 效率

Agent Skill

saas-metrics-dashboard 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,816

周安装

233

GitHub Stars

公开资料未说明

下载量

1,883
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:saas-metrics-dashboard(saas metrics dashboard 效率)
来源仓库:https://github.com/samledger67-dotcom/saas-metrics-dashboard
安装命令:
openclaw skills install saas-metrics-dashboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install saas-metrics-dashboard

简介

订阅制业务指标计算器,支持 MRR、ARR、NRR、LTV、CAC 等关键值核算。

  • 可构建可视化仪表板原型,辅助监控盈利状态与投资回报周期估算。
  • 输入数据需准确,否则可能导致指标失真;建议交叉验证原始凭证。
  • 安装命令:openclaw skills install saas-metrics-dashboard,来源仓库:https://github.com/samledger67-dotcom/saas-metrics-dashboard。
  • 涉及账单或客户合同数据时,请先确认授权范围与脱敏处理方式。

SKILL.md

name
saas-metrics-dashboard
description
>
version
1.0.0
author
PrecisionLedger
tags

SaaS Metrics Dashboard Skill

Calculate every critical SaaS metric from raw subscription data and produce an investor-ready health snapshot. This skill guides Sam Ledger through computing MRR/ARR, churn, retention, unit economics (LTV/CAC), growth efficiency, and Rule of 40 scoring — then formats the output for board decks, investor updates, or feeding into kpi-alert-system threshold monitoring.


When to Use This Skill

Trigger phrases:

  • "What's our MRR / ARR?"
  • "Calculate churn rate for last quarter"
  • "Give me our LTV:CAC ratio"
  • "Build a SaaS metrics snapshot"
  • "Are we Rule of 40 compliant?"
  • "Show net revenue retention"
  • "Prepare metrics for the investor update"
  • "What's our quick ratio / magic number?"
  • "Track cohort retention"

Fits between:

  • startup-financial-model — feeds historical actuals into the 3-statement model
  • kpi-alert-system — outputs threshold-ready metric values for alert monitoring
  • investor-memo-generator — supplies the metrics section of investor memos

NOT for:

  • Businesses without recurring subscription revenue
  • Real-time live dashboards (needs a BI tool like Metabase/Looker)
  • Revenue recognition accounting (use revenue-recognition-agent)
  • QBO bookkeeping entries (use qbo-automation)

Core Metric Definitions

Revenue Metrics

MetricFormulaBenchmark
MRRSum of all monthly recurring charges
ARRMRR × 12
New MRRMRR from new customers this period
Expansion MRRUpsells + seat adds from existing customers
Churned MRRMRR lost from cancellations
Contraction MRRDowngrades from existing customers
Net New MRRNew + Expansion − Churned − ContractionPositive = growing

Retention Metrics

MetricFormulaBenchmark
Logo ChurnCustomers churned / Customers at start<5%/yr for SMB, <2% enterprise
Revenue Churn (GRR)Churned+Contraction MRR / MRR at start>80% GRR good
Net Revenue Retention (NRR)(Start MRR + Expansion − Churn − Contraction) / Start MRR>110% excellent, >100% good
Quick Ratio(New + Expansion) / (Churned + Contraction)>4 = excellent, >2 = healthy

Unit Economics

MetricFormulaBenchmark
LTVARPU / Monthly Churn Rate3× CAC minimum
CAC(S&M Spend) / New Customers
LTV:CACLTV / CAC>3:1 healthy, >5:1 strong
CAC PaybackCAC / (ARPU × Gross Margin%)<12mo excellent, <18mo good
Magic NumberNet New ARR / Prior Quarter S&M Spend>1.5 = efficient

Growth Efficiency

MetricFormulaBenchmark
MoM Growth(MRR This Mo − Prior Mo) / Prior MoTop decile: 15%+ early stage
Rule of 40ARR Growth Rate % + FCF Margin %≥40 = healthy
Burn MultipleNet Burn / Net New ARR<1 = excellent, <2 = good

Data Inputs Required

Minimum viable inputs:

Period: [month/quarter]
MRR at start of period: $___
New MRR: $___
Expansion MRR: $___
Churned MRR: $___
Contraction MRR: $___
New customers acquired: ___
Customers churned: ___
Total customers at start: ___
S&M spend (period): $___
Gross margin %: ___
ARR growth rate (YoY %): ___
FCF or operating cash flow: $___

Optional (for deeper analysis):

Cohort data (monthly signup + retention by cohort)
Plan-level MRR breakdown
Customer segment breakdown (SMB / Mid-Market / Enterprise)
NPS or CSAT scores

Computation Walkthrough

Step 1: Validate Inputs

  • Confirm all required fields are present
  • Check: New MRR + Expansion − Churn − Contraction = Net New MRR
  • Flag negative MRR values or impossible churn rates (>100%)

Step 2: Calculate Revenue Metrics

net_new_mrr = new_mrr + expansion_mrr - churned_mrr - contraction_mrr
arr = (mrr_start + net_new_mrr) * 12

Step 3: Retention Metrics

logo_churn = customers_churned / customers_start
grr = 1 - ((churned_mrr + contraction_mrr) / mrr_start)
nrr = (mrr_start + expansion_mrr - churned_mrr - contraction_mrr) / mrr_start
quick_ratio = (new_mrr + expansion_mrr) / (churned_mrr + contraction_mrr)

Step 4: Unit Economics

arpu = (mrr_start + net_new_mrr) / (customers_start + new_customers - customers_churned)
ltv = arpu / (logo_churn / 12)  # annualized to monthly churn
cac = sm_spend / new_customers
ltv_cac = ltv / cac
cac_payback_months = cac / (arpu * gross_margin)
magic_number = (net_new_arr) / prior_sm_spend

Step 5: Growth Efficiency

rule_of_40 = arr_growth_pct + fcf_margin_pct
burn_multiple = abs(net_burn) / net_new_arr  # only if burning cash

Step 6: Score & Grade

Apply benchmark thresholds and assign health grades:

  • 🟢 Green: At or above benchmark
  • 🟡 Yellow: Within 20% of benchmark
  • 🔴 Red: Below benchmark threshold

Output Format

Snapshot Output (Markdown/Structured)

═══════════════════════════════════════
  SAAS METRICS SNAPSHOT — [Period]
  Company: [Name] | As of: [Date]
═══════════════════════════════════════

REVENUE
  MRR:              $___,___
  ARR:              $___,___
  Net New MRR:      $___,___  (New: $X | Exp: $X | Churn: -$X)
  MoM Growth:       X.X%  [🟢/🟡/🔴]

RETENTION
  NRR:              XXX%  [🟢/🟡/🔴]  (benchmark: >110%)
  GRR:              XX%   [🟢/🟡/🔴]  (benchmark: >80%)
  Logo Churn:       X.X%  [🟢/🟡/🔴]  (benchmark: <5%/yr)
  Quick Ratio:      X.X   [🟢/🟡/🔴]  (benchmark: >2)

UNIT ECONOMICS
  LTV:CAC:          X.Xx  [🟢/🟡/🔴]  (benchmark: >3:1)
  CAC Payback:      XX mo [🟢/🟡/🔴]  (benchmark: <18mo)
  Magic Number:     X.X   [🟢/🟡/🔴]  (benchmark: >1.5)

EFFICIENCY
  Rule of 40:       XX    [🟢/🟡/🔴]  (benchmark: ≥40)
  Burn Multiple:    X.X   [🟢/🟡/🔴]  (benchmark: <2)

OVERALL HEALTH:  🟢 Strong / 🟡 Watch / 🔴 At Risk
TOP RISKS:  [1-3 specific metrics to address]

CSV/JSON Output (for kpi-alert-system)

When feeding downstream systems, output as:

{
  "period": "2026-Q1",
  "mrr": 125000,
  "arr": 1500000,
  "nrr": 118,
  "grr": 87,
  "logo_churn_annual": 4.2,
  "quick_ratio": 3.1,
  "ltv_cac": 4.5,
  "cac_payback_months": 11,
  "magic_number": 1.8,
  "rule_of_40": 52,
  "burn_multiple": 0.9
}

Cohort Retention Analysis

When cohort data is available, build a retention table:

Cohort  Mo1   Mo2   Mo3   Mo6   Mo12
Jan-25  100%  89%   82%   74%   68%
Feb-25  100%  91%   85%   77%   —
Mar-25  100%  88%   81%   —     —

Key outputs:

  • Average Day-30 retention (target: >85% for SMB, >90% enterprise)
  • 12-month retention (logo) — critical for LTV calculation
  • Revenue cohort retention (expansion often offsets logo churn)

Segment Benchmarks

By Stage

StageARRNRR TargetLogo ChurnRule of 40
Pre-Seed<$1M>100%<10%N/A
Seed$1-5M>105%<8%Growth-driven
Series A$5-20M>110%<5%≥20
Series B+$20M+>120%<3%≥40

By Customer Segment

SegmentNRR TargetLogo ChurnCAC Payback
SMB>100%<10%/yr<6 months
Mid-Market>110%<5%/yr<12 months
Enterprise>120%<2%/yr<18 months

Integration with Other Skills

→ startup-financial-model

Pass current-period actuals as seed inputs for the 3-statement model:

  • Use NRR to project expansion revenue
  • Use logo churn to model customer count trajectory
  • CAC payback informs S&M budget efficiency

→ kpi-alert-system

Register thresholds for automated alerts:

NRR < 100%       → CRITICAL alert (negative net expansion)
Logo churn > 7%  → WARNING alert (annualized)
Quick ratio < 2  → WARNING alert
LTV:CAC < 3      → WARNING alert
Rule of 40 < 30  → INFO alert

→ investor-memo-generator

Feed the snapshot JSON into the metrics section of investor memos. Include MoM/QoQ trends, not just point-in-time values.


Examples

Example 1: Quick Snapshot

Input: "Our MRR is $125K. We added $18K new, $12K expansion, lost $8K churn, $3K contraction. 210 customers, lost 7. Spent $45K on S&M. 75% gross margin. YoY growth 85%. Burning $80K/mo."

Output: Full snapshot with grades, flagging Rule of 40 and burn multiple.

Example 2: Investor Prep

Input: "Prepare Q1 2026 SaaS metrics for our Series A data room" Output: Formatted snapshot + cohort table + segment breakdown + narrative summary with investor framing.

Example 3: Board Deck Metrics Slide

Input: "Give me the 6 most important metrics for our board deck" Output: MRR/ARR, NRR, Logo Churn, LTV:CAC, CAC Payback, Rule of 40 — each with prior period comparison and trend indicator.


Red Flags to Surface

Always flag proactively:

  • NRR < 100% — losing more than you're gaining from existing customers
  • Quick Ratio < 1 — churn eating new growth
  • LTV:CAC < 2 — acquiring customers unprofitably
  • CAC Payback > 24 months — severe capital efficiency problem
  • Burn Multiple > 3 — burning too much per dollar of new ARR
  • Logo churn > 15%/yr — product-market fit concern

*Precision. Integrity. Results. — PrecisionLedger*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

92.21%
按下载量换算1,736

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills