with one click
sovereign-engine
// The epistemic calculation engine for the Abraxas sovereign system, providing confidence scoring and consensus verification.
// The epistemic calculation engine for the Abraxas sovereign system, providing confidence scoring and consensus verification.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | sovereign-engine |
| description | The epistemic calculation engine for the Abraxas sovereign system, providing confidence scoring and consensus verification. |
The Sovereign Engine provides the mathematical and epistemic foundations for determining the reliability of AI outputs within the Abraxas framework. It implements specialized scoring mechanisms to weight outputs and validate consensus.
The engine focuses on three primary epistemic metrics: risk-based weighting, reliability tracking, and integrated confidence.
Calculates the relative weight of a specific output based on a distribution of risk scores.
Tracks the historical reliability of a system component.
Combines structural architecture confidence with historical reliability.
calculate_sovereign_weightDetermines the weight for a target index based on a list of risk scores.
risk_scores (list of floats), target_index (int), lambda_val (optional float).compute_integrated_confidenceCombines architecture confidence and RLCR score.
arch_conf (float), rlcr_score (float), alpha (optional float).calculate_rlcrComputes the reliability rate from a history of correctness.
history (list of booleans).verify_consensusChecks if a set of answers meets the minimum consensus threshold.
answers (list of strings), threshold (optional int).get_epistemic_labelMaps a numerical confidence score to a human-readable epistemic label.
confidence (float).[KNOWN], [INFERRED], [UNCERTAIN], [UNKNOWN].