Infer competing root cause posterior
Rank competing, compound and unknown root mechanisms from company-local resolved incidents using partially pooled Dirichlet-Beta learning, strict temporal holdout scoring, reliability-tempered signals and posterior uncertainty rather than a single brittle traceback winner.
What it's for
Upgrades root-cause traceback from one deterministic path to a calibrated probability distribution across competing and co-occurring explanations, including an honest unknown state.
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 |
|---|---|---|---|
| as_of_ms | number ≥ 0 | Your calibration | Yes |
| current_observations | array of objects (6 fields) ≥ 0 items | Evidence | Yes |
| diagnostic_observations | array of objects (6 fields) | Evidence | Yes |
| holdout_fraction | number > 0, < 0.5 | Your calibration | Optional |
| hypotheses | array of objects (4 fields) | Evidence | Yes |
| max_detail_rows | integer ≥ 1, ≤ 100 | Numerical control | Optional |
| minimum_holdout_cases | integer ≥ 1 | Your calibration | Optional |
| minimum_log_loss_improvement | number | Your calibration | Optional |
| minimum_training_cases | integer ≥ 2 | Your calibration | Optional |
| posterior_draws | integer ≥ 200, ≤ 100000 | Numerical control | Optional |
| prior_pooling_strength | number ≥ 0 | Your calibration | Optional |
| random_seed | integer ≥ 0, ≤ 4294967295 | Your calibration | Optional |
| resolved_cases | array of objects (7 fields) | Evidence | Yes |
| signal_pooling_strength | number ≥ 0 | Your calibration | Optional |
| signals | array of objects (3 fields) | Evidence | Yes |
| target_scope_id | string non-empty | Your calibration | Yes |
Each resolved_cases
record
| Field | Type | Required |
|---|---|---|
| evidence_verified | boolean | Yes |
| id | string (non-empty) | Yes |
| occurred_at_ms | number (≥ 0) | Yes |
| outcome_mature | boolean | Yes |
| resolved_at_ms | number (≥ 0) | Yes |
| resolved_hypothesis_id | string (non-empty) | Yes |
| scope_id | string (non-empty) | Yes |
{
"as_of_ms": 130,
"current_observations": [
{
"evidence_verified": true,
"id": "current-queue",
"measurement_reliability": 0.95,
"observed_at_ms": 125,
"present": true,
"signal_id": "queue"
},
{
"evidence_verified": true,
"id": "current-defects",
"measurement_reliability": 0.95,
"observed_at_ms": 125,
"present": false,
"signal_id": "defects"
}
],
"diagnostic_observations": [
{
"case_id": "case-0",
"evidence_verified": true,
"id": "observation-case-0-queue",
"observed_at_ms": 0,
"present": true,
"signal_id": "queue"
},
{
"case_id": "case-0",
"evidence_verified": true,
"id": "observation-case-0-defects",
"observed_at_ms": 0,
"present": false,
"signal_id": "defects"
},
{
"case_id": "case-1",
"evidence_verified": true,
"id": "observation-case-1-queue",
"observed_at_ms": 10,
"present": false,
"signal_id": "queue" Truncated for display — the full payload is 362 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.
{
"configuration": {
"as_of_ms": 130,
"holdout_fraction": 0.2,
"minimum_log_loss_improvement": 0,
"prior_pooling_strength": 5,
"random_seed": 17,
"signal_pooling_strength": 10,
"target_scope_id": "company"
},
"decision": "use_ranked_hypotheses",
"failed_gates": [],
"guardrails": [
"A ranked hypothesis is a calibrated diagnosis, not a causal finding. Escalate causal language only after intervention, quasi-experimental or mechanistic evidence passes a separate causal-attribution review.",
"Resolved incidents must include every signal as present or absent. Missing telemetry cannot be encoded as a negative observation, and post-resolution signals are excluded to prevent label leakage.",
"The unknown/other hypothesis prevents forced certainty. Do not suppress it, collapse compound mechanisms, or identify a person as the cause from aggregate behavioral telemetry."
],
"hypothesis_ranking": [
{
"bayes_update_ratio": 1.452,
"hypothesis_id": "capacity",
"is_unknown": false,
"posterior_interval_lower": 0.2137,
"posterior_interval_upper": 0.7513,
"posterior_median": 0.4775,
"posterior_probability": 0.484,
"prior_probability": 0.3333
},
{
"bayes_update_ratio": 0.9215,
"hypothesis_id": "unknown",
"is_unknown": true,
"posterior_interval_lower": 0.096,
"posterior_interval_upper": 0.5667,
"posterior_median": 0.3122,
"posterior_probability": 0.3072,
"prior_probability": 0.3333
},
{
"bayes_update_ratio": 0.6265,
"hypothesis_id": "quality",
"is_unknown": false,
"posterior_interval_lower": 0.0586,
"posterior_interval_upper": 0.4447, Truncated for display — the full payload is 79 lines.
How it works
Sequential Bayesian & bandits — Learn while deciding — update beliefs as evidence arrives and choose where the next unit of effort is worth spending.
- 1 Build complete mature resolved incidents with one explicit present-or-absent row for every governed signal; reserve the latest local cases for a strict temporal holdout.
- 2 Estimate company-local hypothesis priors and signal likelihoods with governed shrinkage toward peer evidence, then compare held-out multiclass log loss with a prior-only baseline.
- 3 Condition Dirichlet-Beta posterior draws on current verified signals and their measurement reliability, preserving an explicit unknown/other state and uncertainty intervals.
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
- The likelihood or reward model, prior support, action logging, delayed outcomes, and any stationarity assumptions match the deployment process.
- Resolved labels are independently adjudicated, signal collection predates each incident label, missing telemetry is not encoded as absence, and signal dependence is acceptable or represented by compound hypotheses.
- Posterior probability and adaptive selection are model-conditional; they are not substitutes for randomized propensities or guaranteed safety.
- Posterior rank is diagnosis, not causal proof or blame; retain the unknown state and use intervention evidence before causal language.
Minimum evidence
- hypotheses: required and organization-defined
- signals: required and organization-defined
- resolved_cases: required and organization-defined
- diagnostic_observations: required and organization-defined
- current_observations: at least 0 rows/items
- target_scope_id: required and organization-defined
- as_of_ms: required and organization-defined
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
- tenant-local and peer complete incident-signal matrices split strictly by time, plus current verified signal states with prospectively calibrated measurement reliability
- hypothesis and compound-mechanism taxonomy, unknown-state semantics, signal window and missingness semantics, resolution adjudication, maturity, peer transport set, pooling strengths, holdout policy, minimum local support and deployment log-loss improvement
Calibration workflow
- 1 Define the management decision, target outcome, aggregate unit, privacy boundary, cadence, and prediction/intervention horizon for this organization.
- 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 Estimate statistical parameters on training history, but obtain costs, utilities, risk tolerance, practical-effect thresholds, capacity, and policy constraints from accountable decision owners.
- 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 Deploy only if the returned decision clears evidence, overlap, calibration, robustness, and guardrail checks; warning, unsupported, schema-gap, and fallback decisions are abstentions.
- 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": "rank competing compound and unknown root" }
→ finds "infer_competing_root_cause_posterior"
gitrevio_capability_describe
{ "capability_id": "infer_competing_root_cause_posterior" }
→ returns the input schema and agent guidance shown on this page
gitrevio_capability_run
{ "capability_id": "infer_competing_root_cause_posterior", "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 root cause traceback evidence integrity
Audit whether an anomaly traceback is complete, point-in-time, multiplicity-controlled and honestly labeled as temporal or causal, including every upstream candidate, path lag, edge identification basis and later root-recovery validation.
Estimate transportable root cause probability
Estimate how likely a mechanism actually caused an observed failure using transport-weighted Bayesian random-effects MCMC across remediation studies, posterior probability of necessity, convergence diagnostics and mandatory unmeasured-confounding sensitivity.
Audit CI pipeline evidence integrity
Audit the complete point-in-time change-to-pipeline-to-job-to-rerun cohort, exposing missing CI, orphan records, future leakage, inconsistent required-job outcomes, incomplete provider evidence and same-configuration fail-then-pass flake proxies without scoring people.
Audit incident learning evidence integrity
Audit the complete point-in-time incident-to-postmortem-to-corrective-action lineage, separating missing or contradictory evidence from genuine overdue learning debt without attributing individual fault.
Audit operational alert decision integrity
Audit every point-in-time operational alert evaluation by recomputing fire/suppress decisions and verifying effective policy, cooldown, evidence freshness, context, controls, severity routing, acknowledgement, action and mature outcome lineage.
Estimate software reliability growth
Estimate long-run software reliability growth with a power-law nonhomogeneous Poisson process, bootstrap trend evidence, and future incident exposure.