옵션
집 Skill 기타 revenue-operations

SaaS 매출 최적화를 위해 영업 파이프라인 현황, 매출 예측 정확도 및 시장 진출 효율성 지표를 분석합니다.

...모든 것을 확장하십시오
10
업데이트 된 시간 2026년 9월 2일

매출 운영

SaaS 매출 팀을 위한 파이프라인 분석, 예측 정확도 추적 및 GTM 효율성 측정.

출력 형식: 모든 스크립트는 --format text (사람이 읽기 쉬운 형식) 및 --format json (대시보드/통합)을 지원합니다.

빠른 시작

# 파이프라인 상태 및 커버리지 분석
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

도구 개요

1. 파이프라인 분석기

커버리지 비율, 단계별 전환율, 거래 속도, 노후화 위험, 집중 위험을 포함한 영업 파이프라인의 건전성을 분석합니다.

입력: 거래, 할당량 및 단계 구성이 포함된 JSON 파일 출력: 커버리지 비율, 전환율, 속도 지표, 노후화 플래그, 위험 평가

사용법:

python scripts/pipeline_analyzer.py --input pipeline.json --format text

계산되는 주요 지표:

  • 파이프라인 커버리지 비율 -- 총 파이프라인 가치 / 할당량 목표치 (정상 범위: 3~4배)
  • 단계별 전환율 -- 단계 간 진행률
  • 판매 속도 -- (기회 수 × 평균 거래 규모 × 수주율) / 평균 영업 주기
  • 거래 체류 기간 -- 단계별 평균 사이클 시간의 2배를 초과하는 거래 표시
  • 집중 위험 — 파이프라인의 40% 이상이 단일 거래에 집중된 경우 경고
  • 커버리지 격차 분석 -- 파이프라인이 부족한 분기를 식별

입력 스키마:

{
  "quota": 500000,
  "stages": ["발굴", "적격 심사", "제안", "협상", "성사"],
  "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"
    }
  ]
}

2. 예측 정확도 추적기

MAPE를 사용하여 시간 경과에 따른 예측 정확도를 추적하고, 체계적 편향을 감지하며, 추세를 분석하고, 카테고리별 세부 내역을 제공합니다.

입력: 예측 기간 및 선택적 카테고리별 분석이 포함된 JSON 파일 출력: MAPE 점수, 편향 분석, 추세, 카테고리별 분석, 정확도 등급

사용법:

python scripts/forecast_accuracy_tracker.py forecast_data.json --format text

계산되는 주요 지표:

  • MAPE -- mean(|실제값 - 예측값| / |실제값|) x 100
  • 예측 편향 -- 과대 예측(양수) 대 과소 예측(음수) 경향
  • 가중 정확도 -- 중요도를 고려하여 거래 금액으로 가중치를 부여한 MAPE
  • 기간별 추세 -- 시간 경과에 따른 정확도의 개선, 안정, 또는 하락
  • 범주별 분석 — 영업사원, 제품, 세그먼트 또는 사용자 정의 차원별 정확도

정확도 등급:

등급 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": "영업사원 B", "forecast": 280000, "actual": 310000}
    ]
  }
}

3. GTM 효율성 계산기

업계 벤치마킹, 평점 및 개선 권장 사항을 바탕으로 핵심 SaaS GTM 효율성 지표를 계산합니다.

입력: 매출, 비용 및 고객 지표가 포함된 JSON 파일 출력: 매직 넘버, LTV:CAC, CAC 회수 기간, 번 멀티플, 40의 법칙, 등급이 포함된 NDR

사용법:

python scripts/gtm_efficiency_calculator.py gtm_data.json --format text

계산되는 주요 지표:

지표 공식 목표
매직 넘버 순 신규 ARR / 전 기간 영업 및 마케팅 비용 >0.75
LTV:CAC (ARPA × 총마진 / 이탈률) / CAC >3:1
CAC 회수 기간 CAC / (ARPA × 매출 총이익)개월 <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
  }
}

수익 운영 워크플로우

주간 파이프라인 검토

주간 파이프라인 점검 주기에 이 워크플로를 사용하십시오.

  1. 입력 데이터 확인: 진행하기 전에 파이프라인 내보내기 데이터가 최신 상태이며, 모든 필수 필드(단계, 값, 마감일, 담당자)가 입력되었는지 확인하십시오.

  2. 파이프라인 보고서 생성:

    python scripts/pipeline_analyzer.py --input current_pipeline.json --format text
    
  3. 출력된 총계를 CRM 소스 시스템과대조하여 데이터 무결성을 확인하십시오.

  4. 주요 지표 검토:

    • 파이프라인 커버리지 비율(할당량의 3배 이상인가?)
    • 임계값을 초과한 거래 기간 (어떤 거래에 개입이 필요한가?)
    • 집중 위험 (소수의 대규모 거래에 지나치게 의존하고 있는가?)
    • 단계별 분포 (퍼널 형태가 균형 잡혀 있나요?)
  5. 템플릿을 사용하여 문서화: assets/pipeline_review_template.md 사용

  6. 실행 과제: 장기화된 거래 처리, 파이프라인 집중도 재분배, 커버리지 공백 메우기

