Score evidence readiness
Gate an analytical claim on coverage, freshness, identity resolution, sample size, and source agreement.
What it's for
Run this before you act on any other number. It asks whether the evidence under a claim is complete, fresh and consistent enough to decide on, and tells you which dimension is weakest when it isn't.
Makes the 'confident decisions' promise auditable.
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 |
|---|---|---|---|
| metrics | array of objects (7 fields) | Evidence | Yes |
| minimum_sample_size | integer ≥ 1 | Your calibration | Optional |
| readiness_threshold | number > 0, ≤ 1 | Your calibration | Optional |
Each metrics
record
| Field | Type | Required |
|---|---|---|
| coverage | number (≥ 0, ≤ 1) | Yes |
| decision_weight | number (> 0) | Optional |
| freshness | number (≥ 0, ≤ 1) | Yes |
| identity_resolution | number (≥ 0, ≤ 1) | Yes |
| metric | string (non-empty) | Yes |
| sample_size | integer (≥ 0) | Yes |
| source_agreement | number (≥ 0, ≤ 1) | Optional |
{
"metrics": [
{
"coverage": 0.92,
"freshness": 0.98,
"identity_resolution": 0.96,
"metric": "delivery_predictability",
"sample_size": 48,
"source_agreement": 0.84
}
]
} 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.
{
"decision_ready": true,
"method": "evidence_readiness_v1",
"metrics": [
{
"decision_weight": 1,
"dimensions": {
"coverage": 0.92,
"freshness": 0.98,
"identity_resolution": 0.96,
"sample_adequacy": 1,
"source_agreement": 0.84
},
"metric": "delivery_predictability",
"score": 0.9364,
"weakest_dimension": "source_agreement"
}
],
"score": 0.9364,
"status": "ready",
"threshold": 0.7,
"warnings": [],
"weakest_metrics": [
"delivery_predictability"
]
} 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 Gate an analytical claim on coverage, freshness, identity resolution, sample size, and source agreement.
- 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
- Metric definitions, weights, aggregate grain, sampling, missingness, dependence, and comparison windows correspond to the management claim being audited.
- Association, instability, or measurement quality is not a causal effect and must not be converted directly into an individual employment decision.
Minimum evidence
- metrics: 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
- metric/outcome definitions, entity grain, observation window, costs, thresholds, priors, and constraints represented by the function inputs
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": "gate an analytical claim on coverage" }
→ finds "score_evidence_readiness"
gitrevio_capability_describe
{ "capability_id": "score_evidence_readiness" }
→ returns the input schema and agent guidance shown on this page
gitrevio_capability_run
{ "capability_id": "score_evidence_readiness", "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
Allocate attention budget
Use exact knapsack optimization to allocate limited expert-review time by expected avoided loss.
Rank management actions
Rank reversible, evidence-backed management actions and separate blocked work.
Analyze deep uncertainty minimax regret
Apply Savage minimax regret when scenario probabilities are not defensible, compare maximin and equal-weight choices, and use PRIM-style iterative peeling to discover compact context boxes where the robust choice remains vulnerable.
Audit aggregate metric reversal
Detect Simpson's-paradox-style sign reversals between an executive aggregate relationship and its weighted within-stratum fixed-effect relationship, with whole-stratum bootstrap uncertainty and practical-magnitude gates.
Audit informative metric missingness
Audit whether aggregate metric availability is associated with a governed outcome using permutation inference, bootstrap intervals, practical effect gates, and false-discovery control.
Audit joint metric dependency drift
Detect changes in cross-metric dependence with empirical-copula ranks, random-feature permutation inference, sliced Wasserstein magnitude, and FDR-controlled pair diagnostics.