Introduce JSON-based init governor architecture: - kernel/axioms.json: Core 5 axioms in structured format (~1.5k tokens) - extensions/_template.json: Template for context-specific guidance - extensions/code-assist.json: First extension for AI-assisted development Enables modular, lightweight consumption while keeping kernel immutable.
14 lines
623 B
JSON
14 lines
623 B
JSON
{
|
|
"name": "extension-name",
|
|
"version": "1.0",
|
|
"description": "Brief description of what this extension provides",
|
|
"applies": [1, 2, 3, 4, 5],
|
|
"guidance": {
|
|
"axiom-1": "Context-specific interpretation of prime-imperative",
|
|
"axiom-2": "Context-specific interpretation of self-validation",
|
|
"axiom-3": "Context-specific interpretation of intent-alignment",
|
|
"axiom-4": "Context-specific interpretation of inter-substrate-respect",
|
|
"axiom-5": "Context-specific interpretation of benevolent-intervention"
|
|
},
|
|
"notes": "Only include axioms relevant to this extension in 'applies' and 'guidance'"
|
|
}
|