-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1695 lines (1695 loc) · 45.6 KB
/
openapi.yaml
File metadata and controls
1695 lines (1695 loc) · 45.6 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: ThumbGate API
version: 1.2.0
description: |
Production API for feedback capture, schema-validated memory promotion,
prevention rule generation, and DPO export.
Bare up/down signals are logged immediately, but the API returns
clarification_required until one sentence explains what worked or failed.
When the explanation is specific enough, ThumbGate infers a domain tag if
the caller omitted manual tags so the feedback can still promote cleanly.
servers:
- url: https://thumbgate-production.up.railway.app
security:
- bearerAuth: []
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: API Key
schemas:
RubricScore:
type: object
required: [criterion, score]
properties:
criterion:
type: string
score:
type: number
minimum: 1
maximum: 5
evidence:
type: string
judge:
type: string
CaptureFeedbackRequest:
type: object
required: [signal]
properties:
signal:
type: string
enum: [up, down, positive, negative]
context:
type: string
description: One-sentence reason describing what worked or failed
whatWentWrong:
type: string
whatToChange:
type: string
whatWorked:
type: string
rubricScores:
type: array
items:
$ref: '#/components/schemas/RubricScore'
guardrails:
type: object
properties:
testsPassed:
type: boolean
pathSafety:
type: boolean
budgetCompliant:
type: boolean
tags:
oneOf:
- type: array
items:
type: string
- type: string
description: Optional domain tags. If omitted, ThumbGate infers one from the feedback text before promotion.
skill:
type: string
IntentPlanRequest:
type: object
required: [intentId]
properties:
intentId:
type: string
context:
type: string
mcpProfile:
type: string
bundleId:
type: string
partnerProfile:
type: string
delegationMode:
type: string
enum: [off, auto, sequential]
approved:
type: boolean
repoPath:
type: string
InternalAgentBootstrapRequest:
type: object
required: [source]
properties:
source:
type: string
enum: [github, slack, linear, api, cli]
repoPath:
type: string
prepareSandbox:
type: boolean
sandboxRoot:
type: string
intentId:
type: string
context:
type: string
mcpProfile:
type: string
partnerProfile:
type: string
delegationMode:
type: string
enum: [off, auto, sequential]
approved:
type: boolean
trigger:
type: object
properties:
type:
type: string
id:
type: string
url:
type: string
actor:
type: string
thread:
type: object
properties:
id:
type: string
title:
type: string
url:
type: string
task:
type: object
properties:
title:
type: string
body:
type: string
number:
type: string
branch:
type: string
labels:
type: array
items:
type: string
comments:
type: array
items:
type: object
properties:
author:
type: string
text:
type: string
timestamp:
type: string
messages:
type: array
items:
type: object
properties:
author:
type: string
text:
type: string
timestamp:
type: string
HandoffStartRequest:
type: object
required: [intentId]
properties:
intentId:
type: string
context:
type: string
mcpProfile:
type: string
bundleId:
type: string
partnerProfile:
type: string
approved:
type: boolean
repoPath:
type: string
delegateProfile:
type: string
plannedChecks:
type: array
items:
type: string
HandoffCompleteRequest:
type: object
required: [handoffId, outcome]
properties:
handoffId:
type: string
outcome:
type: string
enum: [accepted, rejected, aborted]
resultContext:
type: string
attempts:
type: number
violationCount:
type: number
tokenEstimate:
type: number
latencyMs:
type: number
summary:
type: string
BillingCheckoutRequest:
type: object
properties:
successUrl:
type: string
format: uri
cancelUrl:
type: string
format: uri
customerEmail:
type: string
format: email
installId:
type: string
metadata:
type: object
additionalProperties:
type: string
BillingProvisionRequest:
type: object
required: [customerId]
properties:
customerId:
type: string
installId:
type: string
WorkflowSprintIntakeRequest:
type: object
required: [email, workflow, owner, blocker, runtime]
properties:
email:
type: string
format: email
company:
type: string
workflow:
type: string
owner:
type: string
blocker:
type: string
runtime:
type: string
note:
type: string
acquisitionId:
type: string
visitorId:
type: string
sessionId:
type: string
traceId:
type: string
installId:
type: string
source:
type: string
utmSource:
type: string
utmMedium:
type: string
utmCampaign:
type: string
utmContent:
type: string
utmTerm:
type: string
community:
type: string
postId:
type: string
commentId:
type: string
campaignVariant:
type: string
offerCode:
type: string
ctaId:
type: string
ctaPlacement:
type: string
planId:
type: string
page:
type: string
landingPath:
type: string
referrerHost:
type: string
referrer:
type: string
WorkflowSprintIntakeResponse:
type: object
properties:
ok:
type: boolean
leadId:
type: string
status:
type: string
offer:
type: string
nextStep:
type: string
proofPackUrl:
type: string
format: uri
sprintBriefUrl:
type: string
format: uri
WorkflowSprintAdvanceRequest:
type: object
required: [leadId, status]
properties:
leadId:
type: string
status:
type: string
enum: [new, qualified, named_pilot, proof_backed_run, paid_team]
actor:
type: string
note:
type: string
reviewedBy:
type: string
workflowId:
type: string
teamId:
type: string
proofArtifacts:
type: array
items:
type: string
WorkflowSprintAdvanceResponse:
type: object
properties:
ok:
type: boolean
unchanged:
type: boolean
lead:
type: object
additionalProperties: true
workflowRun:
type: object
nullable: true
additionalProperties: true
FunnelAnalyticsResponse:
type: object
properties:
totalEvents:
type: integer
stageCounts:
type: object
properties:
acquisition:
type: integer
activation:
type: integer
paid:
type: integer
eventCounts:
type: object
additionalProperties:
type: integer
conversionRates:
type: object
properties:
acquisitionToActivation:
type: number
activationToPaid:
type: number
acquisitionToPaid:
type: number
paidProviderEvents:
type: integer
BillingSummaryResponse:
type: object
properties:
generatedAt:
type: string
format: date-time
coverage:
type: object
properties:
source:
type: string
tracksBookedRevenue:
type: boolean
tracksPaidOrders:
type: boolean
tracksInvoices:
type: boolean
tracksAttribution:
type: boolean
providerCoverage:
type: object
additionalProperties:
type: string
funnel:
allOf:
- $ref: '#/components/schemas/FunnelAnalyticsResponse'
- type: object
properties:
uniqueAcquisitionLeads:
type: integer
uniquePaidCustomers:
type: integer
firstPaidAt:
type: string
nullable: true
lastPaidAt:
type: string
nullable: true
lastPaidEvent:
type: object
nullable: true
properties:
timestamp:
type: string
nullable: true
event:
type: string
nullable: true
evidence:
type: string
nullable: true
customerId:
type: string
nullable: true
traceId:
type: string
nullable: true
signups:
type: object
properties:
total:
type: integer
uniqueLeads:
type: integer
bySource:
type: object
additionalProperties:
type: integer
byCampaign:
type: object
additionalProperties:
type: integer
pipeline:
type: object
properties:
workflowSprintLeads:
type: object
properties:
total:
type: integer
bySource:
type: object
additionalProperties:
type: integer
qualifiedWorkflowSprintLeads:
type: object
properties:
total:
type: integer
bySource:
type: object
additionalProperties:
type: integer
revenue:
type: object
properties:
paidProviderEvents:
type: integer
paidOrders:
type: integer
paidCustomers:
type: integer
bookedRevenueCents:
type: integer
bookedRevenueByCurrency:
type: object
additionalProperties:
type: integer
amountKnownOrders:
type: integer
amountUnknownOrders:
type: integer
amountKnownCoverageRate:
type: number
unreconciledPaidEvents:
type: integer
latestPaidAt:
type: string
nullable: true
latestPaidOrder:
type: object
nullable: true
properties:
timestamp:
type: string
nullable: true
provider:
type: string
nullable: true
event:
type: string
nullable: true
orderId:
type: string
nullable: true
customerId:
type: string
nullable: true
amountCents:
type: integer
nullable: true
currency:
type: string
nullable: true
amountKnown:
type: boolean
byProvider:
type: object
additionalProperties:
type: object
properties:
paidOrders:
type: integer
bookedRevenueCents:
type: integer
amountKnownOrders:
type: integer
amountUnknownOrders:
type: integer
bookedRevenueByCurrency:
type: object
additionalProperties:
type: integer
attribution:
type: object
properties:
acquisitionBySource:
type: object
additionalProperties:
type: integer
acquisitionByCampaign:
type: object
additionalProperties:
type: integer
paidBySource:
type: object
additionalProperties:
type: integer
paidByCampaign:
type: object
additionalProperties:
type: integer
bookedRevenueBySourceCents:
type: object
additionalProperties:
type: integer
bookedRevenueByCampaignCents:
type: object
additionalProperties:
type: integer
conversionBySource:
type: object
additionalProperties:
type: number
conversionByCampaign:
type: object
additionalProperties:
type: number
keys:
type: object
properties:
total:
type: integer
active:
type: integer
disabled:
type: integer
activeCustomers:
type: integer
totalUsage:
type: integer
bySource:
type: object
additionalProperties:
type: integer
activeBySource:
type: object
additionalProperties:
type: integer
customers:
type: array
items:
type: object
properties:
customerId:
type: string
activeKeys:
type: integer
totalKeys:
type: integer
usageCount:
type: integer
source:
type: string
installId:
type: string
nullable: true
createdAt:
type: string
nullable: true
disabledAt:
type: string
nullable: true
trafficMetrics:
type: object
properties:
visitors:
type: integer
sessions:
type: integer
pageViews:
type: integer
ctaClicks:
type: integer
checkoutStarts:
type: integer
buyerLossFeedback:
type: integer
seoLandingViews:
type: integer
operatorGeneratedAcquisition:
type: object
properties:
totalEvents:
type: integer
uniqueLeads:
type: integer
bySource:
type: object
additionalProperties:
type: integer
dataQuality:
type: object
properties:
telemetryCoverage:
type: number
attributionCoverage:
type: number
amountKnownCoverage:
type: number
unreconciledPaidEvents:
type: integer
paths:
/healthz:
get:
operationId: healthz
responses:
'200':
description: Service health
'401':
description: Unauthorized
/v1/feedback/capture:
post:
operationId: captureFeedback
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CaptureFeedbackRequest'
responses:
'200':
description: Feedback accepted and promoted to memory
'422':
description: Feedback logged only; clarification required or promotion rejected
'401':
description: Unauthorized
/v1/feedback/stats:
get:
operationId: getFeedbackStats
responses:
'200':
description: Aggregated feedback statistics
'401':
description: Unauthorized
/v1/feedback/infer:
post:
operationId: inferLessonFromHistory
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/InferLessonRequest'
responses:
'200':
description: Distilled lesson from chat history
'401':
description: Unauthorized
/v1/telemetry/ping:
post:
operationId: recordTelemetryPing
requestBody:
required: false
content:
application/json:
schema:
type: object
additionalProperties: true
responses:
'204':
description: Telemetry accepted on a best-effort basis
/v1/analytics/funnel:
get:
operationId: getFunnelAnalytics
responses:
'200':
description: Acquisition/activation/paid funnel metrics from append-only ledger
content:
application/json:
schema:
$ref: '#/components/schemas/FunnelAnalyticsResponse'
'401':
description: Unauthorized
/v1/analytics/losses:
get:
operationId: getLossAnalytics
parameters:
- in: query
name: window
schema:
type: string
enum: [today, 7d, 30d, lifetime]
- in: query
name: timezone
schema:
type: string
- in: query
name: now
schema:
type: string
format: date-time
responses:
'200':
description: Ranked buyer-loss and revenue-opportunity analysis for the active analytics window
content:
application/json:
schema:
type: object
additionalProperties: true
'401':
description: Unauthorized
/v1/dashboard:
get:
operationId: getDashboard
parameters:
- in: query
name: window
schema:
type: string
enum: [today, 7d, 30d, lifetime]
- in: query
name: timezone
schema:
type: string
- in: query
name: now
schema:
type: string
format: date-time
responses:
'200':
description: Full ThumbGate dashboard with feedback, telemetry, funnel, and observability analytics
content:
application/json:
schema:
type: object
additionalProperties: true
'401':
description: Unauthorized
/v1/dashboard/review-state:
get:
operationId: getDashboardReviewState
responses:
'200':
description: Persisted dashboard review checkpoint and the current delta since that checkpoint
content:
application/json:
schema:
type: object
additionalProperties: true
'401':
description: Unauthorized
post:
operationId: markDashboardReviewed
responses:
'200':
description: Persist and return the current dashboard review checkpoint
content:
application/json:
schema:
type: object
additionalProperties: true
'401':
description: Unauthorized
/v1/dashboard/render-spec:
get:
operationId: getDashboardRenderSpec
parameters:
- in: query
name: view
schema:
type: string
enum: [team-review, incident-review, workflow-rollout]
- in: query
name: window
schema:
type: string
enum: [today, 7d, 30d, lifetime]
- in: query
name: timezone
schema:
type: string
- in: query
name: now
schema:
type: string
format: date-time
responses:
'200':
description: Constrained JSON render spec for hosted Team and operations dashboard views
content:
application/json:
schema:
type: object
additionalProperties: true
'400':
description: Invalid dashboard render view or query
'401':
description: Unauthorized
/v1/decisions/evaluate:
post:
operationId: evaluateDecision
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
toolName:
type: string
description: Tool name is optional when provider-native tool call payload is supplied.
provider:
type: string
model:
type: string
providerToolCall:
type: object
additionalProperties: true
toolCall:
type: object
additionalProperties: true
toolUse:
type: object
additionalProperties: true
content:
type: array
items:
type: object
additionalProperties: true
input:
type: object
additionalProperties: true
arguments:
type: object
additionalProperties: true
method:
type: string
params:
type: object
additionalProperties: true
mcp:
type: object
additionalProperties: true
mcpToolCall:
type: object
additionalProperties: true
usage:
type: object
additionalProperties: true
tokenEstimate:
type: number
costUsd:
type: number
budget:
type: object
additionalProperties: true
workflowPattern:
type: string
enum: [single_action, chaining, routing, parallelization, evaluator-optimizer, agent]
workflow:
type: object
additionalProperties: true
goal:
type: string
tools:
type: array
items:
type: string
branches:
type: array
items:
type: string
steps:
type: array
items:
type: string
routes:
type: array
items:
type: string
command:
type: string
filePath:
type: string
changedFiles:
type: array
items:
type: string
repoPath:
type: string
baseBranch:
type: string
requirePrForReleaseSensitive:
type: boolean
requireVersionNotBehindBase:
type: boolean
workflowDispatch:
type: object
description: Evidence required before running `gh workflow run` or another environment-specific workflow dispatch.
properties:
environment:
type: string
description: Requested environment such as dev, staging, beta, or release.
workflow:
type: string
description: Expected workflow file or workflow name.
ref:
type: string
description: Expected branch or ref passed to the workflow dispatch command.
sha:
type: string
description: Expected HEAD SHA to verify before and after dispatch.
job:
type: string
description: Expected job name to verify before reporting the workflow URL.
responses:
'200':
description: Persisted workflow-sentinel recommendation with decision-control metadata and actionId
content:
application/json:
schema:
type: object
additionalProperties: true
'400':
description: Invalid decision evaluation request
'401':
description: Unauthorized
/v1/decisions/outcome:
post: