# Send Revenue Operations to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "revenue-operations",
    "name": "Revenue Operations",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/alirezarezvani/revenue-operations",
    "canonicalUrl": "https://clawhub.ai/alirezarezvani/revenue-operations",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/revenue-operations",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=revenue-operations",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/expected_output.json",
      "assets/forecast_report_template.md",
      "assets/gtm_dashboard_template.md",
      "assets/pipeline_review_template.md",
      "assets/sample_forecast_data.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/revenue-operations"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/revenue-operations",
    "downloadUrl": "https://openagent3.xyz/downloads/revenue-operations",
    "agentUrl": "https://openagent3.xyz/skills/revenue-operations/agent",
    "manifestUrl": "https://openagent3.xyz/skills/revenue-operations/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/revenue-operations/agent.md"
  }
}
```
## Documentation

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

# 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

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

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:

{
  "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:

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:

RatingMAPE RangeInterpretationExcellent<10%Highly predictable, data-driven processGood10-15%Reliable forecasting with minor varianceFair15-25%Needs process improvementPoor>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}
    ]
  }
}

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

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

Key Metrics Calculated:

MetricFormulaTargetMagic NumberNet New ARR / Prior Period S&M Spend>0.75LTV:CAC(ARPA x Gross Margin / Churn Rate) / CAC>3:1CAC PaybackCAC / (ARPA x Gross Margin) months<18 monthsBurn MultipleNet Burn / Net New ARR<2xRule of 40Revenue 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
  }
}

### Weekly Pipeline Review

Use this workflow for your weekly pipeline inspection cadence.

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


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



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


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?)



Document using template: Use assets/pipeline_review_template.md


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

### Forecast Accuracy Review

Use monthly or quarterly to evaluate and improve forecasting discipline.

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


Generate accuracy report:
python scripts/forecast_accuracy_tracker.py forecast_history.json --format text



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


Analyze patterns:

Is MAPE trending down (improving)?
Which reps or segments have the highest error rates?
Is there systematic over- or under-forecasting?



Document using template: Use assets/forecast_report_template.md


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.

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


Calculate efficiency metrics:
python scripts/gtm_efficiency_calculator.py quarterly_data.json --format text



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


Benchmark against targets:

Magic Number (>0.75)
LTV:CAC (>3:1)
CAC Payback (<18 months)
Rule of 40 (>40%)



Document using template: Use assets/gtm_dashboard_template.md


Strategic decisions: Adjust spend allocation, optimize channels, improve retention

### Quarterly Business Review

Combine all three tools for a comprehensive QBR analysis.

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

### Reference Documentation

ReferenceDescriptionRevOps Metrics GuideComplete metrics hierarchy, definitions, formulas, and interpretationPipeline Management FrameworkPipeline best practices, stage definitions, conversion benchmarksGTM Efficiency BenchmarksSaaS benchmarks by stage, industry standards, improvement strategies

### Templates

TemplateUse CasePipeline Review TemplateWeekly/monthly pipeline inspection documentationForecast Report TemplateForecast accuracy reporting and trend analysisGTM Dashboard TemplateGTM efficiency dashboard for leadership reviewSample Pipeline DataExample input for pipeline_analyzer.pyExpected OutputReference output from pipeline_analyzer.py
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: alirezarezvani
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/revenue-operations)
- [Send to Agent page](https://openagent3.xyz/skills/revenue-operations/agent)
- [JSON manifest](https://openagent3.xyz/skills/revenue-operations/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/revenue-operations/agent.md)
- [Download page](https://openagent3.xyz/downloads/revenue-operations)