Create manifest.json
Browse files- manifest.json +49 -0
manifest.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"discipline": "DSLO",
|
| 3 |
+
"version": "v0.4-public",
|
| 4 |
+
"engine": {
|
| 5 |
+
"name": "Contextless Meaning Engine",
|
| 6 |
+
"version": "v0.2-ledger",
|
| 7 |
+
"deterministic": true,
|
| 8 |
+
"invariants": [
|
| 9 |
+
"F1_NO_SEMANTIC_INTERPRETATION",
|
| 10 |
+
"F2_NO_EMOTIONAL_INFERENCE",
|
| 11 |
+
"F3_NO_PROBABILISTIC_ROUTING",
|
| 12 |
+
"F4_NO_AUTONOMOUS_STATE_MUTATION",
|
| 13 |
+
"F5_NO_MEANING_GENERATION",
|
| 14 |
+
"F6_NO_TEMPLATE_REWRITING",
|
| 15 |
+
"F7_NO_CAPABILITY_EXPANSION",
|
| 16 |
+
"F8_NO_MEMORY_INJECTION",
|
| 17 |
+
"F9_NO_CROSS_SIGNAL_CONTAMINATION"
|
| 18 |
+
]
|
| 19 |
+
},
|
| 20 |
+
"actuator": {
|
| 21 |
+
"version": "v0.1",
|
| 22 |
+
"type": "deterministic-expression-wrapper",
|
| 23 |
+
"semanticProcessing": false
|
| 24 |
+
},
|
| 25 |
+
"ledger": {
|
| 26 |
+
"enabled": true,
|
| 27 |
+
"schema": {
|
| 28 |
+
"engineVersion": "string",
|
| 29 |
+
"createdAt": "ISO-8601",
|
| 30 |
+
"entry": {
|
| 31 |
+
"input": "string",
|
| 32 |
+
"output": "string|null",
|
| 33 |
+
"timestamp": "integer",
|
| 34 |
+
"status": "string",
|
| 35 |
+
"invariants": "object"
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"cli": {
|
| 40 |
+
"command": "node cli.js \"signal\"",
|
| 41 |
+
"inputType": "opaque-string",
|
| 42 |
+
"output": "actuator-envelope"
|
| 43 |
+
},
|
| 44 |
+
"posture": {
|
| 45 |
+
"publicSafe": true,
|
| 46 |
+
"substrateNeutral": true,
|
| 47 |
+
"noOperationalLeakage": true
|
| 48 |
+
}
|
| 49 |
+
}
|