예측 정확도 검토

월별 또는 분기별로 예측 체계를 평가하고 개선하십시오.

  1. 입력 데이터 확인: 실행 전에 모든 예측 기간에 해당하는 실적이 있는지, 누락된 기간이 없는지 확인하십시오.

  2. 정확도 보고서 생성:

    python scripts/forecast_accuracy_tracker.py forecast_history.json --format text
    
  3. 결론을 도출하기 전에 CRM의 ‘성사된 거래’ 기록과실적을 대조하여확인하십시오.

  4. 패턴 분석:

    • MAPE가 감소 추세(개선)를 보이고 있습니까?
    • 어떤 영업사원이나 세그먼트의 오차율이 가장 높은가요?
    • 체계적인 과대 또는 과소 예측이 발생하고 있는가?
  5. 템플릿을 사용하여 문서화하십시오: assets/forecast_report_template.md를 사용하십시오

  6. 개선 조치: 편향이 큰 영업 담당자 코칭, 방법론 조정, 데이터 품질 개선

시장 진출(GTM) 효율성 감사

분기별 또는 이사회 준비 과정에서 Go-to-Market 효율성을 평가하십시오.

  1. 입력 데이터 확인: 실행 전에 매출, 비용 및 고객 수치가 재무 기록과 일치하는지 확인하십시오.

  2. 효율성 지표 계산:

    python scripts/gtm_efficiency_calculator.py quarterly_data.json --format text
    
  3. 결과를 공유하기 전에계산된 ARR 및 총 지출액을 재무 시스템과 대조하여확인하십시오.

  4. 목표치와 비교 분석:

    • 매직 넘버 (>0.75)
    • LTV:CAC (>3:1)
    • CAC 회수 기간 (<18개월)
    • 40의 법칙 (>40%)
  5. 템플릿을 사용하여 문서 작성: assets/gtm_dashboard_template.md 사용

  6. 전략적 의사결정: 지출 배분 조정, 채널 최적화, 고객 유지율 향상

분기별 사업 검토(QBR)

세 가지 도구를 모두 결합하여 포괄적인 분기별 사업 검토(QBR) 분석을 수행하십시오.

  1. 미래 전망을 위한 파이프라인 분석기 실행
  2. 과거 데이터의 정확도를 확인하려면 예측 추적기를 실행하십시오
  3. 효율성 벤치마크를 위해 GTM 계산기를 실행하십시오
  4. 파이프라인 건전도와 예측 정확도를 상호 비교하십시오
  5. GTM 효율성 지표를 성장 목표와 연계하십시오

참조 문서

참조 설명
RevOps 지표 가이드 전체 지표 계층 구조, 정의, 계산식 및 해석
파이프라인 관리 프레임워크 파이프라인 모범 사례, 단계 정의, 전환 벤치마크
GTM 효율성 벤치마크 단계별 SaaS 벤치마크, 업계 표준, 개선 전략

템플릿

템플릿 사용 사례
파이프라인 검토 템플릿 주간/월간 파이프라인 점검 문서
예측 보고서 템플릿 예측 정확도 보고 및 추세 분석
GTM 대시보드 템플릿 경영진 검토용 GTM 효율성 대시보드
파이프라인 데이터 예시 pipeline_analyzer.py 입력 예시
예상 출력 pipeline_analyzer.py의 참조 출력
GitHub에서 보기
---
name: revenue-operations
description: Analyzes sales pipeline health, revenue forecasting accuracy, and go-to-market efficiency metrics for SaaS revenue optimization.
---

# Revenue Operations

Pipeline analysis, forecast accuracy tracking, and GTM efficiency measurement for SaaS revenue teams.

> **Output formats:** All scripts support `--format text` (human-readable) and `--format json` (dashboards/integrations).

---

## Quick Start

```bash
# 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
```

---

## Tools Overview

### 1. Pipeline Analyzer

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:**

```bash
python scripts/pipeline_analyzer.py --input pipeline.json --format text
```

**Key Metrics Calculated:**
- **Pipeline Coverage Ratio** -- Total pipeline value / quota target (healthy: 3-4x)
- **Stage Conversion Rates** -- Stage-to-stage progression rates
- **Sales Velocity** -- (Opportunities x Avg Deal Size x Win Rate) / Avg Sales Cycle
- **Deal Aging** -- Flags deals exceeding 2x average cycle time per stage
- **Concentration Risk** -- Warns when >40% of pipeline is in a single deal
- **Coverage Gap Analysis** -- Identifies quarters with insufficient pipeline

**Input Schema:**

```json
{
  "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"
    }
  ]
}
```

### 2. Forecast Accuracy Tracker

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:**

```bash
python scripts/forecast_accuracy_tracker.py forecast_data.json --format text
```

**Key Metrics Calculated:**
- **MAPE** -- mean(|actual - forecast| / |actual|) x 100
- **Forecast Bias** -- Over-forecasting (positive) vs under-forecasting (negative) tendency
- **Weighted Accuracy** -- MAPE weighted by deal value for materiality
- **Period Trends** -- Improving, stable, or declining accuracy over time
- **Category Breakdown** -- Accuracy by rep, product, segment, or any custom dimension

