Audit ROI denominator integrity

Reconcile each claimed ROI investment denominator with evidenced cost entries, required categories, inclusion fractions, and shared evidence identity, then recompute ROI before a business case reaches prioritization.

What it's for

Stops attractive ROI claims from winning the roadmap by omitting implementation, enablement, run, quality, or opportunity costs.

What you give it

Inputs split into evidence read from your connected systems, calibration your team owns, and numerical controls that affect precision but never the result's meaning.

Field Type Role Required
business_cases array of objects (5 fields) Evidence Yes
max_detail_rows integer ≥ 1, ≤ 500 Numerical control Optional
maximum_denominator_relative_error number ≥ 0, ≤ 1 Your calibration Optional
maximum_roi_absolute_error number ≥ 0, ≤ 10 Your calibration Optional
minimum_inclusion_fraction number ≥ 0, ≤ 1 Your calibration Optional
required_cost_categories array of string ≥ 1 item Evidence Yes

Each business_cases record

Field Type Required
claimed_benefit number Yes
claimed_investment_cost number (≥ 0) Yes
claimed_roi number Yes
cost_entries array of objects (5 fields) Yes
id string (non-empty) Yes
Example input
{
  "business_cases": [
    {
      "claimed_benefit": 900,
      "claimed_investment_cost": 500,
      "claimed_roi": 0.8,
      "cost_entries": [
        {
          "amount": 300,
          "category": "build",
          "evidence_id": "ledger-build",
          "id": "build",
          "included_fraction": 1
        },
        {
          "amount": 80,
          "category": "enablement",
          "evidence_id": "ledger-enable",
          "id": "enable",
          "included_fraction": 1
        },
        {
          "amount": 120,
          "category": "run",
          "evidence_id": "ledger-run",
          "id": "run",
          "included_fraction": 1
        }
      ],
      "id": "platform-case"
    }
  ],
  "required_cost_categories": [
    "build",
    "enablement",
    "run"
  ]
}

What you get back

This is the actual output of running the example above — computed by the same function the platform calls, not an illustration.

