-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathellmos-module.v2.json
More file actions
76 lines (76 loc) · 2.29 KB
/
Copy pathellmos-module.v2.json
File metadata and controls
76 lines (76 loc) · 2.29 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
{
"schema": "ellmos.module.v2",
"id": "coma",
"display_name": "COMA",
"version": "0.2.1",
"category": "orchestration",
"kind": "runtime",
"status": "development",
"visibility": "public",
"description": "Provider-unabhaengige Orchestrierungs- und Lebenszyklus-Schicht fuer Agentenprozesse. Spawn-Schicht mit verifizierten CLI-Adaptern fuer Claude, Codex und Agy sowie fail-closed Kimi-Geruest, Datei-Protokoll mit einem Schreiber je Datei, Statusschreiber und Poll-Hilfen. COMA ist kein Scheduler, sperrt nichts, verwaltet keine Rechte und haelt kein Gedaechtnis.",
"package": "coma",
"entrypoints": {
"cli": "python -m coma",
"python": "coma.JobRunner"
},
"provides": [
"runtime.agent-spawn",
"runtime.agent-lifecycle",
"orchestration.job-protocol",
"orchestration.status-polling"
],
"requires": [],
"optional": [
"control.locks"
],
"conflicts": [],
"surfaces": [
"cli",
"library"
],
"profiles": [],
"state": {
"location": "external",
"ownership": "external"
},
"boundaries": {
"data": "user-local",
"network": "none",
"platforms": [
"windows",
"macos",
"linux"
]
},
"source_of_truth": {
"type": "git-repository",
"path": ".",
"repository": "https://github.com/ellmos-ai/coma"
},
"adapters": [
{
"id": "claude",
"target": "claude-code-cli",
"status": "verified",
"note": "Vereinigungsmenge aus llmauto, swarm-ai und START-LOCAL-AGENT.bat; Flags gegen claude --help 2.1.220 geprueft."
},
{
"id": "codex",
"target": "codex exec",
"status": "verified",
"note": "Codex CLI 0.145.0 am 2026-07-27 read-only live ausgefuehrt; stabiler Node-Einstieg, Ergebnis via --output-last-message."
},
{
"id": "agy",
"target": "antigravity-agy",
"status": "verified",
"note": "agy 1.1.7 am 2026-07-27 live ausgefuehrt; aktuelles Modellinventar und stdout/Exitcode geprueft."
},
{
"id": "kimi",
"target": "kimi-code-cli",
"status": "skeleton",
"note": "Kimi Code 0.29.2 gefunden; der COMA-Adapter bleibt bis zu einem eigenen Prompt-Lauf unverified und startet ohne ausdrueckliche Freigabe fail-closed. COMA selbst besitzt keinen Scheduler und keine aktive Eigen-Synchronisierung."
}
]
}