-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.sandbox.fs.yaml
More file actions
1319 lines (1319 loc) · 37.6 KB
/
openapi.sandbox.fs.yaml
File metadata and controls
1319 lines (1319 loc) · 37.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.0.0
info:
title: Sandbox Rest FS API
description: FS API for interacting with sandbox
version: 1.0.0
paths:
/fs/writeFile:
post:
summary: Write to a file
description: Write content to a file at the specified path
operationId: writeFile
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WriteFileRequest'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error writing file
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/read:
post:
summary: Read file system
description: Retrieve the latest snapshot of the server's MemoryFS file and children list
operationId: fsRead
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSReadResult'
'400':
description: Error reading file system
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/operation:
post:
summary: Perform file system operation
description: Send a tree operation reflecting filesystem operations
operationId: fsOperation
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSOperationRequest'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSOperationResult'
'400':
description: Error performing operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/search:
post:
summary: Search files
description: Search for content in files
operationId: fsSearch
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSSearchParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: array
items:
$ref: '#/components/schemas/SearchResult'
'400':
description: Error searching files
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/streamingSearch:
post:
summary: Start streaming search
description: Start a streaming search for content in files
operationId: fsStreamingSearch
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSStreamingSearchParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties:
searchId:
type: string
description: ID of the search operation
'400':
description: Error starting streaming search
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/cancelStreamingSearch:
post:
summary: Cancel streaming search
description: Cancel an ongoing streaming search
operationId: fsCancelStreamingSearch
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
searchId:
type: string
description: ID of the search to cancel
required:
- searchId
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties:
searchId:
type: string
description: ID of the cancelled search
'400':
description: Error cancelling search
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/pathSearch:
post:
summary: Search file paths
description: Search for file paths matching a pattern
operationId: fsPathSearch
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PathSearchParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/PathSearchResult'
'400':
description: Error searching paths
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/upload:
post:
summary: Upload file
description: Upload a file to the specified parent directory
operationId: fsUpload
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
parentId:
type: string
description: ID of the parent directory
filename:
type: string
description: Name of the file to create
content:
type: string
format: binary
description: File content as binary data
required:
- parentId
- filename
- content
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties:
fileId:
type: string
description: ID of the created file
'400':
description: Error uploading file
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/InvalidIdError'
discriminator:
propertyName: code
/fs/download:
post:
summary: Download files
description: Download files at a specified path as a zip
operationId: fsDownload
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
path:
type: string
description: Path to download
excludes:
type: array
items:
type: string
description: Glob patterns of files/folders to exclude from the download
required:
- path
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties:
downloadUrl:
type: string
description: URL to download the files from
'400':
description: Error creating download
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
$ref: '#/components/schemas/DefaultError'
/fs/readFile:
post:
summary: Read file content
description: Read the content of a file at the specified path
operationId: fsReadFile
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSReadFileParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSReadFileResult'
'400':
description: Error reading file
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/readdir:
post:
summary: Read directory contents
description: List the contents of a directory at the specified path
operationId: fsReadDir
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSReadDirParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSReadDirResult'
'400':
description: Error reading directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/stat:
post:
summary: Get file/directory stats
description: Get stats for a file or directory at the specified path
operationId: fsStat
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSStatParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSStatResult'
'400':
description: Error getting stats
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/copy:
post:
summary: Copy file/directory
description: Copy a file or directory from one location to another
operationId: fsCopy
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSCopyParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error copying file/directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/rename:
post:
summary: Rename file/directory
description: Rename a file or directory (move from one location to another)
operationId: fsRename
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSRenameParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error renaming file/directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/remove:
post:
summary: Remove file/directory
description: Delete a file or directory at the specified path
operationId: fsRemove
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSRemoveParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error removing file/directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/mkdir:
post:
summary: Create directory
description: Create a new directory at the specified path
operationId: fsMkdir
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSMkdirParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error creating directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/watch:
post:
summary: Watch file/directory
description: Watch a file or directory for changes
operationId: fsWatch
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSWatchParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
$ref: '#/components/schemas/FSWatchResult'
'400':
description: Error watching file/directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
/fs/unwatch:
post:
summary: Stop watching file/directory
description: Stop watching a file or directory for changes
operationId: fsUnwatch
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FSUnwatchParams'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
- type: object
properties:
result:
type: object
properties: {}
'400':
description: Error unwatching file/directory
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
- type: object
properties:
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
discriminator:
propertyName: code
components:
schemas:
SuccessResponse:
type: object
properties:
status:
type: number
enum:
- 0
description: Status code for successful operations
result:
type: object
description: Result payload for the operation
required:
- status
- result
ErrorResponse:
type: object
properties:
status:
type: number
enum:
- 1
description: Status code for error operations
error:
oneOf:
- $ref: '#/components/schemas/DefaultError'
- $ref: '#/components/schemas/RawFsError'
required:
- status
- error
DefaultError:
type: object
properties:
code:
$ref: '#/components/schemas/PitcherErrorCode'
description: Error code identifying the type of error
data:
type: object
description: Additional error details
nullable: true
publicMessage:
type: string
description: Human-readable error message that can be displayed to users
nullable: true
required:
- code
RawFsError:
type: object
properties:
code:
type: number
enum:
- 102
description: RAWFS_ERROR code
data:
type: object
properties:
errno:
type: number
nullable: true
description: File system error number, or null if not available
required:
- errno
publicMessage:
type: string
description: Human-readable error message that can be displayed to users
nullable: true
required:
- code
- data
PitcherErrorCode:
type: integer
description: Enumeration of error codes
enum:
- 0
- 1
- 2
- 3
- 100
- 101
- 102
- 200
- 201
- 204
- 300
- 400
- 404
- 410
- 420
- 430
- 440
- 450
- 460
- 470
- 500
- 600
- 601
- 602
- 704
- 800
- 801
- 802
- 803
- 814
x-enum-descriptions:
- CRITICAL_ERROR
- FEATURE_UNAVAILABLE
- NO_ACCESS
- RATE_LIMIT
- INVALID_ID
- INVALID_PATH
- RAWFS_ERROR
- SHELL_NOT_ACCESSIBLE
- SHELL_CLOSED
- SHELL_NOT_FOUND
- MODEL_NOT_FOUND
- GIT_OPERATION_IN_PROGRESS
- GIT_REMOTE_FILE_NOT_FOUND
- GIT_FETCH_FAIL
- GIT_PULL_CONFLICT
- GIT_RESET_LOCAL_REMOTE_ERROR
- GIT_PUSH_FAIL
- GIT_RESET_CHECKOUT_INITIAL_BRANCH_FAIL
- GIT_PULL_FAIL
- GIT_TRANSPOSE_LINES_FAIL
- CHANNEL_NOT_FOUND
- CONFIG_FILE_ALREADY_EXISTS
- TASK_NOT_FOUND
- COMMAND_ALREADY_CONFIGURED
- COMMAND_NOT_FOUND
- AI_NOT_AVAILABLE
- PROMPT_TOO_BIG
- FAILED_TO_RESPOND
- AI_TOO_FREQUENT_REQUESTS
- AI_CHAT_NOT_FOUND
WriteFileRequest:
type: object
properties:
path:
type: string
description: File path to write to
content:
type: string
format: binary
description: File content as binary data (Uint8Array)
create:
type: boolean
description: Whether to create the file if it doesn't exist
default: false
overwrite:
type: boolean
description: Whether to overwrite the file if it exists
default: false
required:
- path
- content
FSReadResult:
type: object
properties:
treeNodes:
type: array
items:
type: object
description: JSON representation of a node in the file system
clock:
type: number
description: Current clock value for the file system
required:
- treeNodes
- clock
FSOperationRequest:
type: object
properties:
operation:
$ref: '#/components/schemas/FSOperation'
required:
- operation
FSOperation:
oneOf:
- $ref: '#/components/schemas/FSCreateOperation'
- $ref: '#/components/schemas/FSDeleteOperation'
- $ref: '#/components/schemas/FSMoveOperation'
discriminator:
propertyName: type
FSCreateOperation:
type: object
properties:
type:
type: string
enum:
- create
parentId:
type: string
description: ID of the parent directory
newEntry:
type: object
properties:
id:
type: string
description: ID of the new entry
type:
type: string
enum:
- directory
- file
description: Type of the node
name:
type: string
description: Name of the new entry
required:
- id
- type
- name
required:
- type
- parentId
- newEntry
FSDeleteOperation:
type: object
properties:
type:
type: string
enum:
- delete
id:
type: string
description: ID of the entry to delete
required:
- type
- id
FSMoveOperation:
type: object
properties:
type:
type: string
enum:
- move
id:
type: string
description: ID of the entry to move
parentId:
type: string
description: ID of the new parent directory
nullable: true
name:
type: string
description: New name for the entry
nullable: true
required:
- type
- id
FSOperationResult:
oneOf:
- type: object
properties:
code:
type: number
enum:
- 0
description: Success code
clock:
type: number
description: Current clock value
required:
- code
- clock
- type: object
properties:
code:
type: number
enum:
- 1
description: Ignored code
required:
- code
FSSearchParams:
type: object
properties:
text:
type: string
description: Text to search for
glob:
type: string
description: Glob pattern to filter files
nullable: true
isRegex:
type: boolean