@xemahq/xema 0.1.4 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +64 -15
- package/dist/assets/boot-graph.json +72 -0
- package/dist/assets/core/distribution.lock.json +1244 -0
- package/dist/assets/core/images.lock.json +428 -0
- package/dist/assets/oss/distribution.lock.json +1978 -0
- package/dist/assets/oss/images.lock.json +594 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +9 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/dev.d.ts.map +1 -1
- package/dist/commands/dev.js +36 -14
- package/dist/commands/dev.js.map +1 -1
- package/dist/commands/doctor.js +1 -1
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/down.d.ts +3 -0
- package/dist/commands/down.d.ts.map +1 -0
- package/dist/commands/down.js +54 -0
- package/dist/commands/down.js.map +1 -0
- package/dist/commands/logs.d.ts +3 -0
- package/dist/commands/logs.d.ts.map +1 -0
- package/dist/commands/logs.js +61 -0
- package/dist/commands/logs.js.map +1 -0
- package/dist/commands/serve.d.ts.map +1 -1
- package/dist/commands/serve.js +38 -8
- package/dist/commands/serve.js.map +1 -1
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +41 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/up.d.ts +3 -0
- package/dist/commands/up.d.ts.map +1 -0
- package/dist/commands/up.js +44 -0
- package/dist/commands/up.js.map +1 -0
- package/dist/dev/infra-preflight.js +1 -1
- package/dist/dev/infra-preflight.js.map +1 -1
- package/dist/lib/command-registry.d.ts +1 -1
- package/dist/lib/command-registry.d.ts.map +1 -1
- package/dist/lib/command-registry.js +4 -0
- package/dist/lib/command-registry.js.map +1 -1
- package/dist/runtime/boot-graph-loader.d.ts +17 -0
- package/dist/runtime/boot-graph-loader.d.ts.map +1 -0
- package/dist/runtime/boot-graph-loader.js +40 -0
- package/dist/runtime/boot-graph-loader.js.map +1 -0
- package/dist/runtime/config/loader.d.ts +11 -0
- package/dist/runtime/config/loader.d.ts.map +1 -0
- package/dist/runtime/config/loader.js +38 -0
- package/dist/runtime/config/loader.js.map +1 -0
- package/dist/runtime/config/schema.d.ts +202 -0
- package/dist/runtime/config/schema.d.ts.map +1 -0
- package/dist/runtime/config/schema.js +125 -0
- package/dist/runtime/config/schema.js.map +1 -0
- package/dist/runtime/env-seeder.d.ts +17 -0
- package/dist/runtime/env-seeder.d.ts.map +1 -0
- package/dist/runtime/env-seeder.js +80 -0
- package/dist/runtime/env-seeder.js.map +1 -0
- package/dist/runtime/foreground.d.ts +8 -0
- package/dist/runtime/foreground.d.ts.map +1 -0
- package/dist/runtime/foreground.js +71 -0
- package/dist/runtime/foreground.js.map +1 -0
- package/dist/runtime/infra/infra-catalog.d.ts +19 -0
- package/dist/runtime/infra/infra-catalog.d.ts.map +1 -0
- package/dist/runtime/infra/infra-catalog.js +128 -0
- package/dist/runtime/infra/infra-catalog.js.map +1 -0
- package/dist/runtime/infra/infra-plan.d.ts +16 -0
- package/dist/runtime/infra/infra-plan.d.ts.map +1 -0
- package/dist/runtime/infra/infra-plan.js +44 -0
- package/dist/runtime/infra/infra-plan.js.map +1 -0
- package/dist/runtime/infra/infra-runner.d.ts +26 -0
- package/dist/runtime/infra/infra-runner.d.ts.map +1 -0
- package/dist/runtime/infra/infra-runner.js +135 -0
- package/dist/runtime/infra/infra-runner.js.map +1 -0
- package/dist/runtime/launch.d.ts +24 -0
- package/dist/runtime/launch.d.ts.map +1 -0
- package/dist/runtime/launch.js +116 -0
- package/dist/runtime/launch.js.map +1 -0
- package/dist/runtime/lock-loader.d.ts +26 -0
- package/dist/runtime/lock-loader.d.ts.map +1 -0
- package/dist/runtime/lock-loader.js +61 -0
- package/dist/runtime/lock-loader.js.map +1 -0
- package/dist/runtime/paths.d.ts +14 -0
- package/dist/runtime/paths.d.ts.map +1 -0
- package/dist/runtime/paths.js +109 -0
- package/dist/runtime/paths.js.map +1 -0
- package/dist/runtime/platform-services.d.ts +2 -0
- package/dist/runtime/platform-services.d.ts.map +1 -0
- package/dist/runtime/platform-services.js +8 -0
- package/dist/runtime/platform-services.js.map +1 -0
- package/dist/runtime/port-map.d.ts +3 -0
- package/dist/runtime/port-map.d.ts.map +1 -0
- package/dist/runtime/port-map.js +25 -0
- package/dist/runtime/port-map.js.map +1 -0
- package/dist/runtime/roster.d.ts +32 -0
- package/dist/runtime/roster.d.ts.map +1 -0
- package/dist/runtime/roster.js +106 -0
- package/dist/runtime/roster.js.map +1 -0
- package/dist/runtime/runner/container-runner.d.ts +14 -0
- package/dist/runtime/runner/container-runner.d.ts.map +1 -0
- package/dist/runtime/runner/container-runner.js +61 -0
- package/dist/runtime/runner/container-runner.js.map +1 -0
- package/dist/runtime/runner/docker-cli.d.ts +11 -0
- package/dist/runtime/runner/docker-cli.d.ts.map +1 -0
- package/dist/runtime/runner/docker-cli.js +53 -0
- package/dist/runtime/runner/docker-cli.js.map +1 -0
- package/dist/runtime/runner/health-probe.d.ts +2 -0
- package/dist/runtime/runner/health-probe.d.ts.map +1 -0
- package/dist/runtime/runner/health-probe.js +38 -0
- package/dist/runtime/runner/health-probe.js.map +1 -0
- package/dist/runtime/runner/helm-runner.d.ts +19 -0
- package/dist/runtime/runner/helm-runner.d.ts.map +1 -0
- package/dist/runtime/runner/helm-runner.js +70 -0
- package/dist/runtime/runner/helm-runner.js.map +1 -0
- package/dist/runtime/runner/native-runner.d.ts +9 -0
- package/dist/runtime/runner/native-runner.d.ts.map +1 -0
- package/dist/runtime/runner/native-runner.js +85 -0
- package/dist/runtime/runner/native-runner.js.map +1 -0
- package/dist/runtime/runner/service-runner.d.ts +23 -0
- package/dist/runtime/runner/service-runner.d.ts.map +1 -0
- package/dist/runtime/runner/service-runner.js +10 -0
- package/dist/runtime/runner/service-runner.js.map +1 -0
- package/dist/runtime/supervisor.d.ts +46 -0
- package/dist/runtime/supervisor.d.ts.map +1 -0
- package/dist/runtime/supervisor.js +77 -0
- package/dist/runtime/supervisor.js.map +1 -0
- package/dist/runtime/unit-type.d.ts +9 -0
- package/dist/runtime/unit-type.d.ts.map +1 -0
- package/dist/runtime/unit-type.js +19 -0
- package/dist/runtime/unit-type.js.map +1 -0
- package/dist/runtime/waves.d.ts +15 -0
- package/dist/runtime/waves.d.ts.map +1 -0
- package/dist/runtime/waves.js +77 -0
- package/dist/runtime/waves.js.map +1 -0
- package/package.json +9 -10
- package/xema.config.example.yaml +45 -0
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"distributionId": "core",
|
|
4
|
+
"images": [
|
|
5
|
+
{
|
|
6
|
+
"biomeId": "activity-feed",
|
|
7
|
+
"target": "server",
|
|
8
|
+
"imageRef": "ghcr.io/xema-dev/activity-feed",
|
|
9
|
+
"contentHash": "20908871cae241ce09dfea6333c24ded2a1b6f5b001357bd7347231823c5fbd0",
|
|
10
|
+
"repo": "repos/xema-platform",
|
|
11
|
+
"path": "repos/xema-platform/biomes/activity-feed"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"biomeId": "agent-runtime",
|
|
15
|
+
"target": "server",
|
|
16
|
+
"imageRef": "ghcr.io/xema-dev/agent-runtime",
|
|
17
|
+
"contentHash": "b25fdf366d261664091ae0598ce1deea51b3a73432b209300612c4c8ae3ab90c",
|
|
18
|
+
"repo": "repos/xema-community",
|
|
19
|
+
"path": "repos/xema-community/biomes/agent-runtime"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"biomeId": "app-runtime",
|
|
23
|
+
"target": "server",
|
|
24
|
+
"imageRef": "ghcr.io/xema-dev/app-runtime",
|
|
25
|
+
"contentHash": "e0aa230a4afc5696dc470833eb0eab54d2a9a3a1f1bf5bb954f2c701e90d4601",
|
|
26
|
+
"repo": "repos/xema-community",
|
|
27
|
+
"path": "repos/xema-community/biomes/app-runtime"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"biomeId": "audit",
|
|
31
|
+
"target": "server",
|
|
32
|
+
"imageRef": "ghcr.io/xema-dev/audit",
|
|
33
|
+
"contentHash": "803969883666aa39728b3cbbe651339780d6f60ee47e9446bc2e89db47a189a7",
|
|
34
|
+
"repo": "repos/xema-community",
|
|
35
|
+
"path": "repos/xema-community/biomes/audit"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"biomeId": "authorization",
|
|
39
|
+
"target": "server",
|
|
40
|
+
"imageRef": "ghcr.io/xema-dev/authorization",
|
|
41
|
+
"contentHash": "245d117b1995400b18f9f4ee32581e071ac6be56e147aa5918a9fe1028979d53",
|
|
42
|
+
"repo": "repos/xema-community",
|
|
43
|
+
"path": "repos/xema-community/biomes/authorization"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"biomeId": "backlog",
|
|
47
|
+
"target": "server",
|
|
48
|
+
"imageRef": "ghcr.io/xema-dev/backlog",
|
|
49
|
+
"contentHash": "f571e2b2de58f370447213d734c882346712c2dbe962dd5153785daf46d36add",
|
|
50
|
+
"repo": "repos/xema-community",
|
|
51
|
+
"path": "repos/xema-community/biomes/backlog"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"biomeId": "biome-adapter-host",
|
|
55
|
+
"target": "server",
|
|
56
|
+
"imageRef": "ghcr.io/xema-dev/biome-adapter-host",
|
|
57
|
+
"contentHash": "35ed335d7c9bb1d84ed4d6ce1caa28fac921b3136ca17b1ed7a522512547d74d",
|
|
58
|
+
"repo": "repos/xema-community",
|
|
59
|
+
"path": "repos/xema-community/biomes/biome-adapter-host"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"biomeId": "biome-fetcher",
|
|
63
|
+
"target": "server",
|
|
64
|
+
"imageRef": "ghcr.io/xema-dev/biome-fetcher",
|
|
65
|
+
"contentHash": "daf28fad85e02f36e7a99a0c6bc680b870bf22ab0f4c710ec4bfc19228783e38",
|
|
66
|
+
"repo": "repos/xema-community",
|
|
67
|
+
"path": "repos/xema-community/biomes/biome-fetcher"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"biomeId": "biome-host",
|
|
71
|
+
"target": "server",
|
|
72
|
+
"imageRef": "ghcr.io/xema-dev/biome-host",
|
|
73
|
+
"contentHash": "3429ec045d1d1bf999f7d8e57d9fd405ab8abe355b446c9b31677ed9db089794",
|
|
74
|
+
"repo": "repos/xema-community",
|
|
75
|
+
"path": "repos/xema-community/biomes/biome-host"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"biomeId": "capability-registry",
|
|
79
|
+
"target": "server",
|
|
80
|
+
"imageRef": "ghcr.io/xema-dev/capability-registry",
|
|
81
|
+
"contentHash": "2700fa6a21ff85e712895c368e86e72dd0346dfc68ed507c96382ab0e0d6fdad",
|
|
82
|
+
"repo": "repos/xema-community",
|
|
83
|
+
"path": "repos/xema-community/biomes/capability-registry"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"biomeId": "catalog",
|
|
87
|
+
"target": "server",
|
|
88
|
+
"imageRef": "ghcr.io/xema-dev/catalog",
|
|
89
|
+
"contentHash": "2a4bbae971fbda69878faeece02a012374768ee94f2233f141801bc6ef6bc03f",
|
|
90
|
+
"repo": "repos/xema-platform",
|
|
91
|
+
"path": "repos/xema-platform/biomes/catalog"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"biomeId": "container-registry",
|
|
95
|
+
"target": "server",
|
|
96
|
+
"imageRef": "ghcr.io/xema-dev/container-registry",
|
|
97
|
+
"contentHash": "3d9812a7386f7426dcadec8fc6fc59491ce1ffe7372c35ad46afa66aa943afab",
|
|
98
|
+
"repo": "repos/xema-community",
|
|
99
|
+
"path": "repos/xema-community/biomes/container-registry"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"biomeId": "contribution-test",
|
|
103
|
+
"target": "server",
|
|
104
|
+
"imageRef": "ghcr.io/xema-dev/contribution-test",
|
|
105
|
+
"contentHash": "67677f046e5db95c83617c535c9c7f89d3ee31e7be51db87be1d125eafdc5246",
|
|
106
|
+
"repo": "repos/xema-community",
|
|
107
|
+
"path": "repos/xema-community/biomes/kernel/contribution-test"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"biomeId": "control-plane",
|
|
111
|
+
"target": "server",
|
|
112
|
+
"imageRef": "ghcr.io/xema-dev/control-plane",
|
|
113
|
+
"contentHash": "ddd88bd7dcdbd5f15c21ae0508c395f5cb738eb512b5acbf644db600e82ddf5b",
|
|
114
|
+
"repo": "repos/xema-community",
|
|
115
|
+
"path": "repos/xema-community/biomes/control-plane"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"biomeId": "conversation-channels",
|
|
119
|
+
"target": "server",
|
|
120
|
+
"imageRef": "ghcr.io/xema-dev/conversation-channels",
|
|
121
|
+
"contentHash": "7f6b90e5f3df2da2fdb0d2643c02d7962d4e9d7350ccf066ac6db18175c6d667",
|
|
122
|
+
"repo": "repos/xema-community",
|
|
123
|
+
"path": "repos/xema-community/biomes/conversation-channels"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"biomeId": "document-rendering",
|
|
127
|
+
"target": "server",
|
|
128
|
+
"imageRef": "ghcr.io/xema-dev/document-rendering",
|
|
129
|
+
"contentHash": "fafea5af9ab9382fd691afbed8137e04d9d2102f8aa268456abbfc55ce8b9efe",
|
|
130
|
+
"repo": "repos/xema-platform",
|
|
131
|
+
"path": "repos/xema-platform/biomes/document-rendering"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"biomeId": "integration-platform",
|
|
135
|
+
"target": "server",
|
|
136
|
+
"imageRef": "ghcr.io/xema-dev/integration-platform",
|
|
137
|
+
"contentHash": "ef84e1bb9534ff9c4705f26c8652b1e62f3ea1bd4186c54578f82b6d7f2ddbe9",
|
|
138
|
+
"repo": "repos/xema-platform",
|
|
139
|
+
"path": "repos/xema-platform/biomes/integration-platform"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"biomeId": "knowledge-base",
|
|
143
|
+
"target": "server",
|
|
144
|
+
"imageRef": "ghcr.io/xema-dev/knowledge-base",
|
|
145
|
+
"contentHash": "6ba387975ecb418e5275dfedad8472928fade27e551f9acfb4b610657d3dbe5f",
|
|
146
|
+
"repo": "repos/xema-community",
|
|
147
|
+
"path": "repos/xema-community/biomes/knowledge-base"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"biomeId": "mcp-router",
|
|
151
|
+
"target": "server",
|
|
152
|
+
"imageRef": "ghcr.io/xema-dev/mcp-router",
|
|
153
|
+
"contentHash": "284fbe2b827d91011574667d874a1f3b52b8021099f700508c546e6704c28dc7",
|
|
154
|
+
"repo": "repos/xema-community",
|
|
155
|
+
"path": "repos/xema-community/biomes/mcp-router"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"biomeId": "object-registry",
|
|
159
|
+
"target": "server",
|
|
160
|
+
"imageRef": "ghcr.io/xema-dev/object-registry",
|
|
161
|
+
"contentHash": "3a1c5ed2b49414d0afbe5229e9b52edd97bf3013078e48741e9903196b8a93ea",
|
|
162
|
+
"repo": "repos/xema-community",
|
|
163
|
+
"path": "repos/xema-community/biomes/object-registry"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"biomeId": "opencode-runtime",
|
|
167
|
+
"target": "server",
|
|
168
|
+
"imageRef": "ghcr.io/xema-dev/opencode-runtime",
|
|
169
|
+
"contentHash": "6f623bd99cf0f33a307d7c157800b6973a550a934e1f15bb0368f60185dd1d1f",
|
|
170
|
+
"repo": "repos/xema-community",
|
|
171
|
+
"path": "repos/xema-community/biomes/opencode-runtime"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"biomeId": "org-database-pool",
|
|
175
|
+
"target": "server",
|
|
176
|
+
"imageRef": "ghcr.io/xema-dev/org-database-pool",
|
|
177
|
+
"contentHash": "eceb2758fbb704162e6a349ae7310dc64bd7357011e5250ff97989f512cb4a35",
|
|
178
|
+
"repo": "repos/xema-platform",
|
|
179
|
+
"path": "repos/xema-platform/biomes/org-database-pool"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"biomeId": "output-surface-control",
|
|
183
|
+
"target": "server",
|
|
184
|
+
"imageRef": "ghcr.io/xema-dev/output-surface-control",
|
|
185
|
+
"contentHash": "66a101edd787da22b4c7ac8bb0534f1ca3b02af52ce64fc8d632ece57aea871e",
|
|
186
|
+
"repo": "repos/xema-community",
|
|
187
|
+
"path": "repos/xema-community/biomes/kernel/output-surface-control"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"biomeId": "output-surface-inspector",
|
|
191
|
+
"target": "server",
|
|
192
|
+
"imageRef": "ghcr.io/xema-dev/output-surface-inspector",
|
|
193
|
+
"contentHash": "fb25eddc76dc195e1dbfca6b8a9dc1cf61c0e506e01a705f9edfb51a1d3aafab",
|
|
194
|
+
"repo": "repos/xema-community",
|
|
195
|
+
"path": "repos/xema-community/biomes/kernel/output-surface-inspector"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"biomeId": "policy-distributor",
|
|
199
|
+
"target": "server",
|
|
200
|
+
"imageRef": "ghcr.io/xema-dev/policy-distributor",
|
|
201
|
+
"contentHash": "a835adde641a9cdbb6d861596e664d59c25af42c9e06c7c89f1a80feb3273cc5",
|
|
202
|
+
"repo": "repos/xema-community",
|
|
203
|
+
"path": "repos/xema-community/biomes/policy-distributor"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"biomeId": "project-registry",
|
|
207
|
+
"target": "server",
|
|
208
|
+
"imageRef": "ghcr.io/xema-dev/project-registry",
|
|
209
|
+
"contentHash": "c346ca58906532c1120cd30a196f85b6eb3528cf2f0483d76a8981daaacc3937",
|
|
210
|
+
"repo": "repos/xema-community",
|
|
211
|
+
"path": "repos/xema-community/biomes/project-registry"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"biomeId": "public-gateway",
|
|
215
|
+
"target": "server",
|
|
216
|
+
"imageRef": "ghcr.io/xema-dev/public-gateway",
|
|
217
|
+
"contentHash": "ca7f301ddaf3b6b749dae24296242dc27c61725e83f7e370e29b4f66e096f060",
|
|
218
|
+
"repo": "repos/xema-community",
|
|
219
|
+
"path": "repos/xema-community/biomes/public-gateway"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"biomeId": "runtime",
|
|
223
|
+
"target": "server",
|
|
224
|
+
"imageRef": "ghcr.io/xema-dev/runtime",
|
|
225
|
+
"contentHash": "6f5e4eb114dd507fb81e449c75f262ee67ce77850aa231890cbbde155c0492aa",
|
|
226
|
+
"repo": "repos/xema-community",
|
|
227
|
+
"path": "repos/xema-community/biomes/kernel/runtime"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"biomeId": "search",
|
|
231
|
+
"target": "server",
|
|
232
|
+
"imageRef": "ghcr.io/xema-dev/search",
|
|
233
|
+
"contentHash": "08a859af75e85110df689b838f4701a24b90f7f58da6012fca238d65166c196e",
|
|
234
|
+
"repo": "repos/xema-platform",
|
|
235
|
+
"path": "repos/xema-platform/biomes/search"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"biomeId": "space-registry",
|
|
239
|
+
"target": "server",
|
|
240
|
+
"imageRef": "ghcr.io/xema-dev/space-registry",
|
|
241
|
+
"contentHash": "45a3fccc543f911c42dabf29ef021bd8df548188cae239f2b0770ebd1a1bedc8",
|
|
242
|
+
"repo": "repos/xema-community",
|
|
243
|
+
"path": "repos/xema-community/biomes/space-registry"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"biomeId": "studio-author",
|
|
247
|
+
"target": "server",
|
|
248
|
+
"imageRef": "ghcr.io/xema-dev/studio-author",
|
|
249
|
+
"contentHash": "964796fec31347c38cbd193bcf4f48c4684a1bafb1e147290479ad15e07a7685",
|
|
250
|
+
"repo": "repos/xema-community",
|
|
251
|
+
"path": "repos/xema-community/biomes/kernel/studio-author"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"biomeId": "subagents",
|
|
255
|
+
"target": "server",
|
|
256
|
+
"imageRef": "ghcr.io/xema-dev/subagents",
|
|
257
|
+
"contentHash": "8ada2022114f7e5bbec1cd2a031cf06d98714ebab9d4f28b2b14630d08221ac3",
|
|
258
|
+
"repo": "repos/xema-community",
|
|
259
|
+
"path": "repos/xema-community/biomes/kernel/subagents"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"biomeId": "user-hub",
|
|
263
|
+
"target": "server",
|
|
264
|
+
"imageRef": "ghcr.io/xema-dev/user-hub",
|
|
265
|
+
"contentHash": "28186681a50403f6e522233e9a6f051d8479559cd844798b996a5a68351cfeef",
|
|
266
|
+
"repo": "repos/xema-community",
|
|
267
|
+
"path": "repos/xema-community/biomes/user-hub"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"biomeId": "workflow-runtime",
|
|
271
|
+
"target": "server",
|
|
272
|
+
"imageRef": "ghcr.io/xema-dev/workflow-runtime",
|
|
273
|
+
"contentHash": "362e96942507122969a203bb57a5a4ef47a605e15e326bbcb1bf55a32545c821",
|
|
274
|
+
"repo": "repos/xema-community",
|
|
275
|
+
"path": "repos/xema-community/biomes/workflow-runtime"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"biomeId": "workload-runtime",
|
|
279
|
+
"target": "server",
|
|
280
|
+
"imageRef": "ghcr.io/xema-dev/workload-runtime",
|
|
281
|
+
"contentHash": "aa0980688db9da04541058921970c87930fbdee91826a62f7e2b9a695e95f1d0",
|
|
282
|
+
"repo": "repos/xema-platform",
|
|
283
|
+
"path": "repos/xema-platform/biomes/workload-runtime"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"biomeId": "workspace-orchestrator",
|
|
287
|
+
"target": "server",
|
|
288
|
+
"imageRef": "ghcr.io/xema-dev/workspace-orchestrator",
|
|
289
|
+
"contentHash": "37c8b9d11179f99edb124b69a0ddc4e6a5d0b1b8ffef57b089f1044544c9bfd3",
|
|
290
|
+
"repo": "repos/xema-platform",
|
|
291
|
+
"path": "repos/xema-platform/biomes/workspace-orchestrator"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"biomeId": "workspace-proxy",
|
|
295
|
+
"target": "server",
|
|
296
|
+
"imageRef": "ghcr.io/xema-dev/workspace-proxy",
|
|
297
|
+
"contentHash": "941f4e4c4eee5669758397aef6fb14fddc3f94e7361d7d8a99f479974bb8246e",
|
|
298
|
+
"repo": "repos/xema-community",
|
|
299
|
+
"path": "repos/xema-community/biomes/workspace-proxy"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"biomeId": "workspace-storage-pool",
|
|
303
|
+
"target": "server",
|
|
304
|
+
"imageRef": "ghcr.io/xema-dev/workspace-storage-pool",
|
|
305
|
+
"contentHash": "08c40c89b26f2966fc3b52cacd9cc7fb9ed8b6b01818ed48f8b33034f4101f4d",
|
|
306
|
+
"repo": "repos/xema-platform",
|
|
307
|
+
"path": "repos/xema-platform/biomes/workspace-storage-pool"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"biomeId": "xema-biome-runner",
|
|
311
|
+
"target": "server",
|
|
312
|
+
"imageRef": "ghcr.io/xema-dev/xema-biome-runner",
|
|
313
|
+
"contentHash": "006551209097aa45d4cf3df13c7996bd7202b215832e8fdf781eeaef4a007719",
|
|
314
|
+
"repo": "repos/xema-community",
|
|
315
|
+
"path": "repos/xema-community/biomes/xema-biome-runner"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"biomeId": "xema-capability-router",
|
|
319
|
+
"target": "server",
|
|
320
|
+
"imageRef": "ghcr.io/xema-dev/xema-capability-router",
|
|
321
|
+
"contentHash": "4cec540faa74dcde1d206427512a8759416812c917769b9c207f047e8aefab45",
|
|
322
|
+
"repo": "repos/xema-community",
|
|
323
|
+
"path": "repos/xema-community/biomes/xema-capability-router"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"biomeId": "xema-platform-worker",
|
|
327
|
+
"target": "server",
|
|
328
|
+
"imageRef": "ghcr.io/xema-dev/xema-platform-worker",
|
|
329
|
+
"contentHash": "67a2390e02893dce845c3dce0e7e7ab99a45d2c1ba927c2a35800ac6b7ac2ee6",
|
|
330
|
+
"repo": "repos/xema-platform",
|
|
331
|
+
"path": "repos/xema-platform/biomes/xema-platform-worker"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"biomeId": "xema-shell",
|
|
335
|
+
"target": "server",
|
|
336
|
+
"imageRef": "ghcr.io/xema-dev/xema-shell",
|
|
337
|
+
"contentHash": "649f7e94a86fa4bd335e59d248f3a16e2bb6d0778a17cf6f7fffa993b575a082",
|
|
338
|
+
"repo": "repos/xema-community",
|
|
339
|
+
"path": "repos/xema-community/biomes/xema-shell"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"biomeId": "xema-store",
|
|
343
|
+
"target": "server",
|
|
344
|
+
"imageRef": "ghcr.io/xema-dev/xema-store",
|
|
345
|
+
"contentHash": "13718b54691941ad26d7f33e43c46c2e6c12010eb32671666da094de022283e8",
|
|
346
|
+
"repo": "repos/xema-store-api",
|
|
347
|
+
"path": "repos/xema-store-api/biomes/xema-store"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"webBiomes": [
|
|
351
|
+
{
|
|
352
|
+
"biomeId": "activity-web",
|
|
353
|
+
"repo": "submodules/xema-host-web",
|
|
354
|
+
"path": "submodules/xema-host-web/biomes/system/activity-web"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"biomeId": "capabilities-web",
|
|
358
|
+
"repo": "submodules/xema-host-web",
|
|
359
|
+
"path": "submodules/xema-host-web/biomes/system/capabilities-web"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"biomeId": "concepts-web",
|
|
363
|
+
"repo": "submodules/xema-host-web",
|
|
364
|
+
"path": "submodules/xema-host-web/biomes/system/concepts-web"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"biomeId": "container-registry-web",
|
|
368
|
+
"repo": "submodules/xema-host-web",
|
|
369
|
+
"path": "submodules/xema-host-web/biomes/system/container-registry-web"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"biomeId": "environments-web",
|
|
373
|
+
"repo": "submodules/xema-host-web",
|
|
374
|
+
"path": "submodules/xema-host-web/biomes/system/environments-web"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"biomeId": "gateway-routes-web",
|
|
378
|
+
"repo": "submodules/xema-host-web",
|
|
379
|
+
"path": "submodules/xema-host-web/biomes/system/gateway-routes-web"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"biomeId": "grants-web",
|
|
383
|
+
"repo": "submodules/xema-host-web",
|
|
384
|
+
"path": "submodules/xema-host-web/biomes/system/grants-web"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"biomeId": "mailops-web",
|
|
388
|
+
"repo": "submodules/xema-host-web",
|
|
389
|
+
"path": "submodules/xema-host-web/biomes/system/mailops-web"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"biomeId": "objects-web",
|
|
393
|
+
"repo": "submodules/xema-host-web",
|
|
394
|
+
"path": "submodules/xema-host-web/biomes/system/objects-web"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"biomeId": "policies-web",
|
|
398
|
+
"repo": "submodules/xema-host-web",
|
|
399
|
+
"path": "submodules/xema-host-web/biomes/system/policies-web"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"biomeId": "runners-web",
|
|
403
|
+
"repo": "submodules/xema-host-web",
|
|
404
|
+
"path": "submodules/xema-host-web/biomes/system/runners-web"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"biomeId": "search-web",
|
|
408
|
+
"repo": "submodules/xema-host-web",
|
|
409
|
+
"path": "submodules/xema-host-web/biomes/system/search-web"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"biomeId": "service-registry-web",
|
|
413
|
+
"repo": "submodules/xema-host-web",
|
|
414
|
+
"path": "submodules/xema-host-web/biomes/system/service-registry-web"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"biomeId": "spaces-web",
|
|
418
|
+
"repo": "submodules/xema-host-web",
|
|
419
|
+
"path": "submodules/xema-host-web/biomes/system/spaces-web"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"biomeId": "user-hub-web",
|
|
423
|
+
"repo": "submodules/xema-host-web",
|
|
424
|
+
"path": "submodules/xema-host-web/biomes/system/user-hub-web"
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"resolvedAt": "2026-06-25T13:45:41.773Z"
|
|
428
|
+
}
|