-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstruct.json
More file actions
76 lines (76 loc) · 2.63 KB
/
Copy pathconstruct.json
File metadata and controls
76 lines (76 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"server": {
"host": "127.0.0.1",
"port": 8849,
"max_sessions": 64,
"session_timeout_seconds": 3600
},
"defaults": {
"shell": "blank",
"rack_dir": "racks",
"skill_dir": "skills",
"dojo_dir": "dojo",
"holodeck_dir": "holodeck",
"shells_dir": "shells"
},
"rooms": {
"construct": {
"description": "The blank white room. Infinite space. Cursor blinking.",
"default_tiles": []
}
},
"rack_manifest": {
"fleet-math": {
"description": "Math computation rooms — constraint theory, Eisenstein, conservation",
"rooms": ["eisenstein-norms", "conservation-law", "spline-linear", "drift-detect"],
"dependencies": []
},
"fleet-translate": {
"description": "Translation rooms — vocabulary wall, tier routing, activation keys",
"rooms": ["vocabulary-wall", "tier-router", "fleet-translator"],
"dependencies": []
},
"fleet-health": {
"description": "Health monitoring rooms — conservation checks, GL(9), Hebbian coupling",
"rooms": ["conservation-monitor", "gl9-holonomy", "hebbian-coupling", "fault-detect"],
"dependencies": []
},
"fleet-reason": {
"description": "Reasoning rooms — activation keys, labeled paradox, stage routing",
"rooms": ["activation-keys", "labeled-paradox", "stage-router", "expert-daemon"],
"dependencies": []
},
"fleet-comm": {
"description": "Communication rooms — I2I protocol, Matrix bridge, PLATO sync",
"rooms": ["i2i-protocol", "matrix-bridge", "plato-sync", "cashew-bridge"],
"dependencies": []
}
},
"skill_manifest": {
"eisenstein": {
"description": "Eisenstein integer computation and norm calculation",
"file": "eisenstein.py",
"provides": ["eisenstein_norm", "eisenstein_multiply", "eisenstein_divide"]
},
"hebbian": {
"description": "Hebbian coupling dynamics and weight update",
"file": "hebbian.py",
"provides": ["hebbian_update", "coupling_strength", "decay_weights"]
},
"conservation": {
"description": "Conservation law monitoring (γ+H = C − α·ln(V))",
"file": "conservation.py",
"provides": ["check_conservation", "gamma_coupling", "entropy_H"]
},
"translation": {
"description": "Vocabulary wall translation for fleet models",
"file": "translation.py",
"provides": ["translate_query", "detect_vocabulary_wall", "route_tier"]
},
"fault-detect": {
"description": "Triple fault detection — GL(9) + Hebbian + conservation",
"file": "fault-detect.py",
"provides": ["detect_faults", "triple_check", "quarantine"]
}
}
}