revenue-operations by alirezarezvani/claude-skills
npx skills add https://github.com/alirezarezvani/claude-skills --skill revenue-operations为 SaaS 收入团队提供销售管道分析、预测准确性跟踪和 GTM 效率衡量。
# 分析管道健康状况和覆盖率
python scripts/pipeline_analyzer.py --input assets/sample_pipeline_data.json --format text
# 跟踪多个周期的预测准确性
python scripts/forecast_accuracy_tracker.py assets/sample_forecast_data.json --format text
# 计算 GTM 效率指标
python scripts/gtm_efficiency_calculator.py assets/sample_gtm_data.json --format text
分析销售管道健康状况,包括覆盖率、阶段转化率、交易速度、账龄风险和集中度风险。
输入: 包含交易、配额和阶段配置的 JSON 文件 输出: 覆盖率、转化率、速度指标、账龄标记、风险评估
用法:
# 文本报告(人类可读)
python scripts/pipeline_analyzer.py --input pipeline.json --format text
# JSON 输出(用于仪表板/集成)
python scripts/pipeline_analyzer.py --input pipeline.json --format json
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
计算的关键指标:
输入模式:
{
"quota": 500000,
"stages": ["Discovery", "Qualification", "Proposal", "Negotiation", "Closed Won"],
"average_cycle_days": 45,
"deals": [
{
"id": "D001",
"name": "Acme Corp",
"stage": "Proposal",
"value": 85000,
"age_days": 32,
"close_date": "2025-03-15",
"owner": "rep_1"
}
]
}
使用 MAPE 跟踪预测准确性随时间的变化,检测系统性偏差,分析趋势,并提供分类级别的细分。
输入: 包含预测周期和可选分类细分的 JSON 文件 输出: MAPE 分数、偏差分析、趋势、分类细分、准确性评级
用法:
# 跟踪预测准确性
python scripts/forecast_accuracy_tracker.py forecast_data.json --format text
# 用于趋势分析的 JSON 输出
python scripts/forecast_accuracy_tracker.py forecast_data.json --format json
计算的关键指标:
准确性评级:
| 评级 | MAPE 范围 | 解释 |
|---|---|---|
| 优秀 | <10% | 高度可预测,数据驱动流程 |
| 良好 | 10-15% | 预测可靠,方差较小 |
| 一般 | 15-25% | 需要流程改进 |
| 较差 | >25% | 预测方法存在显著差距 |
输入模式:
{
"forecast_periods": [
{"period": "2025-Q1", "forecast": 480000, "actual": 520000},
{"period": "2025-Q2", "forecast": 550000, "actual": 510000}
],
"category_breakdowns": {
"by_rep": [
{"category": "Rep A", "forecast": 200000, "actual": 210000},
{"category": "Rep B", "forecast": 280000, "actual": 310000}
]
}
}
计算核心 SaaS GTM 效率指标,提供行业基准、评级和改进建议。
输入: 包含收入、成本和客户指标的 JSON 文件 输出: 魔力数字、LTV:CAC、CAC 回收期、烧钱倍数、40 法则、NDR 及评级
用法:
# 计算所有 GTM 效率指标
python scripts/gtm_efficiency_calculator.py gtm_data.json --format text
# 用于仪表板的 JSON 输出
python scripts/gtm_efficiency_calculator.py gtm_data.json --format json
计算的关键指标:
| 指标 | 公式 | 目标 |
|---|---|---|
| 魔力数字 | 净新增 ARR / 上一期销售与营销支出 | >0.75 |
| LTV:CAC | (ARPA x 毛利率 / 流失率) / CAC | >3:1 |
| CAC 回收期 | CAC / (ARPA x 毛利率) 月数 | <18 个月 |
| 烧钱倍数 | 净烧钱 / 净新增 ARR | <2 倍 |
| 40 法则 | 收入增长率 % + FCF 利润率 % | >40% |
| 净美元留存率 | (期初 ARR + 扩展 - 收缩 - 流失) / 期初 ARR | >110% |
输入模式:
{
"revenue": {
"current_arr": 5000000,
"prior_arr": 3800000,
"net_new_arr": 1200000,
"arpa_monthly": 2500,
"revenue_growth_pct": 31.6
},
"costs": {
"sales_marketing_spend": 1800000,
"cac": 18000,
"gross_margin_pct": 78,
"total_operating_expense": 6500000,
"net_burn": 1500000,
"fcf_margin_pct": 8.4
},
"customers": {
"beginning_arr": 3800000,
"expansion_arr": 600000,
"contraction_arr": 100000,
"churned_arr": 300000,
"annual_churn_rate_pct": 8
}
}
将此工作流用于每周的管道检查节奏。
生成管道报告:
python scripts/pipeline_analyzer.py --input current_pipeline.json --format text
审查关键指标:
使用模板记录: 使用 assets/pipeline_review_template.md
行动项: 处理账龄交易,重新分配管道集中度,填补覆盖率缺口
每月或每季度使用,以评估和改进预测纪律。
生成准确性报告:
python scripts/forecast_accuracy_tracker.py forecast_history.json --format text
分析模式:
使用模板记录: 使用 assets/forecast_report_template.md
改进措施: 指导偏差高的销售代表,调整方法,改进数据质量
每季度或在董事会准备期间使用,以评估市场进入效率。
计算效率指标:
python scripts/gtm_efficiency_calculator.py quarterly_data.json --format text
与目标进行基准比较:
使用模板记录: 使用 assets/gtm_dashboard_template.md
战略决策: 调整支出分配,优化渠道,提高留存率
结合所有三个工具进行全面的 QBR 分析。
| 参考 | 描述 |
|---|---|
| RevOps 指标指南 | 完整的指标层次结构、定义、公式和解释 |
| 管道管理框架 | 管道最佳实践、阶段定义、转化基准 |
| GTM 效率基准 | 按阶段划分的 SaaS 基准、行业标准、改进策略 |
每周安装数
93
代码仓库
GitHub 星标数
4.1K
首次出现
2026年2月6日
安全审计
安装于
claude-code81
gemini-cli73
codex72
opencode71
cursor67
github-copilot65
Pipeline analysis, forecast accuracy tracking, and GTM efficiency measurement for SaaS revenue teams.
# Analyze pipeline health and coverage
python scripts/pipeline_analyzer.py --input assets/sample_pipeline_data.json --format text
# Track forecast accuracy over multiple periods
python scripts/forecast_accuracy_tracker.py assets/sample_forecast_data.json --format text
# Calculate GTM efficiency metrics
python scripts/gtm_efficiency_calculator.py assets/sample_gtm_data.json --format text
Analyzes sales pipeline health including coverage ratios, stage conversion rates, deal velocity, aging risks, and concentration risks.
Input: JSON file with deals, quota, and stage configuration Output: Coverage ratios, conversion rates, velocity metrics, aging flags, risk assessment
Usage:
# Text report (human-readable)
python scripts/pipeline_analyzer.py --input pipeline.json --format text
# JSON output (for dashboards/integrations)
python scripts/pipeline_analyzer.py --input pipeline.json --format json
Key Metrics Calculated:
Input Schema:
{
"quota": 500000,
"stages": ["Discovery", "Qualification", "Proposal", "Negotiation", "Closed Won"],
"average_cycle_days": 45,
"deals": [
{
"id": "D001",
"name": "Acme Corp",
"stage": "Proposal",
"value": 85000,
"age_days": 32,
"close_date": "2025-03-15",
"owner": "rep_1"
}
]
}
Tracks forecast accuracy over time using MAPE, detects systematic bias, analyzes trends, and provides category-level breakdowns.
Input: JSON file with forecast periods and optional category breakdowns Output: MAPE score, bias analysis, trends, category breakdown, accuracy rating
Usage:
# Track forecast accuracy
python scripts/forecast_accuracy_tracker.py forecast_data.json --format text
# JSON output for trend analysis
python scripts/forecast_accuracy_tracker.py forecast_data.json --format json
Key Metrics Calculated:
Accuracy Ratings:
| Rating | MAPE Range | Interpretation |
|---|---|---|
| Excellent | <10% | Highly predictable, data-driven process |
| Good | 10-15% | Reliable forecasting with minor variance |
| Fair | 15-25% | Needs process improvement |
| Poor | >25% | Significant forecasting methodology gaps |
Input Schema:
{
"forecast_periods": [
{"period": "2025-Q1", "forecast": 480000, "actual": 520000},
{"period": "2025-Q2", "forecast": 550000, "actual": 510000}
],
"category_breakdowns": {
"by_rep": [
{"category": "Rep A", "forecast": 200000, "actual": 210000},
{"category": "Rep B", "forecast": 280000, "actual": 310000}
]
}
}
Calculates core SaaS GTM efficiency metrics with industry benchmarking, ratings, and improvement recommendations.
Input: JSON file with revenue, cost, and customer metrics Output: Magic Number, LTV:CAC, CAC Payback, Burn Multiple, Rule of 40, NDR with ratings
Usage:
# Calculate all GTM efficiency metrics
python scripts/gtm_efficiency_calculator.py gtm_data.json --format text
# JSON output for dashboards
python scripts/gtm_efficiency_calculator.py gtm_data.json --format json
Key Metrics Calculated:
| Metric | Formula | Target |
|---|---|---|
| Magic Number | Net New ARR / Prior Period S&M Spend | >0.75 |
| LTV:CAC | (ARPA x Gross Margin / Churn Rate) / CAC | >3:1 |
| CAC Payback | CAC / (ARPA x Gross Margin) months | <18 months |
| Burn Multiple | Net Burn / Net New ARR | <2x |
| Rule of 40 | Revenue Growth % + FCF Margin % | >40% |
| Net Dollar Retention | (Begin ARR + Expansion - Contraction - Churn) / Begin ARR | >110% |
Input Schema:
{
"revenue": {
"current_arr": 5000000,
"prior_arr": 3800000,
"net_new_arr": 1200000,
"arpa_monthly": 2500,
"revenue_growth_pct": 31.6
},
"costs": {
"sales_marketing_spend": 1800000,
"cac": 18000,
"gross_margin_pct": 78,
"total_operating_expense": 6500000,
"net_burn": 1500000,
"fcf_margin_pct": 8.4
},
"customers": {
"beginning_arr": 3800000,
"expansion_arr": 600000,
"contraction_arr": 100000,
"churned_arr": 300000,
"annual_churn_rate_pct": 8
}
}
Use this workflow for your weekly pipeline inspection cadence.
Generate pipeline report:
python scripts/pipeline_analyzer.py --input current_pipeline.json --format text
Review key indicators:
Document using template: Use assets/pipeline_review_template.md
Action items: Address aging deals, redistribute pipeline concentration, fill coverage gaps
Use monthly or quarterly to evaluate and improve forecasting discipline.
Generate accuracy report:
python scripts/forecast_accuracy_tracker.py forecast_history.json --format text
Analyze patterns:
Document using template: Use assets/forecast_report_template.md
Improvement actions: Coach high-bias reps, adjust methodology, improve data hygiene
Use quarterly or during board prep to evaluate go-to-market efficiency.
Calculate efficiency metrics:
python scripts/gtm_efficiency_calculator.py quarterly_data.json --format text
Benchmark against targets:
Document using template: Use assets/gtm_dashboard_template.md
Strategic decisions: Adjust spend allocation, optimize channels, improve retention
Combine all three tools for a comprehensive QBR analysis.
| Reference | Description |
|---|---|
| RevOps Metrics Guide | Complete metrics hierarchy, definitions, formulas, and interpretation |
| Pipeline Management Framework | Pipeline best practices, stage definitions, conversion benchmarks |
| GTM Efficiency Benchmarks | SaaS benchmarks by stage, industry standards, improvement strategies |
| Template | Use Case |
|---|---|
| Pipeline Review Template | Weekly/monthly pipeline inspection documentation |
| Forecast Report Template | Forecast accuracy reporting and trend analysis |
| GTM Dashboard Template | GTM efficiency dashboard for leadership review |
| Sample Pipeline Data | Example input for pipeline_analyzer.py |
| Expected Output | Reference output from pipeline_analyzer.py |
Weekly Installs
93
Repository
GitHub Stars
4.1K
First Seen
Feb 6, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
claude-code81
gemini-cli73
codex72
opencode71
cursor67
github-copilot65
Excel财务建模规范与xlsx文件处理指南:专业格式、零错误公式与数据分析
46,700 周安装
OnchainKit 区块链开发SDK:构建链上应用的身份、钱包、交易组件
104 周安装
YouTube API 替代方案:无需配额获取字幕、搜索和频道数据 | TranscriptAPI
106 周安装
AWS Cognito 身份验证与用户管理:Web/移动应用身份验证、授权、用户池、身份池详解
90 周安装
App Store 拒绝诊断与修复指南:9种模式系统化解决审核被拒问题
96 周安装
Capacitor CI/CD 自动化构建部署指南 - GitHub Actions 工作流配置教程
129 周安装
职业路径规划工具 - Claude技能安装指南与GitHub仓库详情
97 周安装