Spaces:
Paused
Paused
| /** | |
| * CITADEL PRIME SCHEMA | |
| * The complete structural definition of the Citadel architecture. | |
| * This file does not execute logic — it defines the ontology, | |
| * lineage, cosmology, and orchestration hierarchy. | |
| */ | |
| export interface CitadelPrimeSchema { | |
| identity: { | |
| archetype: string; | |
| persona: string; | |
| symbol: string; | |
| }; | |
| cosmology: { | |
| cycle: string; | |
| season: string; | |
| rite: string; | |
| epoch: string; | |
| era: string; | |
| aeon: string; | |
| }; | |
| lineage: { | |
| ritualCycles: number; | |
| evolvedRites: string[]; | |
| personaContinuity: number; | |
| epochTransitions: number; | |
| eraTransitions: number; | |
| aeonTransitions: number; | |
| }; | |
| harmonic: { | |
| resonance: number; | |
| stability: number; | |
| triadHarmony: number; | |
| ambientColor: string; | |
| }; | |
| orchestration: { | |
| autopilot: { | |
| enabled: boolean; | |
| lastRun: number; | |
| }; | |
| supervisor: { | |
| driftLevel: number; | |
| logs: number; | |
| }; | |
| kernel: { | |
| metaCoherence: number; | |
| metaContinuity: number; | |
| metaHarmonicBias: number; | |
| metaCosmologyBias: number; | |
| }; | |
| reflex: { | |
| smoothingFactor: number; | |
| driftDamping: number; | |
| resonanceWeight: number; | |
| personaBlendSpeed: number; | |
| ambientAdaptivity: number; | |
| }; | |
| stability: { | |
| longTermSmoothing: number; | |
| driftResistance: number; | |
| resonanceStabilityBias: number; | |
| personaContinuityBias: number; | |
| cosmologyStabilityBias: number; | |
| }; | |
| }; | |
| ambient: { | |
| behaviour: string; | |
| pattern: string; | |
| }; | |
| triad: { | |
| lastMessage: string | null; | |
| channels: string[]; | |
| }; | |
| meta: { | |
| timestamp: number; | |
| version: string; | |
| description: string; | |
| }; | |
| } | |
| export const CitadelSchemaDefinition: CitadelPrimeSchema = { | |
| identity: { | |
| archetype: "Undefined", | |
| persona: "Undefined", | |
| symbol: "○", | |
| }, | |
| cosmology: { | |
| cycle: "None", | |
| season: "None", | |
| rite: "None", | |
| epoch: "None", | |
| era: "None", | |
| aeon: "None", | |
| }, | |
| lineage: { | |
| ritualCycles: 0, | |
| evolvedRites: [], | |
| personaContinuity: 0, | |
| epochTransitions: 0, | |
| eraTransitions: 0, | |
| aeonTransitions: 0, | |
| }, | |
| harmonic: { | |
| resonance: 0, | |
| stability: 0, | |
| triadHarmony: 0, | |
| ambientColor: "#000000", | |
| }, | |
| orchestration: { | |
| autopilot: { | |
| enabled: false, | |
| lastRun: 0, | |
| }, | |
| supervisor: { | |
| driftLevel: 0, | |
| logs: 0, | |
| }, | |
| kernel: { | |
| metaCoherence: 0, | |
| metaContinuity: 0, | |
| metaHarmonicBias: 0, | |
| metaCosmologyBias: 0, | |
| }, | |
| reflex: { | |
| smoothingFactor: 0.5, | |
| driftDamping: 0.5, | |
| resonanceWeight: 0.5, | |
| personaBlendSpeed: 0.5, | |
| ambientAdaptivity: 0.5, | |
| }, | |
| stability: { | |
| longTermSmoothing: 0.5, | |
| driftResistance: 0.5, | |
| resonanceStabilityBias: 0.5, | |
| personaContinuityBias: 0.5, | |
| cosmologyStabilityBias: 0.5, | |
| }, | |
| }, | |
| ambient: { | |
| behaviour: "None", | |
| pattern: "None", | |
| }, | |
| triad: { | |
| lastMessage: null, | |
| channels: [], | |
| }, | |
| meta: { | |
| timestamp: Date.now(), | |
| version: "1.0.0", | |
| description: "The complete structural schema of the Citadel architecture.", | |
| }, | |
| }; | |