**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:**

```json
{
  "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}
    ]
  }
}
```

### 3. GTM Efficiency Calculator

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:**

```bash
python scripts/gtm_efficiency_calculator.py gtm_data.json --format text
```

**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:**

```json
{
  "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
  }
}
```

---

## Revenue Operations Workflows

### Weekly Pipeline Review

Use this workflow for your weekly pipeline inspection cadence.

1. **Verify input data:** Confirm pipeline export is current and all required fields (stage, value, close_date, owner) are populated before proceeding.

2. **Generate pipeline report:**
   ```bash
   python scripts/pipeline_analyzer.py --input current_pipeline.json --format text
   ```

3. **Cross-check output totals** against your CRM source system to confirm data integrity.

4. **Review key indicators:**
   - Pipeline coverage ratio (is it above 3x quota?)
   - Deals aging beyond threshold (which deals need intervention?)
   - Concentration risk (are we over-reliant on a few large deals?)
   - Stage distribution (is there a healthy funnel shape?)

5. **Document using template:** Use `assets/pipeline_review_template.md`

6. **Action items:** Address aging deals, redistribute pipeline concentration, fill coverage gaps

### Forecast Accuracy Review

Use monthly or quarterly to evaluate and improve forecasting discipline.

1. **Verify input data:** Confirm all forecast periods have corresponding actuals and no periods are missing before running.

2. **Generate accuracy report:**
   ```bash
   python scripts/forecast_accuracy_tracker.py forecast_history.json --format text
   ```

3. **Cross-check actuals** against closed-won records in your CRM before drawing conclusions.

4. **Analyze patterns:**
   - Is MAPE trending down (improving)?
   - Which reps or segments have the highest error rates?
   - Is there systematic over- or under-forecasting?

5. **Document using template:** Use `assets/forecast_report_template.md`

6. **Improvement actions:** Coach high-bias reps, adjust methodology, improve data hygiene

### GTM Efficiency Audit

Use quarterly or during board prep to evaluate go-to-market efficiency.

1. **Verify input data:** Confirm revenue, cost, and customer figures reconcile with finance records before running.

2. **Calculate efficiency metrics:**
   ```bash
   python scripts/gtm_efficiency_calculator.py quarterly_data.json --format text
   ```

3. **Cross-check computed ARR and spend totals** against your finance system before sharing results.

4. **Benchmark against targets:**
   - Magic Number (>0.75)
   - LTV:CAC (>3:1)
   - CAC Payback (<18 months)
   - Rule of 40 (>40%)

5. **Document using template:** Use `assets/gtm_dashboard_template.md`

6. **Strategic decisions:** Adjust spend allocation, optimize channels, improve retention

### Quarterly Business Review

Combine all three tools for a comprehensive QBR analysis.

1. Run pipeline analyzer for forward-looking coverage
2. Run forecast tracker for backward-looking accuracy
3. Run GTM calculator for efficiency benchmarks
4. Cross-reference pipeline health with forecast accuracy
5. Align GTM efficiency metrics with growth targets

---

## Reference Documentation

| Reference | Description |
|-----------|-------------|
| [RevOps Metrics Guide](references/revops-metrics-guide.md) | Complete metrics hierarchy, definitions, formulas, and interpretation |
| [Pipeline Management Framework](references/pipeline-management-framework.md) | Pipeline best practices, stage definitions, conversion benchmarks |
| [GTM Efficiency Benchmarks](references/gtm-efficiency-benchmarks.md) | SaaS benchmarks by stage, industry standards, improvement strategies |

---

## Templates

| Template | Use Case |
|----------|----------|
| [Pipeline Review Template](assets/pipeline_review_template.md) | Weekly/monthly pipeline inspection documentation |
| [Forecast Report Template](assets/forecast_report_template.md) | Forecast accuracy reporting and trend analysis |
| [GTM Dashboard Template](assets/gtm_dashboard_template.md) | GTM efficiency dashboard for leadership review |
| [Sample Pipeline Data](assets/sample_pipeline_data.json) | Example input for pipeline_analyzer.py |
| [Expected Output](assets/expected_output.json) | Reference output from pipeline_analyzer.py |

모든 파일

0개 파일

revenue-operations 설치

스킬 파일을 다운로드하여 .claude/skills/ 디렉터리에 압축을 풀어주세요.

ZIP 다운로드

저장소를 클론하고 스킬 파일을 프로젝트에 복사하세요.

git clone https://github.com/alirezarezvani/claude-skills/tree/main/business-growth/skills/revenue-operations # Copy SKILL.md to your .claude/skills/ directory

복사 복사
빠른 설정: 스킬 폴더를 .claude/skills/로 복사하세요. Claude가 해당 스킬을 자동으로 감지하여 사용할 것입니다.

관련 스킬

multica-creating-agents
업데이트 된 시간 2026년 8월 12일
tilemaps
업데이트 된 시간 2026년 8월 4일
v4-new-features
업데이트 된 시간 2026년 8월 4일
agent-github-pr-manager
업데이트 된 시간 2026년 8월 3일
OR