-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathopenapi_doc.json
More file actions
5378 lines (5378 loc) · 209 KB
/
openapi_doc.json
File metadata and controls
5378 lines (5378 loc) · 209 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.1",
"info": { "title": "opencode", "description": "opencode api", "version": "0.0.3" },
"paths": {
"/global/health": {
"get": {
"operationId": "global.health",
"summary": "Get health",
"description": "Get health information about the OpenCode server.",
"responses": {
"200": {
"description": "Health information",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": { "healthy": { "type": "boolean", "const": true }, "version": { "type": "string" } },
"required": ["healthy", "version"]
}
}
}
}
}
}
},
"/global/event": {
"get": {
"operationId": "global.event",
"summary": "Get global events",
"description": "Subscribe to global events from the OpenCode system using server-sent events.",
"responses": {
"200": {
"description": "Event stream",
"content": { "text/event-stream": { "schema": { "$ref": "#/components/schemas/GlobalEvent" } } }
}
}
}
},
"/global/config": {
"get": {
"operationId": "global.config.get",
"summary": "Get global configuration",
"description": "Retrieve the current global OpenCode configuration settings and preferences.",
"responses": {
"200": {
"description": "Get global config info",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } }
}
}
},
"patch": {
"operationId": "global.config.update",
"summary": "Update global configuration",
"description": "Update global OpenCode configuration settings and preferences.",
"responses": {
"200": {
"description": "Successfully updated global config",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } } }
}
},
"/global/dispose": {
"post": {
"operationId": "global.dispose",
"summary": "Dispose instance",
"description": "Clean up and dispose all OpenCode instances, releasing all resources.",
"responses": {
"200": {
"description": "Global disposed",
"content": { "application/json": { "schema": { "type": "boolean" } } }
}
}
}
},
"/auth/{providerID}": {
"put": {
"operationId": "auth.set",
"summary": "Set auth credentials",
"description": "Set authentication credentials",
"responses": {
"200": {
"description": "Successfully set authentication credentials",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"parameters": [{ "in": "path", "name": "providerID", "schema": { "type": "string" }, "required": true }],
"requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Auth" } } } }
},
"delete": {
"operationId": "auth.remove",
"summary": "Remove auth credentials",
"description": "Remove authentication credentials",
"responses": {
"200": {
"description": "Successfully removed authentication credentials",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"parameters": [{ "in": "path", "name": "providerID", "schema": { "type": "string" }, "required": true }]
}
},
"/project": {
"get": {
"operationId": "project.list",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "List all projects",
"description": "Get a list of projects that have been opened with OpenCode.",
"responses": {
"200": {
"description": "List of projects",
"content": {
"application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Project" } } }
}
}
}
}
},
"/project/current": {
"get": {
"operationId": "project.current",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Get current project",
"description": "Retrieve the currently active project that OpenCode is working with.",
"responses": {
"200": {
"description": "Current project information",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Project" } } }
}
}
}
},
"/project/{projectID}": {
"patch": {
"operationId": "project.update",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "projectID", "schema": { "type": "string" }, "required": true }
],
"summary": "Update project",
"description": "Update project properties such as name, icon, and commands.",
"responses": {
"200": {
"description": "Updated project information",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Project" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"name": { "type": "string" },
"icon": {
"type": "object",
"properties": {
"url": { "type": "string" },
"override": { "type": "string" },
"color": { "type": "string" }
}
},
"commands": {
"type": "object",
"properties": {
"start": {
"description": "Startup script to run when creating a new workspace (worktree)",
"type": "string"
}
}
}
}
}
}
}
}
}
},
"/pty": {
"get": {
"operationId": "pty.list",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "List PTY sessions",
"description": "Get a list of all active pseudo-terminal (PTY) sessions managed by OpenCode.",
"responses": {
"200": {
"description": "List of sessions",
"content": {
"application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Pty" } } }
}
}
}
},
"post": {
"operationId": "pty.create",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Create PTY session",
"description": "Create a new pseudo-terminal (PTY) session for running shell commands and processes.",
"responses": {
"200": {
"description": "Created session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Pty" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"command": { "type": "string" },
"args": { "type": "array", "items": { "type": "string" } },
"cwd": { "type": "string" },
"title": { "type": "string" },
"env": {
"type": "object",
"propertyNames": { "type": "string" },
"additionalProperties": { "type": "string" }
}
}
}
}
}
}
}
},
"/pty/{ptyID}": {
"get": {
"operationId": "pty.get",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "ptyID", "schema": { "type": "string" }, "required": true }
],
"summary": "Get PTY session",
"description": "Retrieve detailed information about a specific pseudo-terminal (PTY) session.",
"responses": {
"200": {
"description": "Session info",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Pty" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
},
"put": {
"operationId": "pty.update",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "ptyID", "schema": { "type": "string" }, "required": true }
],
"summary": "Update PTY session",
"description": "Update properties of an existing pseudo-terminal (PTY) session.",
"responses": {
"200": {
"description": "Updated session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Pty" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"title": { "type": "string" },
"size": {
"type": "object",
"properties": { "rows": { "type": "number" }, "cols": { "type": "number" } },
"required": ["rows", "cols"]
}
}
}
}
}
}
},
"delete": {
"operationId": "pty.remove",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "ptyID", "schema": { "type": "string" }, "required": true }
],
"summary": "Remove PTY session",
"description": "Remove and terminate a specific pseudo-terminal (PTY) session.",
"responses": {
"200": {
"description": "Session removed",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/pty/{ptyID}/connect": {
"get": {
"operationId": "pty.connect",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "ptyID", "schema": { "type": "string" }, "required": true }
],
"summary": "Connect to PTY session",
"description": "Establish a WebSocket connection to interact with a pseudo-terminal (PTY) session in real-time.",
"responses": {
"200": {
"description": "Connected session",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/config": {
"get": {
"operationId": "config.get",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Get configuration",
"description": "Retrieve the current OpenCode configuration settings and preferences.",
"responses": {
"200": {
"description": "Get config info",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } }
}
}
},
"patch": {
"operationId": "config.update",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Update configuration",
"description": "Update OpenCode configuration settings and preferences.",
"responses": {
"200": {
"description": "Successfully updated config",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Config" } } } }
}
},
"/config/providers": {
"get": {
"operationId": "config.providers",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "List config providers",
"description": "Get a list of all configured AI providers and their default models.",
"responses": {
"200": {
"description": "List of providers",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"providers": { "type": "array", "items": { "$ref": "#/components/schemas/Provider" } },
"default": {
"type": "object",
"propertyNames": { "type": "string" },
"additionalProperties": { "type": "string" }
}
},
"required": ["providers", "default"]
}
}
}
}
}
}
},
"/experimental/tool/ids": {
"get": {
"operationId": "tool.ids",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "List tool IDs",
"description": "Get a list of all available tool IDs, including both built-in tools and dynamically registered tools.",
"responses": {
"200": {
"description": "Tool IDs",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ToolIDs" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
}
}
},
"/experimental/tool": {
"get": {
"operationId": "tool.list",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "query", "name": "provider", "schema": { "type": "string" }, "required": true },
{ "in": "query", "name": "model", "schema": { "type": "string" }, "required": true }
],
"summary": "List tools",
"description": "Get a list of available tools with their JSON schema parameters for a specific provider and model combination.",
"responses": {
"200": {
"description": "Tools",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ToolList" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
}
}
},
"/experimental/worktree": {
"post": {
"operationId": "worktree.create",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Create worktree",
"description": "Create a new git worktree for the current project and run any configured startup scripts.",
"responses": {
"200": {
"description": "Worktree created",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Worktree" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/WorktreeCreateInput" } } }
}
},
"get": {
"operationId": "worktree.list",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "List worktrees",
"description": "List all sandbox worktrees for the current project.",
"responses": {
"200": {
"description": "List of worktree directories",
"content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } } } }
}
}
},
"delete": {
"operationId": "worktree.remove",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Remove worktree",
"description": "Remove a git worktree and delete its branch.",
"responses": {
"200": {
"description": "Worktree removed",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/WorktreeRemoveInput" } } }
}
}
},
"/experimental/worktree/reset": {
"post": {
"operationId": "worktree.reset",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Reset worktree",
"description": "Reset a worktree branch to the primary default branch.",
"responses": {
"200": {
"description": "Worktree reset",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/WorktreeResetInput" } } }
}
}
},
"/experimental/resource": {
"get": {
"operationId": "experimental.resource.list",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Get MCP resources",
"description": "Get all available MCP resources from connected servers. Optionally filter by name.",
"responses": {
"200": {
"description": "MCP resources",
"content": {
"application/json": {
"schema": {
"type": "object",
"propertyNames": { "type": "string" },
"additionalProperties": { "$ref": "#/components/schemas/McpResource" }
}
}
}
}
}
}
},
"/session": {
"get": {
"operationId": "session.list",
"parameters": [
{
"in": "query",
"name": "directory",
"schema": { "type": "string" },
"description": "Filter sessions by project directory"
},
{
"in": "query",
"name": "roots",
"schema": { "type": "boolean" },
"description": "Only return root sessions (no parentID)"
},
{
"in": "query",
"name": "start",
"schema": { "type": "number" },
"description": "Filter sessions updated on or after this timestamp (milliseconds since epoch)"
},
{
"in": "query",
"name": "search",
"schema": { "type": "string" },
"description": "Filter sessions by title (case-insensitive)"
},
{
"in": "query",
"name": "limit",
"schema": { "type": "number" },
"description": "Maximum number of sessions to return"
}
],
"summary": "List sessions",
"description": "Get a list of all OpenCode sessions, sorted by most recently updated.",
"responses": {
"200": {
"description": "List of sessions",
"content": {
"application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Session" } } }
}
}
}
},
"post": {
"operationId": "session.create",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Create session",
"description": "Create a new OpenCode session for interacting with AI assistants and managing conversations.",
"responses": {
"200": {
"description": "Successfully created session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"parentID": { "type": "string", "pattern": "^ses.*" },
"title": { "type": "string" },
"permission": { "$ref": "#/components/schemas/PermissionRuleset" }
}
}
}
}
}
}
},
"/session/status": {
"get": {
"operationId": "session.status",
"parameters": [{ "in": "query", "name": "directory", "schema": { "type": "string" } }],
"summary": "Get session status",
"description": "Retrieve the current status of all sessions, including active, idle, and completed states.",
"responses": {
"200": {
"description": "Get session status",
"content": {
"application/json": {
"schema": {
"type": "object",
"propertyNames": { "type": "string" },
"additionalProperties": { "$ref": "#/components/schemas/SessionStatus" }
}
}
}
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
}
}
}
},
"/session/{sessionID}": {
"get": {
"operationId": "session.get",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true }
],
"summary": "Get session",
"description": "Retrieve detailed information about a specific OpenCode session.",
"tags": ["Session"],
"responses": {
"200": {
"description": "Get session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
},
"delete": {
"operationId": "session.delete",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true }
],
"summary": "Delete session",
"description": "Delete a session and permanently remove all associated data, including messages and history.",
"responses": {
"200": {
"description": "Successfully deleted session",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
},
"patch": {
"operationId": "session.update",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string" }, "required": true }
],
"summary": "Update session",
"description": "Update properties of an existing session, such as title or other metadata.",
"responses": {
"200": {
"description": "Successfully updated session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"title": { "type": "string" },
"time": { "type": "object", "properties": { "archived": { "type": "number" } } }
}
}
}
}
}
}
},
"/session/{sessionID}/children": {
"get": {
"operationId": "session.children",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true }
],
"summary": "Get session children",
"tags": ["Session"],
"description": "Retrieve all child sessions that were forked from the specified parent session.",
"responses": {
"200": {
"description": "List of children",
"content": {
"application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Session" } } }
}
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/session/{sessionID}/todo": {
"get": {
"operationId": "session.todo",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{
"in": "path",
"name": "sessionID",
"schema": { "type": "string" },
"required": true,
"description": "Session ID"
}
],
"summary": "Get session todos",
"description": "Retrieve the todo list associated with a specific session, showing tasks and action items.",
"responses": {
"200": {
"description": "Todo list",
"content": {
"application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Todo" } } }
}
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/session/{sessionID}/init": {
"post": {
"operationId": "session.init",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{
"in": "path",
"name": "sessionID",
"schema": { "type": "string" },
"required": true,
"description": "Session ID"
}
],
"summary": "Initialize session",
"description": "Analyze the current application and create an AGENTS.md file with project-specific agent configurations.",
"responses": {
"200": { "description": "200", "content": { "application/json": { "schema": { "type": "boolean" } } } },
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"modelID": { "type": "string" },
"providerID": { "type": "string" },
"messageID": { "type": "string", "pattern": "^msg.*" }
},
"required": ["modelID", "providerID", "messageID"]
}
}
}
}
}
},
"/session/{sessionID}/fork": {
"post": {
"operationId": "session.fork",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true }
],
"summary": "Fork session",
"description": "Create a new session by forking an existing session at a specific message point.",
"responses": {
"200": {
"description": "200",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "messageID": { "type": "string", "pattern": "^msg.*" } } }
}
}
}
}
},
"/session/{sessionID}/abort": {
"post": {
"operationId": "session.abort",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string" }, "required": true }
],
"summary": "Abort session",
"description": "Abort an active session and stop any ongoing AI processing or command execution.",
"responses": {
"200": {
"description": "Aborted session",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/session/{sessionID}/share": {
"post": {
"operationId": "session.share",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string" }, "required": true }
],
"summary": "Share session",
"description": "Create a shareable link for a session, allowing others to view the conversation.",
"responses": {
"200": {
"description": "Successfully shared session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
},
"delete": {
"operationId": "session.unshare",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true }
],
"summary": "Unshare session",
"description": "Remove the shareable link for a session, making it private again.",
"responses": {
"200": {
"description": "Successfully unshared session",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Session" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
}
}
},
"/session/{sessionID}/diff": {
"get": {
"operationId": "session.diff",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{ "in": "path", "name": "sessionID", "schema": { "type": "string", "pattern": "^ses.*" }, "required": true },
{ "in": "query", "name": "messageID", "schema": { "type": "string", "pattern": "^msg.*" } }
],
"summary": "Get message diff",
"description": "Get the file changes (diff) that resulted from a specific user message in the session.",
"responses": {
"200": {
"description": "Successfully retrieved diff",
"content": {
"application/json": {
"schema": { "type": "array", "items": { "$ref": "#/components/schemas/FileDiff" } }
}
}
}
}
}
},
"/session/{sessionID}/summarize": {
"post": {
"operationId": "session.summarize",
"parameters": [
{ "in": "query", "name": "directory", "schema": { "type": "string" } },
{
"in": "path",
"name": "sessionID",
"schema": { "type": "string" },
"required": true,
"description": "Session ID"
}
],
"summary": "Summarize session",
"description": "Generate a concise summary of the session using AI compaction to preserve key information.",
"responses": {
"200": {
"description": "Summarized session",
"content": { "application/json": { "schema": { "type": "boolean" } } }
},
"400": {
"description": "Bad request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/BadRequestError" } } }
},
"404": {
"description": "Not found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotFoundError" } } }
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"providerID": { "type": "string" },
"modelID": { "type": "string" },
"auto": { "default": false, "type": "boolean" }
},
"required": ["providerID", "modelID"]
}
}
}
}
}
},