-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathevotown-engine-ingest-v0.1.yaml
More file actions
542 lines (542 loc) · 13.8 KB
/
Copy pathevotown-engine-ingest-v0.1.yaml
File metadata and controls
542 lines (542 loc) · 13.8 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
openapi: 3.0.3
info:
title: Evotown Engine Ingest API
version: "0.1.0"
description: >
Draft v0.1 — Evotown is the system of record. Independent engines POST run completion
and optional artifacts. Normative prose: docs/en/EVOTOWN-ENGINE-INGEST-V0.1.md (canonical in this repo).
servers:
- url: https://{evotown-host}/api/v1
variables:
evotown-host:
default: evotown.example
tags:
- name: engines
- name: runs
paths:
/engines/register:
post:
tags: [engines]
summary: Register or update an engine record
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/EngineRegister"
responses:
"200":
description: Registered
content:
application/json:
schema:
type: object
required: [registered, engine]
properties:
registered:
type: boolean
engine:
$ref: "#/components/schemas/Engine"
"401":
$ref: "#/components/responses/Unauthorized"
"422":
$ref: "#/components/responses/Unprocessable"
/engines:
get:
tags: [engines]
summary: List registered engines
parameters:
- name: limit
in: query
schema:
type: integer
default: 100
minimum: 1
maximum: 500
responses:
"200":
description: Engines
content:
application/json:
schema:
type: object
required: [engines]
properties:
engines:
type: array
items:
$ref: "#/components/schemas/Engine"
/runs/lease:
post:
tags: [runs]
summary: Lease one run job (optional pull model)
security:
- bearerAuth: []
responses:
"200":
description: Job leased
content:
application/json:
schema:
$ref: "#/components/schemas/RunLease"
"204":
description: No work available
"401":
$ref: "#/components/responses/Unauthorized"
/runs/{run_id}/complete:
post:
tags: [runs]
summary: Finalize a run (MVP required ingest)
security:
- bearerAuth: []
parameters:
- name: run_id
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/RunComplete"
responses:
"200":
description: Accepted
content:
application/json:
schema:
type: object
required: [accepted, idempotent, run_id, run]
properties:
accepted:
type: boolean
idempotent:
type: boolean
run_id:
type: string
run:
$ref: "#/components/schemas/Run"
"401":
$ref: "#/components/responses/Unauthorized"
"409":
description: Run already terminal (idempotency)
"413":
description: Payload too large
"422":
$ref: "#/components/responses/Unprocessable"
/runs:
get:
tags: [runs]
summary: List external runs
parameters:
- name: engine_id
in: query
schema:
type: string
- name: limit
in: query
schema:
type: integer
default: 100
minimum: 1
maximum: 500
responses:
"200":
description: Runs
content:
application/json:
schema:
type: object
required: [runs]
properties:
runs:
type: array
items:
$ref: "#/components/schemas/Run"
/runs/{run_id}:
get:
tags: [runs]
summary: Get one external run
parameters:
- name: run_id
in: path
required: true
schema:
type: string
responses:
"200":
description: Run
content:
application/json:
schema:
$ref: "#/components/schemas/Run"
"404":
description: Run not found
/events:
post:
tags: [runs]
summary: Ingest a runtime-neutral run event
description: >
Preferred live ingest endpoint for run.started, run.progress, and run.completed.
Lifecycle events may create or update the run summary before terminal completion.
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/RunEventIngest"
responses:
"200":
description: Accepted
content:
application/json:
schema:
$ref: "#/components/schemas/RunEventAccepted"
"401":
$ref: "#/components/responses/Unauthorized"
"422":
$ref: "#/components/responses/Unprocessable"
/runs/{run_id}/events:
post:
tags: [runs]
summary: Ingest a run event scoped by path run_id
security:
- bearerAuth: []
parameters:
- name: run_id
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/RunEventIngest"
responses:
"200":
description: Accepted
content:
application/json:
schema:
$ref: "#/components/schemas/RunEventAccepted"
"401":
$ref: "#/components/responses/Unauthorized"
"422":
$ref: "#/components/responses/Unprocessable"
get:
tags: [runs]
summary: List events for one run
parameters:
- name: run_id
in: path
required: true
schema:
type: string
- name: limit
in: query
schema:
type: integer
default: 500
minimum: 1
maximum: 2000
responses:
"200":
description: Run events
content:
application/json:
schema:
type: object
required: [events]
properties:
events:
type: array
items:
$ref: "#/components/schemas/RunEvent"
"404":
description: Run not found
/runs/{run_id}/artifacts:
post:
tags: [runs]
summary: Upload large artifact chunk (optional)
security:
- bearerAuth: []
parameters:
- name: run_id
in: path
required: true
schema:
type: string
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
responses:
"204":
description: Chunk stored
"401":
$ref: "#/components/responses/Unauthorized"
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: Evotown-issued engine token
responses:
Unauthorized:
description: Missing or invalid auth
Unprocessable:
description: Validation failed
schemas:
EngineRegister:
type: object
required: [engine_id, engine_version]
properties:
engine_id:
type: string
engine_type:
type: string
enum: [openclaw, hermes, skilllite, custom]
default: custom
engine_version:
type: string
display_name:
type: string
owner_team:
type: string
deployment_kind:
type: string
enum: [laptop, server, ci, container]
default: server
dispatch_url:
type: string
format: uri
capabilities:
type: object
additionalProperties: true
Engine:
allOf:
- $ref: "#/components/schemas/EngineRegister"
- type: object
properties:
registered_at:
type: string
updated_at:
type: string
RunLease:
type: object
required: [run_id, callback_base, payload]
properties:
run_id:
type: string
callback_base:
type: string
format: uri
description: >
Evotown API prefix including /api/v1 (no trailing slash).
Client POSTs to {callback_base}/runs/{run_id}/complete
payload:
type: object
additionalProperties: true
ArtifactManifestItem:
type: object
required: [path, sha256, bytes]
properties:
path:
type: string
sha256:
type: string
pattern: "^[a-f0-9]{64}$"
bytes:
type: integer
minimum: 0
RunComplete:
type: object
required:
- engine_id
- engine_version
- status
- exit_code
- finished_at
properties:
engine_id:
type: string
engine_version:
type: string
status:
type: string
enum: [succeeded, failed, cancelled]
exit_code:
type: integer
finished_at:
type: string
format: date-time
log_excerpt:
type: string
artifact_manifest:
type: array
items:
$ref: "#/components/schemas/ArtifactManifestItem"
artifact_bundle_url:
type: string
format: uri
signals:
type: object
additionalProperties: true
Run:
type: object
required: [run_id, engine_id, engine_version, status, exit_code, finished_at, accepted_at]
properties:
run_id:
type: string
engine_id:
type: string
engine_type:
type: string
enum: [openclaw, hermes, skilllite, custom]
engine_version:
type: string
tenant_id:
type: string
team_id:
type: string
agent_id:
type: string
task_id:
type: string
status:
type: string
enum: [running, succeeded, failed, cancelled]
exit_code:
type: integer
started_at:
type: string
format: date-time
finished_at:
type: string
format: date-time
log_excerpt:
type: string
artifact_manifest:
type: array
items:
$ref: "#/components/schemas/ArtifactManifestItem"
artifact_bundle_url:
type: string
format: uri
signals:
type: object
additionalProperties: true
accepted_at:
type: string
updated_at:
type: string
RunEventIngest:
type: object
required: [event_type, run_id, engine_id, ts]
properties:
event_type:
type: string
enum:
- run.started
- run.progress
- run.completed
- run_started
- step_started
- user_message
- assistant_message
- tool_call
- tool_result
- model_call
- artifact_written
- policy_violation
- run_finished
run_id:
type: string
tenant_id:
type: string
team_id:
type: string
agent_id:
type: string
engine_id:
type: string
engine_type:
type: string
enum: [openclaw, hermes, skilllite, custom]
engine_version:
type: string
task_id:
type: string
status:
type: string
enum: [running, succeeded, failed, cancelled]
ts:
type: string
format: date-time
seq:
type: integer
default: 0
minimum: 0
exit_code:
type: integer
log_excerpt:
type: string
artifact_manifest:
type: array
items:
$ref: "#/components/schemas/ArtifactManifestItem"
artifact_bundle_url:
type: string
format: uri
signals:
type: object
additionalProperties: true
payload:
type: object
additionalProperties: true
example:
event_type: run.started
run_id: xxx
tenant_id: company-a
team_id: growth-team
agent_id: agent-001
engine_id: skilllite-local
engine_type: skilllite
engine_version: 0.1.29
task_id: task-xxx
status: running
ts: "2026-05-25T09:00:00Z"
signals: {}
RunEvent:
allOf:
- $ref: "#/components/schemas/RunEventIngest"
- type: object
required: [id, accepted_at]
properties:
id:
type: integer
accepted_at:
type: string
RunEventAccepted:
type: object
required: [accepted, event]
properties:
accepted:
type: boolean
event:
$ref: "#/components/schemas/RunEvent"
run:
$ref: "#/components/schemas/Run"