Example output
{
  "assumptions": [
    "Required cost categories and inclusion policy were frozen before inspecting claimed ROI.",
    "Cost entries are incremental, use one horizon/currency/basis, and retain shared evidence identity.",
    "Passing denominator arithmetic does not validate claimed benefits or causal attribution."
  ],
  "case_diagnostics": [
    {
      "business_case_id": "platform-case",
      "claimed_investment_cost": 500,
      "claimed_roi": 0.8,
      "cost_by_category": {
        "build": 300,
        "enablement": 80,
        "run": 120
      },
      "denominator_relative_error": 0,
      "duplicate_evidence_ids": [],
      "included_fraction": 1,
      "integrity_passed": true,
      "missing_required_categories": [],
      "recomputed_roi": 0.8,
      "reconciled_investment_cost": 500,
      "roi_absolute_error": 0,
      "unknown_categories": []
    }
  ],
  "configuration": {
    "maximum_denominator_relative_error": 0.02,
    "maximum_roi_absolute_error": 0.02,
    "minimum_inclusion_fraction": 0.999,
    "required_cost_categories": [
      "build",
      "enablement",
      "run"
    ]
  },
  "decision": "roi_denominator_integrity_supported",
  "method": "roi_denominator_integrity_audit_v1",
  "summary": {
    "aggregate_denominator_gap": 0,
    "business_case_count": 1,
    "failing_case_count": 0,
    "passing_case_count": 1,

Truncated for display — the full payload is 49 lines.

How it works

Statistical audit & measurement — Check whether a number is fit to decide on: coverage, timing, reconciliation, and the gaps a dashboard hides.

  1. 1 Freeze required cost categories, currency/horizon/basis, inclusion policy, and error tolerances before reading the claimed ROI cases.
  2. 2 Reconcile evidenced and included costs by category, detect missing/unknown categories and duplicate evidence identity, and compare the claimed denominator with the full evidenced denominator.
  3. 3 Recompute ROI from claimed benefit and reconciled cost, report every failed invariant, and block downstream ROI ranking when any case fails.

Before you trust it

Every tool in the catalog ships with the conditions under which its answer is meaningful — and the conditions under which it should abstain instead of guessing.

Assumptions & guardrails

  • Metric definitions, weights, aggregate grain, sampling, missingness, dependence, and comparison windows correspond to the management claim being audited.
  • Cost entries are incremental, complete, consistently scoped, and preserve evidence identity across systems.
  • Association, instability, or measurement quality is not a causal effect and must not be converted directly into an individual employment decision.
  • Passing denominator integrity validates arithmetic and scope only; it does not validate benefits, attribution, or whether the initiative should proceed.

Minimum evidence

  • business_cases: required and organization-defined
  • required_cost_categories: at least 1 rows/items

How to validate it

Validate on future periods or held-out aggregate units, compare with a simple baseline, and require stability across plausible metric definitions and decision thresholds.

Calibrating it to your org

Same for everyone

The mathematical kernel, validation rules, method version, and JSON output semantics are organization-independent; no tenant-trained coefficients or company benchmark is embedded in the function.

Specific to you

  • case-level cost entries reconciled to one currency, horizon, incremental boundary, and inclusion policy
  • required categories, capitalization/inclusion rules, currency, horizon, denominator tolerance, ROI tolerance, and evidence identity policy

Calibration workflow

  1. 1 Define the management decision, target outcome, aggregate unit, privacy boundary, cadence, and prediction/intervention horizon for this organization.
  2. 2 Build a tenant-scoped historical cohort using only information available before each prediction or decision; preserve zero periods, censoring, assignment probabilities, and unresolved outcomes when the method requires them.
  3. 3 Estimate statistical parameters on training history, but obtain costs, utilities, risk tolerance, practical-effect thresholds, capacity, and policy constraints from accountable decision owners.
  4. 4 Validate on later time windows or held-out aggregate units at the deployment grain, against a simple baseline and the function-specific validation strategy.
  5. 5 Deploy only if the returned decision clears evidence, overlap, calibration, robustness, and guardrail checks; warning, unsupported, schema-gap, and fallback decisions are abstentions.
  6. 6 Monitor realized outcomes, data drift, coverage, and decision regret; recalibrate at a governed cadence or after a detected regime/definition change, never merely because a stakeholder dislikes the result.

Call it from your AI

You don't wire up 388 tools in your MCP client. The GitRevio MCP server exposes 18 tools, three of which let an agent search the catalog, read a tool's schema, and run it — so the assistant finds this one on its own.

gitrevio_capabilities_search
  { "q": "reconcile each claimed roi investment denominator" }
  → finds "audit_roi_denominator_integrity"

gitrevio_capability_describe
  { "capability_id": "audit_roi_denominator_integrity" }
  → returns the input schema and agent guidance shown on this page

gitrevio_capability_run
  { "capability_id": "audit_roi_denominator_integrity", "arguments": { ... } }
  → returns the result shown above

Works in Claude Desktop, Claude Code, Cursor, Cline, Continue.dev, Goose and Aider. See the MCP server.

Related tools

Audit benefit double counting

Reconcile business-case benefit claims to unique economic source pools and allocation fractions, exposing overallocated sources and claim-level mismatches before portfolio value is aggregated.

Constrained optimization

Audit cost allocation consistency

Audit whether shared engineering, platform, cloud, vendor, or operating cost pools reconcile to source totals and follow their declared pro-rata allocation bases at every target.

Statistical audit & measurement

Build reverse stress scenarios

Solve the minimum standardized bounded combination of adverse driver shocks needed to breach a governed operating or financial threshold, with driver contributions, binding bounds, and single-driver break points.

Decision analysis

Calculate capital efficiency frontier

Construct a monotone concave capital-to-realized-value envelope, estimate each initiative or portfolio company's relative capital efficiency and value gap, and expose diminishing frontier returns without arbitrary weights.

Constrained optimization

Calculate engineering unit economics

Calculate uncertainty-aware engineering cost and net incremental contribution per adopted business outcome across aligned scenarios, including quality/run cost and downside-margin probability.

Decision analysis

Estimate liquidity at risk

Estimate liquidity-at-risk, tail funding need, committed-facility exhaustion probability, and residual unfunded shortfall from aligned operating paths.

Statistical audit & measurement

See every tool in Finance & unit economics →

Ready to See Your Engineering work clearly?

Request a free demo