Forecast dependency adjusted consensus
Combine independently sealed human and model forecasts while learning context base rates and source reliability on earlier questions, discounting empirical and declared information dependence, and abstaining unless later questions beat both base rates and naive consensus.
What it's for
Turns multiple roadmap, delivery or board opinions into one honest probability without pretending correlated management reports and models are four independent confirmations.
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 |
| bootstrap_draws | integer ≥ 200, ≤ 20000 | Numerical control | Optional |
| coefficient_ridge | number > 0, ≤ 10000 | Your calibration | Optional |
| current_forecasts | array of objects (8 fields) | Evidence | Yes |
| current_questions | array of objects (4 fields) | Evidence | Yes |
| historical_forecasts | array of objects (8 fields) | Evidence | Yes |
| historical_questions | array of objects (5 fields) | Evidence | Yes |
| max_detail_rows | integer ≥ 1, ≤ 500 | Numerical control | Optional |
| maximum_validation_ece | number ≥ 0, ≤ 1 | Your calibration | Optional |
| minimum_improvement_probability | number ≥ 0, ≤ 1 | Your calibration | Optional |
| minimum_relative_log_loss_improvement | number ≥ 0, ≤ 0.5 | Your calibration | Optional |
| minimum_source_questions | integer ≥ 3, ≤ 100000 | Your calibration | Optional |
| minimum_training_questions | integer ≥ 20, ≤ 100000 | Your calibration | Optional |
| minimum_validation_questions | integer ≥ 10, ≤ 100000 | Your calibration | Optional |
| posterior_draws | integer ≥ 200, ≤ 20000 | Numerical control | Optional |
| seed | integer ≥ 0, ≤ 4294967295 | Numerical control | Optional |
| source_dependencies | array of objects (5 fields) ≥ 0 items | Evidence | Yes |
| validation_fraction | number ≥ 0.2, ≤ 0.5 | Your calibration | Optional |
Each current_forecasts
record
| Field | Type | Required |
|---|---|---|
| evidence_verified | boolean | Yes |
| forecast_at_ms | number (≥ 0) | Yes |
| id | string (non-empty) | Yes |
| information_cutoff_ms | number (≥ 0) | Yes |
| probability | number (≥ 0, ≤ 1) | Yes |
| question_id | string (non-empty) | Yes |
| sealed_independent | boolean | Yes |
| source_ref | string (non-empty) | Yes |
{
"as_of_ms": 1004,
"bootstrap_draws": 200,
"current_forecasts": [
{
"evidence_verified": true,
"forecast_at_ms": 1003,
"id": "current-forecast-expert-a",
"information_cutoff_ms": 1002,
"probability": 0.88,
"question_id": "current-roadmap",
"sealed_independent": true,
"source_ref": "expert-a"
},
{
"evidence_verified": true,
"forecast_at_ms": 1003,
"id": "current-forecast-copier-a",
"information_cutoff_ms": 1002,
"probability": 0.86,
"question_id": "current-roadmap",
"sealed_independent": true,
"source_ref": "copier-a"
},
{
"evidence_verified": true,
"forecast_at_ms": 1003,
"id": "current-forecast-expert-b",
"information_cutoff_ms": 1002,
"probability": 0.78,
"question_id": "current-roadmap",
"sealed_independent": true,
"source_ref": "expert-b"
},
{
"evidence_verified": true,
"forecast_at_ms": 1003,
"id": "current-forecast-noise",
"information_cutoff_ms": 1002,
"probability": 0.45,
"question_id": "current-roadmap",
"sealed_independent": true,
"source_ref": "noise"
} Truncated for display — the full payload is 4772 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.
{
"assumptions": [
"Historical forecasts were independently sealed before resolution, question contexts are stable enough to estimate base rates, and declared source dependencies are complete.",
"Positive forecast-innovation correlation is treated conservatively as redundant evidence; source coefficients and context rates are fitted only on the earlier split before validation."
],
"counts": {
"current_questions": 1,
"declared_dependencies": 1,
"empirical_dependencies": 6,
"historical_forecasts": 400,
"historical_questions": 100,
"sources": 4
},
"decision": "dependency_adjusted_consensus_validated",
"failed_gates": [],
"forecasts": [
{
"context_base_probability": 0.6623,
"context_id": "roadmap",
"dependency_adjusted_probability": 0.8734,
"dominant_source_weight": 0.4063,
"effective_independent_sources": 1.1028,
"leave_one_source_out_probability_range": 0.0651,
"posterior_probability_interval_90": [
0.8141,
0.8705,
0.9158
],
"question_id": "current-roadmap",
"source_diagnostics": [
{
"dependency_adjusted_weight": 0.40629,
"reliability_coefficient": 1.110489,
"source_ref": "expert-b"
},
{
"dependency_adjusted_weight": 0.324557,
"reliability_coefficient": 1.366382,
"source_ref": "expert-a"
},
{
"dependency_adjusted_weight": 0.269153,
"reliability_coefficient": 1.32017,
"source_ref": "copier-a" Truncated for display — the full payload is 79 lines.
How it works
Forecasting & survival — Estimate when something completes or fails, with censoring and unresolved work handled honestly rather than dropped.
- 1 Chronologically split whole resolved questions and fit context base rates plus regularized source-specific logit reliability only on the earlier split.
- 2 Estimate positive forecast-innovation dependence from overlapping earlier questions, take the conservative maximum with declared common-source links, and solve covariance-adjusted nonnegative source weights.
- 3 Require later log-loss gain over context base rates and unadjusted consensus plus calibration support; only then refit and return posterior intervals, effective independent-source count and leave-one-source-out fragility.
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
- Training examples precede their outcomes, censoring and unresolved work are represented, and deployment populations remain comparable to validation cohorts.
- Historical questions resolve after sealed forecasts, question contexts remain comparable, source references are stable and opaque, and declared communication/common-data dependencies are complete.
- A predictive interval or risk estimate is not a deadline promise, causal explanation, or individual-performance judgment.
- Dependence is evidence redundancy, not proof of copying; failed later validation must produce no current consensus, and no forecast is a delivery guarantee, investment recommendation or personnel rating.
Minimum evidence
- historical_questions: required and organization-defined
- historical_forecasts: required and organization-defined
- current_questions: required and organization-defined
- current_forecasts: required and organization-defined
- source_dependencies: at least 0 rows/items
- as_of_ms: required and organization-defined
How to validate it
Use chronological train/calibration/test windows, compare proper scores and decision value with a simple baseline, and recalibrate only from outcomes resolved after prediction time.
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
- a chronological whole-question training/validation panel with stable opaque source references, question-context base rates, complete overlapping forecast innovations and a current question-source matrix
- context comparability, source identity stability, sealing policy, dependence evidence, outcome maturity, temporal split, source-support/ridge choices, base-rate and unadjusted-consensus benchmarks, log-loss/calibration gates, interval level and permitted decision use
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": "combine independently sealed human and model" }
→ finds "forecast_dependency_adjusted_consensus"
gitrevio_capability_describe
{ "capability_id": "forecast_dependency_adjusted_consensus" }
→ returns the input schema and agent guidance shown on this page
gitrevio_capability_run
{ "capability_id": "forecast_dependency_adjusted_consensus", "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 forecast ensemble lineage integrity
Audit whether a claimed forecast ensemble is a complete, independently sealed and point-in-time evidence set rather than duplicated consensus, then score only mature uncontaminated outcomes.
Optimize forecast elicitation portfolio
Choose which independent human or model forecasts to obtain next by learning chronologically validated contextual directional skill, simulating conservative entropy reduction, pricing decision relevance and removing duplicated information under budget and source-capacity constraints.
Audit analytical specification multiverse
Audit whether an analytical conclusion survives a prespecified multiverse of admissible windows, cohorts, metrics, and models using aligned bootstrap draws, a weighted specification curve, practical-effect support gates, and descriptive choice-influence diagnostics.
Audit analytics challenger independence
Audit whether an analytical challenger supplies genuinely independent error information: use paired temporal moving-block bootstrap bounds on error correlation, incumbent-failure catch rate and common-mode joint failure, with simultaneous Bonferroni control across every screened challenger and explicit evidence gates.
Audit analytics function calibration readiness
Gate analytical functions on paired out-of-time decision loss against a frozen baseline using temporal moving-block bootstrap, autocorrelation- and weight-adjusted effective sample size, evidence coverage, lower confidence bounds, improvement probability and recent degradation rather than declaring a model calibrated from training fit.
Audit analytics transportability
Audit whether locally calibrated analytical functions retain decision-loss improvement across target-similar operating environments using similarity-weighted random-effects meta-analysis, between-environment variance, I-squared, sign consistency and a conservative target prediction interval.