Consecrated · Developer
For researchers and integrators. The full GASPS engine — Bayesian posteriors, system fitness, integration coefficient, archetype boundaries, immutable result snapshots, public API. Nothing is hidden because nothing should be.
Every result run produces a single L value summarizing the singer's overall growth state. It rewards integration and average sphere health, penalizes imbalance, and bounds the load.
Each of the 35 nodes carries an independent posterior. Prior is Beta(2, 2) — a gentle pull toward 0.5 with no observations. Posterior tightens as observations accumulate. Variance falls; confidence rises.
Same surface the dashboard runs on. Result snapshots are immutable; interpret runs against any historical run.
// gasps-scorer · canonical types
export interface RawResponse {
nodeId: string
channel: 'perceived' | 'measured' | 'observed'
value: number // normalized 0..1
confidence: number // 0..1
sphereWeight: SphereVec
}
export interface NodeScore {
nodeId: string
nodeKey: string // e.g. 'grounding_b'
familyId: string
regionId: string
rawMean: number
normalized: number
stabilizedMean: number // Bayesian posterior μ
variance: number // Bayesian posterior σ²
observationCount: number
stabilityLabel:
| 'fragile'
| 'unsteady'
| 'stable'
| 'resilient'
| 'vital'
}
export interface ResultRun {
id: string
userId: string
createdAt: string
archetype:
| 'sterile_precision'
| 'chaotic_fervor'
| 'disembodied_vision'
| 'consecrated_center'
| 'early_formation'
systemFitness: number // L
imbalanceIndex: number // I
integrationCoefficient: number // Φ
}Researcher / integrator
Developer access is by request. Tell us what you're building. We'll send keys.