Estimate engineering portfolio VAR

Estimate correlated cost, schedule, success, value-decay and portfolio downside VaR/CVaR with initiative tail attribution.

What it's for

Initiatives fail together more often than they fail independently. This models cost, schedule, success and value-decay as correlated, and attributes the downside tail back to the initiatives driving it.

Adds an investor-grade engineering portfolio risk view rather than presenting roadmap expected values without downside dependence.

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
correlations array of objects (3 fields) Evidence Yes
cost_duration_correlation number ≥ -0.95, ≤ 0.95 Your calibration Optional
initiatives array of objects (9 fields) Evidence Yes
seed integer Numerical control Optional
simulations integer ≥ 1000 Numerical control Optional

Each initiatives record

Field Type Required
committed_cost number (> 0) Yes
cost_log_sigma number (≥ 0, ≤ 3) Yes
deadline_days number (≥ 0) Yes
duration_log_sigma number (≥ 0, ≤ 3) Yes
duration_median_days number (> 0) Yes
id string (non-empty) Yes
late_value_decay_per_day number (≥ 0) Yes
success_probability number (≥ 0, ≤ 1) Yes
value_if_success number (≥ 0) Yes
Example input
{
  "correlations": [
    {
      "correlation": 0.4,
      "initiative_a": "enterprise",
      "initiative_b": "platform"
    }
  ],
  "cost_duration_correlation": 0.5,
  "initiatives": [
    {
      "committed_cost": 100000,
      "cost_log_sigma": 0.35,
      "deadline_days": 100,
      "duration_log_sigma": 0.25,
      "duration_median_days": 90,
      "id": "enterprise",
      "late_value_decay_per_day": 0.01,
      "success_probability": 0.7,
      "value_if_success": 220000
    },
    {
      "committed_cost": 100000,
      "cost_log_sigma": 0.35,
      "deadline_days": 100,
      "duration_log_sigma": 0.25,
      "duration_median_days": 90,
      "id": "platform",
      "late_value_decay_per_day": 0.01,
      "success_probability": 0.7,
      "value_if_success": 220000
    },
    {
      "committed_cost": 100000,
      "cost_log_sigma": 0.35,
      "deadline_days": 100,
      "duration_log_sigma": 0.25,
      "duration_median_days": 90,
      "id": "mobile",
      "late_value_decay_per_day": 0.01,
      "success_probability": 0.7,
      "value_if_success": 220000
    }
  ],

Truncated for display — the full payload is 47 lines.

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": [
    "Correlation is applied to latent cost, duration, and success-risk factors across initiatives.",
    "Tail contributions are conditional shortfalls in the portfolio's worst five percent and sum to CVaR up to simulation rounding."
  ],
  "initiatives": [
    {
      "cost": {
        "mean": 99415.63,
        "p05": 53028.91,
        "p50": 91890.76,
        "p95": 170194.26
      },
      "cvar_95_shortfall_contribution": 166423.56,
      "expected_realized_net_value": 52814.37,
      "initiative_id": "enterprise",
      "probability_on_time": 0.656,
      "probability_success": 0.733,
      "realized_value": {
        "mean": 152230.01,
        "p05": 0,
        "p50": 217039.25,
        "p95": 220000
      }
    },
    {
      "cost": {
        "mean": 99448.39,
        "p05": 51520.58,
        "p50": 92616.09,
        "p95": 167832.06
      },
      "cvar_95_shortfall_contribution": 156240.21,
      "expected_realized_net_value": 51242.82,
      "initiative_id": "platform",
      "probability_on_time": 0.652,
      "probability_success": 0.727,
      "realized_value": {
        "mean": 150691.21,
        "p05": 0,
        "p50": 213668.32,
        "p95": 220000
      }
    },

Truncated for display — the full payload is 103 lines.

How it works

Constrained optimization — Pick the best feasible option under real limits — budget, headcount, dependencies, capacity — rather than ranking a list and hoping it fits.

  1. 1 Estimate correlated cost, schedule, success, value-decay and portfolio downside VaR/CVaR with initiative tail attribution.
  2. 2 Evaluate the method-specific diagnostics and gates returned by the function, then abstain unless the declared decision clears them under locally governed thresholds.

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

  • Objectives use commensurable locally governed value units, constraints reflect real feasibility, and uncertainty covers plausible adverse inputs.
  • The recommendation is optimal only for its stated objective, feasible set, evidence, and solver guarantee; it is not a universal management optimum.

Minimum evidence

  • initiatives: required and organization-defined
  • correlations: required and organization-defined

How to validate it

Backtest the chosen action against simple feasible baselines on held-out scenarios, sweep costs/constraints/risk tolerance, and require constraint feasibility under adverse inputs.

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

  • metric/outcome definitions, entity grain, observation window, costs, thresholds, priors, and constraints represented by the function inputs

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": "estimate correlated cost schedule success valuedecay" }
  → finds "estimate_engineering_portfolio_var"

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

gitrevio_capability_run
  { "capability_id": "estimate_engineering_portfolio_var", "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

Optimize error budget portfolio

Choose dependency-safe reliability interventions under money and capacity constraints using posterior SLO-breach economics.

Sequential Bayesian & bandits

Optimize roadmap real options

Optimize continue, defer, abandon and expand decisions across staged initiatives using Bellman recursion and current capital rationing.

Constrained optimization

Aggregate risk register copula

Aggregate risk-register occurrence and lognormal severity marginals through a validated Gaussian copula into expected loss, VaR, CVaR, dependence amplification, and tail shares.

Statistical audit & measurement

Allocate restless bandit interventions

Allocate scarce recurring interventions across evolving Markov units with Whittle indices, explicit indexability checks, and paired policy simulation.

Sequential Bayesian & bandits

Attribute commercial dependency tail loss

Calculate expected loss, VaR and CVaR for commercial value concentrated in shared technical components, then allocate every modeled tail-loss dollar exactly once across components with normalized negative-log survival hazard rather than overlapping leave-one-out sensitivities.

Forecasting & survival

Audit commercial resilience claim integrity

Audit resilience ROI claims against a unique commercial-source to technical-component graph: recompute each action's avoided loss under joint failure scenarios, cap support at graph-derived value, detect duplicate effects, probability drift and weak evidence, and prevent overlapping component benefits from being sold twice.

Network & dependency analysis

See every tool in Risk, tails & resilience →

Ready to See Your Engineering work clearly?

Request a free demo