-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1911 lines (1819 loc) · 56.1 KB
/
Copy pathopenapi.yaml
File metadata and controls
1911 lines (1819 loc) · 56.1 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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: NullBoiler Orchestrator API
summary: Workflow orchestration HTTP API for the Null ecosystem.
description: |
NullBoiler is the orchestration engine of the Null ecosystem. It pulls work
from a tracker (or accepts ad-hoc runs), applies scheduling/routing
strategies, and dispatches steps to compatible worker runtimes (NullClaw,
OpenClaw-compatible, ZeroClaw, PicoClaw bridges).
This document is the source of truth for the HTTP surface used by:
- dashboards and operators talking to a single NullBoiler instance,
- automation/SDKs driving runs and workflows,
- integration tests that need to assert request/response shapes,
- generated client SDKs (TypeScript, Python, Go) — see
`docs/api/README.md` for the generator command.
The spec was reverse-engineered from `src/api.zig` and `src/types.zig`
on the NullBoiler `main` branch and tracks the same version reported by
`GET /health`.
## Endpoint availability
A few endpoints are conditional on runtime configuration:
- **`/tracker/*`** — only mounted when `tracker` is configured in
`nullboiler.config.json`. Otherwise the orchestrator runs in
tracker-less mode and these paths return `404`.
## Authentication
All endpoints except `GET /health` and `GET /metrics` require a bearer
token when the orchestrator is started with `--api-token` or
`NULLBOILER_API_TOKEN`. When no token is configured, the API is open.
## Idempotency
`POST /runs` accepts an idempotency key either as the
`Idempotency-Key` request header (preferred) or as `idempotency_key`
in the body. Replays of the same payload return `200` with
`idempotent_replay: true`. Replays with a different payload return
`409 conflict`.
## Drain mode
`POST /admin/drain` puts the orchestrator into drain mode. While
draining, `POST /runs` returns `503` and existing runs continue to
completion. Drain mode is process-local and resets on restart.
version: "2026.3.3"
license:
name: MIT
identifier: MIT
contact:
name: NullBoiler maintainers
url: https://github.com/nullclaw/nullboiler
servers:
- url: http://localhost:8080
description: Local development (default port from docker-compose)
- url: http://localhost:3000
description: Local development (default Dockerfile CMD port)
- url: https://{host}
description: Custom deployment
variables:
host:
default: nullboiler.example.com
tags:
- name: Health
description: Liveness, version, and aggregate health probes.
- name: Metrics
description: Prometheus-format scrape endpoint for `/metrics`.
- name: Runs
description: Workflow run lifecycle — create, inspect, cancel, retry, replay, fork.
- name: Steps
description: Individual step inspection within a run.
- name: Events
description: Run-scoped event feed and stream snapshots.
- name: Checkpoints
description: Run state snapshots used for resume, fork, and replay.
- name: Workers
description: Worker registry — register, list, delete worker runtimes.
- name: Workflows
description: Reusable workflow definitions (CRUD + validate + mermaid + run).
- name: Tracker
description: Bridge to NullTickets when running in tracker-driven mode.
- name: Admin
description: Operational controls — drain mode, rate limit inspection.
- name: Internal
description: Endpoints used by worker runtimes — not for external consumers.
security:
- bearerAuth: []
paths:
/health:
get:
tags: [Health]
summary: Health probe
description: Public health probe. Always returns 200 with current version and counters.
operationId: getHealth
security: []
responses:
'200':
description: Health snapshot
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'
examples:
ok:
value:
status: ok
version: "2026.3.3"
active_runs: 3
total_workers: 2
/metrics:
get:
tags: [Metrics]
summary: Prometheus metrics
description: |
Prometheus exposition format. Public (no auth) so that scrapers can
reach it without provisioning a token.
operationId: getMetrics
security: []
responses:
'200':
description: Metrics in text exposition format
content:
text/plain:
schema:
type: string
example: |
# TYPE nullboiler_http_requests_total counter
nullboiler_http_requests_total 1234
# TYPE nullboiler_runs_created_total counter
nullboiler_runs_created_total 42
# ... 9 more counters
# TYPE nullboiler_runs_in_flight gauge
nullboiler_runs_in_flight 2
# TYPE nullboiler_steps_in_flight gauge
nullboiler_steps_in_flight 5
# TYPE nullboiler_workers_healthy gauge
nullboiler_workers_healthy 3
# TYPE nullboiler_drain_mode gauge
nullboiler_drain_mode 0
/admin/drain:
post:
tags: [Admin]
summary: Enter drain mode
description: |
Refuses new runs. Existing runs continue. Drain mode is process-local
and resets on restart. There is no inverse endpoint — restart the
orchestrator to leave drain mode.
operationId: enableDrain
responses:
'200':
description: Drain mode enabled
content:
application/json:
schema:
type: object
required: [status]
properties:
status:
type: string
enum: [draining]
'500':
$ref: '#/components/responses/InternalError'
/rate-limits:
get:
tags: [Admin]
summary: Inspect per-worker rate limit state
description: |
Returns rate limit state per worker_id. Empty array when no rate
limits are configured or none have been observed yet. Useful for
investigating dispatch backpressure.
operationId: listRateLimits
responses:
'200':
description: Array of per-worker rate limit snapshots
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RateLimitEntry'
/workers:
get:
tags: [Workers]
summary: List registered workers
operationId: listWorkers
responses:
'200':
description: Array of workers
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Worker'
'500':
$ref: '#/components/responses/InternalError'
post:
tags: [Workers]
summary: Register a worker
description: |
Registers a worker with the orchestrator. Workers can also be
configured statically in `config.json` — those have `source: config`.
Registered workers have `source: registered`.
operationId: registerWorker
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WorkerRegistration'
responses:
'201':
description: Worker registered
content:
application/json:
schema:
type: object
required: [id, status, protocol]
properties:
id:
type: string
status:
type: string
enum: [active]
protocol:
$ref: '#/components/schemas/WorkerProtocol'
'400':
$ref: '#/components/responses/BadRequest'
'409':
description: Worker id already exists
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
$ref: '#/components/responses/InternalError'
/workers/{id}:
delete:
tags: [Workers]
summary: Remove a worker
operationId: deleteWorker
parameters:
- $ref: '#/components/parameters/WorkerId'
responses:
'200':
description: Worker removed
content:
application/json:
schema:
type: object
required: [ok]
properties:
ok:
type: boolean
enum: [true]
'500':
$ref: '#/components/responses/InternalError'
/runs:
post:
tags: [Runs]
summary: Create a workflow run
description: |
Creates a new run from an inline workflow definition. Use
`/workflows/{id}/run` to launch a stored workflow instead.
Idempotency: pass `Idempotency-Key` header (preferred) or
`idempotency_key` body field. Replays of the exact same payload
return `200` with `idempotent_replay: true`. Different payloads
with the same key return `409 conflict`.
operationId: createRun
parameters:
- name: Idempotency-Key
in: header
required: false
schema:
type: string
minLength: 1
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RunCreate'
responses:
'200':
description: Idempotent replay of an existing run
content:
application/json:
schema:
$ref: '#/components/schemas/RunCreated'
examples:
replay:
value:
id: r_abc123
status: completed
idempotent_replay: true
'201':
description: Run created
content:
application/json:
schema:
$ref: '#/components/schemas/RunCreated'
examples:
created:
value:
id: r_abc123
status: running
idempotent_replay: false
'400':
$ref: '#/components/responses/BadRequest'
'409':
description: Idempotency conflict — same key, different payload
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'503':
description: Orchestrator is in drain mode
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
draining:
value:
error:
code: draining
message: orchestrator is draining and does not accept new runs
'500':
$ref: '#/components/responses/InternalError'
get:
tags: [Runs]
summary: List runs
description: |
Returns a paginated wrapper. Items are the condensed run shape
(id, status, optional idempotency_key, optional workflow_id,
timestamps) — use `GET /runs/{id}` for the full detail with
embedded steps, workflow snapshot, input, callbacks, and state.
operationId: listRuns
parameters:
- name: status
in: query
required: false
schema:
$ref: '#/components/schemas/RunStatus'
description: Filter by run status.
- name: workflow_id
in: query
required: false
schema:
type: string
description: Filter to runs created from a specific stored workflow.
- name: limit
in: query
required: false
schema:
type: integer
minimum: 1
maximum: 1000
default: 100
- name: offset
in: query
required: false
schema:
type: integer
minimum: 0
maximum: 1000000000
default: 0
responses:
'200':
description: Paginated list of runs (newest first)
content:
application/json:
schema:
$ref: '#/components/schemas/RunListResponse'
examples:
page:
value:
items:
- id: ea25c0ac-9c45-441c-a1ff-d2f4602a3b2e
status: failed
created_at_ms: 1778183970318
updated_at_ms: 1778183975351
limit: 100
offset: 0
next_offset: 1
has_more: false
/runs/{id}:
get:
tags: [Runs]
summary: Get run detail
operationId: getRun
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Run with embedded steps
content:
application/json:
schema:
$ref: '#/components/schemas/RunDetail'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/cancel:
post:
tags: [Runs]
summary: Cancel a run
operationId: cancelRun
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Cancellation accepted
content:
application/json:
schema:
$ref: '#/components/schemas/RunStatusResponse'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/retry:
post:
tags: [Runs]
summary: Retry a failed run
description: Resets failed steps to ready and moves the run back to `running`.
operationId: retryRun
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Run moved back to running
content:
application/json:
schema:
$ref: '#/components/schemas/RunStatusResponse'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/steps:
get:
tags: [Steps]
summary: List steps in a run
operationId: listRunSteps
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Array of steps
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Step'
'404':
$ref: '#/components/responses/NotFound'
/runs/{id}/steps/{step_id}:
get:
tags: [Steps]
summary: Get step detail
operationId: getStep
parameters:
- $ref: '#/components/parameters/RunId'
- $ref: '#/components/parameters/StepId'
responses:
'200':
description: Step detail
content:
application/json:
schema:
$ref: '#/components/schemas/Step'
'404':
$ref: '#/components/responses/NotFound'
/runs/{id}/events:
get:
tags: [Events]
summary: List run events
description: |
Polling-mode event feed backed by persisted run events.
operationId: listRunEvents
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Array of events ordered by id ascending
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Event'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/stream:
get:
tags: [Events]
summary: Snapshot run stream events
description: |
Returns the current run status/state, persisted events, and buffered
in-memory stream events as a regular JSON response. Use `after_seq`
to page through buffered stream events without sharing cursor state
between consumers.
operationId: streamRunEvents
parameters:
- $ref: '#/components/parameters/RunId'
- name: mode
in: query
required: false
schema:
type: string
example: values,debug
description: Comma-separated stream modes to include (`values`, `updates`, `tasks`, `debug`, `custom`). Defaults to all modes.
- name: after_seq
in: query
required: false
schema:
type: integer
format: int64
minimum: 0
default: 0
description: Return buffered stream events after this sequence number.
responses:
'200':
description: Stream snapshot
content:
application/json:
schema:
$ref: '#/components/schemas/StreamSnapshot'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/checkpoints:
get:
tags: [Checkpoints]
summary: List checkpoints for a run
operationId: listCheckpoints
parameters:
- $ref: '#/components/parameters/RunId'
responses:
'200':
description: Array of checkpoints
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Checkpoint'
'404':
$ref: '#/components/responses/NotFound'
/runs/{id}/checkpoints/{cp_id}:
get:
tags: [Checkpoints]
summary: Get checkpoint detail
operationId: getCheckpoint
parameters:
- $ref: '#/components/parameters/RunId'
- $ref: '#/components/parameters/CheckpointId'
responses:
'200':
description: Checkpoint with full state
content:
application/json:
schema:
$ref: '#/components/schemas/Checkpoint'
'404':
$ref: '#/components/responses/NotFound'
/runs/{id}/resume:
post:
tags: [Runs]
summary: Resume an interrupted run
description: |
Resumes the latest checkpoint for a run currently in `interrupted`
status. Optional `state_updates` are applied before the run is moved
back to `running`.
operationId: resumeRun
parameters:
- $ref: '#/components/parameters/RunId'
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
state_updates:
type: object
additionalProperties: true
description: Optional state values to merge before resuming.
responses:
'200':
description: Run resumed
content:
application/json:
schema:
$ref: '#/components/schemas/RunStatusResponse'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'500':
$ref: '#/components/responses/InternalError'
/runs/fork:
post:
tags: [Runs]
summary: Fork a run from a checkpoint into a new run
description: |
Creates a new run that branches from the parent's checkpoint.
Useful for what-if exploration without disturbing the parent run.
operationId: forkRun
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [checkpoint_id]
properties:
checkpoint_id:
type: string
description: Existing checkpoint to fork from; the parent run is inferred from this checkpoint.
state_overrides:
type: object
additionalProperties: true
responses:
'201':
description: Forked run created
content:
application/json:
schema:
$ref: '#/components/schemas/ForkRunResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/state:
post:
tags: [Runs]
summary: Inject state into a running run
description: |
Schedules an injection of state updates into the run. Optionally
delays application until after a specified step completes.
operationId: injectRunState
parameters:
- $ref: '#/components/parameters/RunId'
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [updates]
properties:
updates:
type: object
additionalProperties: true
description: State key/value updates to merge.
apply_after_step:
type: string
description: Optional def_step_id — defer until that step finishes.
responses:
'200':
description: State update applied immediately or queued for a later step
content:
application/json:
schema:
$ref: '#/components/schemas/StateInjectionResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/runs/{id}/replay:
post:
tags: [Runs]
summary: Replay a run from a checkpoint
description: |
Resets the existing run back to a checkpoint, deletes later steps and
checkpoints, and moves the same run back to `running`.
operationId: replayRun
parameters:
- $ref: '#/components/parameters/RunId'
requestBody:
required: true
content:
application/json:
schema:
type: object
anyOf:
- required: [from_checkpoint_id]
- required: [checkpoint_id]
properties:
from_checkpoint_id:
type: string
description: Canonical checkpoint id to replay from.
checkpoint_id:
type: string
description: Backward-compatible alias for `from_checkpoint_id`.
responses:
'200':
description: Run reset to checkpoint and moved to running
content:
application/json:
schema:
$ref: '#/components/schemas/ReplayRunResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/workflows:
post:
tags: [Workflows]
summary: Store a reusable workflow definition
operationId: createWorkflow
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WorkflowCreate'
responses:
'201':
description: Workflow stored
content:
application/json:
schema:
$ref: '#/components/schemas/WorkflowCreated'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalError'
get:
tags: [Workflows]
summary: List stored workflows
operationId: listWorkflows
responses:
'200':
description: Array of workflows including definitions
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Workflow'
/workflows/{id}:
get:
tags: [Workflows]
summary: Get workflow with full definition
operationId: getWorkflow
parameters:
- $ref: '#/components/parameters/WorkflowId'
responses:
'200':
description: Workflow with definition
content:
application/json:
schema:
$ref: '#/components/schemas/Workflow'
'404':
$ref: '#/components/responses/NotFound'
put:
tags: [Workflows]
summary: Update workflow definition
description: |
Replaces the workflow definition. If `version` is omitted, the stored
version is preserved. Existing runs already created from older versions
are unaffected because they hold a frozen snapshot of the workflow.
operationId: updateWorkflow
parameters:
- $ref: '#/components/parameters/WorkflowId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WorkflowUpdate'
responses:
'200':
description: Updated workflow
content:
application/json:
schema:
$ref: '#/components/schemas/OkResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
delete:
tags: [Workflows]
summary: Delete a workflow
operationId: deleteWorkflow
parameters:
- $ref: '#/components/parameters/WorkflowId'
responses:
'200':
description: Deleted
content:
application/json:
schema:
$ref: '#/components/schemas/OkResponse'
'404':
$ref: '#/components/responses/NotFound'
/workflows/{id}/validate:
post:
tags: [Workflows]
summary: Validate a stored workflow definition
description: |
Runs graph-based workflow validation without creating a run. Returns
a list of validation errors (empty array on success) and, when
generation succeeds, a Mermaid diagram.
operationId: validateWorkflow
parameters:
- $ref: '#/components/parameters/WorkflowId'
responses:
'200':
description: Validation result
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationResult'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/workflows/{id}/mermaid:
get:
tags: [Workflows]
summary: Render workflow as Mermaid diagram
description: Returns a Mermaid `flowchart` string suitable for embedding in docs.
operationId: getWorkflowMermaid
parameters:
- $ref: '#/components/parameters/WorkflowId'
responses:
'200':
description: Mermaid source
content:
text/plain:
schema:
type: string
example: |
flowchart TD
start --> plan
plan --> build
build --> review
'404':
$ref: '#/components/responses/NotFound'
/workflows/{id}/run:
post:
tags: [Workflows]
summary: Launch a run from a stored workflow
description: |
Convenience over `POST /runs` when the graph workflow definition is
already stored. The current implementation accepts an optional
`input` object and does not implement idempotency for this endpoint.
operationId: runWorkflow
parameters:
- $ref: '#/components/parameters/WorkflowId'
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
input:
type: object
additionalProperties: true
responses:
'201':
description: Run created
content:
application/json:
schema:
$ref: '#/components/schemas/RunStatusResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/tracker/status:
get:
tags: [Tracker]
summary: NullTickets bridge status
description: |
Reports whether NullBoiler is connected to a NullTickets tracker
and basic queue health. Returns `404 tracker_disabled` when no
tracker is configured.
operationId: getTrackerStatus
responses:
'200':
description: Tracker bridge status
content:
application/json:
schema:
$ref: '#/components/schemas/TrackerStatus'
'404':
$ref: '#/components/responses/TrackerDisabled'
'500':
$ref: '#/components/responses/InternalError'
/tracker/tasks:
get:
tags: [Tracker]
summary: List active tracker tasks
operationId: listTrackerTasks
responses:
'200':
description: Array of tracker tasks
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TrackerTask'
'404':
$ref: '#/components/responses/TrackerDisabled'
'500':
$ref: '#/components/responses/InternalError'
/tracker/tasks/{task_id}:
get:
tags: [Tracker]
summary: Tracker task detail
operationId: getTrackerTask
parameters:
- name: task_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Tracker task detail
content:
application/json:
schema:
$ref: '#/components/schemas/TrackerTask'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalError'
/tracker/stats:
get:
tags: [Tracker]
summary: Aggregate tracker statistics
operationId: getTrackerStats
responses:
'200':
description: Aggregate counts by state
content:
application/json:
schema: