-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathasyncapi.yaml
More file actions
1197 lines (1110 loc) · 34.3 KB
/
asyncapi.yaml
File metadata and controls
1197 lines (1110 loc) · 34.3 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
asyncapi: 3.0.0
info:
title: CodeBolt Agent-to-App WebSocket API
version: 1.0.0
description: |
This specification defines the WebSocket communication protocol between CodeBolt agents and the application.
The API supports bidirectional communication with two main patterns:
1. **Actions/Events**: Commands sent from agents to the app for executing operations
2. **Notifications**: Status updates and responses sent from agents to the app
## Message Categories
### Action Events (Agent → App)
- **File System**: Create, read, update, delete files and folders
- **Git Operations**: Version control operations like commit, push, pull
- **Browser Automation**: Web navigation, screenshots, content extraction
- **Terminal**: Command execution and shell operations
- **LLM**: Language model inference and token counting
- **Task Management**: Todo tasks, subtasks, and project planning
- **Vector Database**: Knowledge storage and retrieval
- **Memory**: Agent state and context management
- **MCP Tools**: External tool integration and execution
- **Search**: Code search and web search operations
- **Chat**: Message handling and conversation management
### Notifications (Agent → App)
- Request notifications for each action type
- Response notifications with results or errors
- Status updates and process completion events
contact:
name: CodeBolt Team
url: https://github.com/CodeBoltJS/codeboltjs
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
development:
host: localhost:8080
protocol: ws
description: Development WebSocket server
production:
host: api.codebolt.com
protocol: wss
description: Production WebSocket server
defaultContentType: application/json
channels:
agent-to-app:
address: /agent-to-app
messages:
# Action Events
fsEvent:
$ref: '#/components/messages/FsEvent'
gitEvent:
$ref: '#/components/messages/GitEvent'
browserEvent:
$ref: '#/components/messages/BrowserEvent'
terminalEvent:
$ref: '#/components/messages/TerminalEvent'
llmEvent:
$ref: '#/components/messages/LlmEvent'
taskEvent:
$ref: '#/components/messages/TaskEvent'
vectordbEvent:
$ref: '#/components/messages/VectordbEvent'
memoryEvent:
$ref: '#/components/messages/MemoryEvent'
debugEvent:
$ref: '#/components/messages/DebugEvent'
crawlerEvent:
$ref: '#/components/messages/CrawlerEvent'
projectEvent:
$ref: '#/components/messages/ProjectEvent'
chatEvent:
$ref: '#/components/messages/ChatEvent'
stateEvent:
$ref: '#/components/messages/StateEvent'
mcpEvent:
$ref: '#/components/messages/McpEvent'
agentEvent:
$ref: '#/components/messages/AgentEvent'
tokenizerEvent:
$ref: '#/components/messages/TokenizerEvent'
historyEvent:
$ref: '#/components/messages/HistoryEvent'
utilsEvent:
$ref: '#/components/messages/UtilsEvent'
codeUtilsEvent:
$ref: '#/components/messages/CodeUtilsEvent'
# Notifications
agentNotification:
$ref: '#/components/messages/AgentNotification'
browserNotification:
$ref: '#/components/messages/BrowserNotification'
chatNotification:
$ref: '#/components/messages/ChatNotification'
codeUtilsNotification:
$ref: '#/components/messages/CodeUtilsNotification'
crawlerNotification:
$ref: '#/components/messages/CrawlerNotification'
dbMemoryNotification:
$ref: '#/components/messages/DbMemoryNotification'
fsNotification:
$ref: '#/components/messages/FsNotification'
gitNotification:
$ref: '#/components/messages/GitNotification'
historyNotification:
$ref: '#/components/messages/HistoryNotification'
llmNotification:
$ref: '#/components/messages/LlmNotification'
mcpNotification:
$ref: '#/components/messages/McpNotification'
searchNotification:
$ref: '#/components/messages/SearchNotification'
systemNotification:
$ref: '#/components/messages/SystemNotification'
terminalNotification:
$ref: '#/components/messages/TerminalNotification'
todoNotification:
$ref: '#/components/messages/TodoNotification'
description: |
WebSocket channel for agent-to-app communication. Agents send action events and notifications to the application.
app-to-agent:
address: /app-to-agent
messages:
serviceResponse:
$ref: '#/components/messages/ServiceResponse'
description: |
WebSocket channel for app-to-agent communication. The application sends responses back to agents.
operations:
sendAgentToApp:
action: send
channel:
$ref: '#/channels/agent-to-app'
summary: Send messages from agent to application
description: Agents send action events and notifications to the application through this operation
receiveAppToAgent:
action: receive
channel:
$ref: '#/channels/app-to-agent'
summary: Receive responses from application
description: Agents receive service responses from the application
components:
messages:
# Action Event Messages
FsEvent:
name: FileSystemEvent
title: File System Event
summary: File system operations like create, read, update, delete
contentType: application/json
payload:
$ref: '#/components/schemas/FsEventPayload'
examples:
- name: CreateFileEvent
summary: Create a new file
payload:
type: fsEvent
action: createFile
requestId: req-123
message:
fileName: example.txt
source: "Hello World"
filePath: /path/to/example.txt
GitEvent:
name: GitEvent
title: Git Operation Event
summary: Git version control operations
contentType: application/json
payload:
$ref: '#/components/schemas/GitEventPayload'
examples:
- name: GitCommitEvent
summary: Commit changes to git
payload:
type: gitEvent
action: gitCommit
requestId: req-456
message:
commitMessage: "Add new feature"
BrowserEvent:
name: BrowserEvent
title: Browser Automation Event
summary: Web browser automation and navigation
contentType: application/json
payload:
$ref: '#/components/schemas/BrowserEventPayload'
examples:
- name: GoToPageEvent
summary: Navigate to a web page
payload:
type: browserEvent
action: goToPage
requestId: req-789
message:
url: "https://example.com"
TerminalEvent:
name: TerminalEvent
title: Terminal Command Event
summary: Execute shell commands and terminal operations
contentType: application/json
payload:
$ref: '#/components/schemas/TerminalEventPayload'
examples:
- name: ExecuteCommandEvent
summary: Execute a shell command
payload:
type: terminalEvent
action: executeCommand
requestId: req-101
message:
command: "npm install"
workingDirectory: "/project"
LlmEvent:
name: LlmEvent
title: Language Model Event
summary: LLM inference and token operations
contentType: application/json
payload:
$ref: '#/components/schemas/LlmEventPayload'
examples:
- name: InferenceEvent
summary: Request LLM inference
payload:
type: llmEvent
action: inference
requestId: req-202
message:
messages:
- role: user
content: "Explain async programming"
model: "gpt-4"
TaskEvent:
name: TaskEvent
title: Task Management Event
summary: Todo tasks and project management
contentType: application/json
payload:
$ref: '#/components/schemas/TaskEventPayload'
VectordbEvent:
name: VectordbEvent
title: Vector Database Event
summary: Knowledge storage and vector search operations
contentType: application/json
payload:
$ref: '#/components/schemas/VectordbEventPayload'
MemoryEvent:
name: MemoryEvent
title: Memory Event
summary: Agent memory and state management
contentType: application/json
payload:
$ref: '#/components/schemas/MemoryEventPayload'
DebugEvent:
name: DebugEvent
title: Debug Event
summary: Debugging and logging operations
contentType: application/json
payload:
$ref: '#/components/schemas/DebugEventPayload'
CrawlerEvent:
name: CrawlerEvent
title: Web Crawler Event
summary: Web crawling and content extraction
contentType: application/json
payload:
$ref: '#/components/schemas/CrawlerEventPayload'
ProjectEvent:
name: ProjectEvent
title: Project Event
summary: Project settings and repository operations
contentType: application/json
payload:
$ref: '#/components/schemas/ProjectEventPayload'
ChatEvent:
name: ChatEvent
title: Chat Event
summary: Chat message handling and conversation management
contentType: application/json
payload:
$ref: '#/components/schemas/ChatEventPayload'
StateEvent:
name: StateEvent
title: State Event
summary: Application and agent state management
contentType: application/json
payload:
$ref: '#/components/schemas/StateEventPayload'
McpEvent:
name: McpEvent
title: MCP Tool Event
summary: Model Context Protocol tool integration
contentType: application/json
payload:
$ref: '#/components/schemas/McpEventPayload'
AgentEvent:
name: AgentEvent
title: Agent Management Event
summary: Agent discovery and management operations
contentType: application/json
payload:
$ref: '#/components/schemas/AgentEventPayload'
TokenizerEvent:
name: TokenizerEvent
title: Tokenizer Event
summary: Token management and counting operations
contentType: application/json
payload:
$ref: '#/components/schemas/TokenizerEventPayload'
HistoryEvent:
name: HistoryEvent
title: History Event
summary: Conversation history and summarization
contentType: application/json
payload:
$ref: '#/components/schemas/HistoryEventPayload'
UtilsEvent:
name: UtilsEvent
title: Utils Event
summary: Utility operations and file manipulation
contentType: application/json
payload:
$ref: '#/components/schemas/UtilsEventPayload'
CodeUtilsEvent:
name: CodeUtilsEvent
title: Code Utils Event
summary: Code analysis and pattern matching
contentType: application/json
payload:
$ref: '#/components/schemas/CodeUtilsEventPayload'
# Notification Messages
AgentNotification:
name: AgentNotification
title: Agent Notification
summary: Agent status and subagent task notifications
contentType: application/json
payload:
$ref: '#/components/schemas/AgentNotificationPayload'
BrowserNotification:
name: BrowserNotification
title: Browser Notification
summary: Web fetch and search operation notifications
contentType: application/json
payload:
$ref: '#/components/schemas/BrowserNotificationPayload'
ChatNotification:
name: ChatNotification
title: Chat Notification
summary: Chat message and response notifications
contentType: application/json
payload:
$ref: '#/components/schemas/ChatNotificationPayload'
CodeUtilsNotification:
name: CodeUtilsNotification
title: Code Utils Notification
summary: Code search and pattern matching notifications
contentType: application/json
payload:
$ref: '#/components/schemas/CodeUtilsNotificationPayload'
CrawlerNotification:
name: CrawlerNotification
title: Crawler Notification
summary: Web crawling status and result notifications
contentType: application/json
payload:
$ref: '#/components/schemas/CrawlerNotificationPayload'
DbMemoryNotification:
name: DbMemoryNotification
title: Database Memory Notification
summary: Knowledge storage and retrieval notifications
contentType: application/json
payload:
$ref: '#/components/schemas/DbMemoryNotificationPayload'
FsNotification:
name: FsNotification
title: File System Notification
summary: File system operation status and results
contentType: application/json
payload:
$ref: '#/components/schemas/FsNotificationPayload'
examples:
- name: FileCreateRequest
summary: Request to create a file
payload:
toolUseId: tool-123
type: fsnotify
action: createFileRequest
requestId: req-123
data:
fileName: example.txt
source: "Hello World"
filePath: /path/to/example.txt
- name: FileCreateResponse
summary: Response after creating a file
payload:
toolUseId: tool-123
type: fsnotify
action: createFileResult
requestId: req-123
content: "File created successfully"
isError: false
GitNotification:
name: GitNotification
title: Git Notification
summary: Git operation status and results
contentType: application/json
payload:
$ref: '#/components/schemas/GitNotificationPayload'
HistoryNotification:
name: HistoryNotification
title: History Notification
summary: Conversation summarization notifications
contentType: application/json
payload:
$ref: '#/components/schemas/HistoryNotificationPayload'
LlmNotification:
name: LlmNotification
title: LLM Notification
summary: Language model inference and token count notifications
contentType: application/json
payload:
$ref: '#/components/schemas/LlmNotificationPayload'
McpNotification:
name: McpNotification
title: MCP Notification
summary: MCP tool operation notifications
contentType: application/json
payload:
$ref: '#/components/schemas/McpNotificationPayload'
SearchNotification:
name: SearchNotification
title: Search Notification
summary: Search operation and codebase search notifications
contentType: application/json
payload:
$ref: '#/components/schemas/SearchNotificationPayload'
SystemNotification:
name: SystemNotification
title: System Notification
summary: System status and agent lifecycle notifications
contentType: application/json
payload:
$ref: '#/components/schemas/SystemNotificationPayload'
TerminalNotification:
name: TerminalNotification
title: Terminal Notification
summary: Command execution status and output notifications
contentType: application/json
payload:
$ref: '#/components/schemas/TerminalNotificationPayload'
TodoNotification:
name: TodoNotification
title: Todo Notification
summary: Task management operation notifications
contentType: application/json
payload:
$ref: '#/components/schemas/TodoNotificationPayload'
# App-to-Agent Response
ServiceResponse:
name: ServiceResponse
title: Service Response
summary: Application responses to agent requests
contentType: application/json
payload:
$ref: '#/components/schemas/ServiceResponsePayload'
schemas:
# Base Schemas
BaseEventPayload:
type: object
required:
- type
- action
- requestId
- message
properties:
type:
type: string
description: Event type identifier
action:
type: string
description: Specific action being requested
requestId:
type: string
description: Unique identifier for the request
message:
type: object
description: Action-specific message payload
BaseNotificationPayload:
type: object
required:
- toolUseId
- type
- action
properties:
toolUseId:
type: string
description: Unique identifier for the tool use
type:
type: string
description: Notification type identifier
action:
type: string
description: Specific notification action
requestId:
type: string
description: Optional request identifier
agentId:
type: string
description: Optional agent identifier
threadId:
type: string
description: Optional thread identifier
agentInstanceId:
type: string
description: Optional agent instance identifier
parentAgentInstanceId:
type: string
description: Optional parent agent instance identifier
parentId:
type: string
description: Optional parent identifier
data:
type: object
description: Request data (for request notifications)
content:
description: Response content (for response notifications)
oneOf:
- type: string
- type: object
isError:
type: boolean
description: Error flag (for response notifications)
# Action Event Payloads
FsEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [fsEvent]
action:
enum:
- createFile
- createFolder
- readFile
- updateFile
- deleteFile
- deleteFolder
- fileList
- listCodeDefinitionNames
- searchFiles
- writeToFile
- grepSearch
- fileSearch
- editFileWithDiff
GitEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [gitEvent]
action:
enum:
- gitInit
- gitPull
- gitPush
- gitStatus
- gitAdd
- gitCommit
- gitCheckout
- gitBranch
- gitLogs
- gitDiff
BrowserEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [browserEvent]
action:
enum:
- newPage
- getUrl
- goToPage
- screenshot
- getHTML
- getMarkdown
- getPDF
- pdfToText
- getContent
- getSnapShot
- getBrowserInfo
- extractText
- close
- scroll
- type
- click
- enter
- search
TerminalEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [terminalEvent]
action:
enum:
- executeCommand
- executeCommandRunUntilError
- executeCommandWithStream
- sendInterruptToTerminal
LlmEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [llmEvent]
action:
enum:
- inference
- legacyInference
TaskEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [taskEvent]
action:
enum:
- addTask
- addSimpleTask
- getTasks
- getTasksByAgent
- getTasksByCategory
- getAllAgents
- updateTask
- deleteTask
- addSubTask
- updateSubTask
- deleteSubTask
- createTasksFromMarkdown
- exportTasksToMarkdown
VectordbEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [vectordbEvent]
action:
enum:
- getVector
- addVectorItem
- queryVectorItem
- queryVectorItems
MemoryEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [memoryEvent]
action:
enum:
- memorySet
- memoryGet
DebugEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [debugEvent]
action:
enum:
- addLog
- openDebugBrowser
CrawlerEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [crawlerEvent]
action:
enum:
- startCrawler
- crawlerScreenshot
- crawlerGoToPage
- crawlerScroll
- crawlerClick
ProjectEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [projectEvent]
action:
enum:
- getProjectSettings
- getProjectPath
- getRepoMap
- getEditorFileStatus
- runProject
ChatEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [chatEvent]
action:
enum:
- getChatHistory
- processStoped
- processStarted
- processFinished
- sendMessage
- waitforReply
- confirmationRequest
- notificationEvent
StateEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [stateEvent]
action:
enum:
- getApplicationState
- addToAgentState
- getAgentState
- getProjectState
- updateProjectState
McpEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [mcpEvent]
action:
enum:
- getEnabledToolBoxes
- getLocalToolBoxes
- getAvailableToolBoxes
- searchAvailableToolBoxes
- listToolsFromToolBoxes
- configureToolBox
- getTools
- executeTool
AgentEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [agentEvent]
action:
enum:
- findAgent
- startAgent
- listAgents
- getAgentsDetail
TokenizerEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [tokenizerEvent]
action:
enum:
- addToken
- getToken
HistoryEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [historyEvent]
action:
enum:
- summarizeAll
- summarize
UtilsEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [utilsEvent]
action:
enum:
- editFileAndApplyDiff
CodeUtilsEventPayload:
allOf:
- $ref: '#/components/schemas/BaseEventPayload'
- type: object
properties:
type:
enum: [codeUtilsEvent]
action:
enum:
- getAllFilesMarkdown
- performMatch
- getMatcherList
- getMatchDetail
# Notification Payloads
AgentNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [agentnotify]
action:
enum:
- startSubagentTaskRequest
- startSubagentTaskResult
- subagentTaskCompleted
BrowserNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [browsernotify]
action:
enum:
- webFetchRequest
- webFetchResult
- webSearchRequest
- webSearchResult
ChatNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [chatnotify]
action:
enum:
- sendMessageRequest
- agentTextResponse
- getChatHistoryRequest
- getChatHistoryResult
CodeUtilsNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [codeutilsnotify]
action:
enum:
- grepSearchRequest
- grepSearchResult
- globSearchRequest
- globSearchResult
CrawlerNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [crawlernotify]
action:
enum:
- crawlerSearchRequest
- crawlerSearchResult
- crawlerStartRequest
- crawlerStartResult
DbMemoryNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [dbmemorynotify]
action:
enum:
- addKnowledgeRequest
- addKnowledgeResult
- getKnowledgeRequest
- getKnowledgeResult
FsNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties:
type:
enum: [fsnotify]
action:
enum:
- createFileRequest
- createFileResult
- createFolderRequest
- createFolderResult
- readFileRequest
- readFileResult
- updateFileRequest
- updateFileResult
- deleteFileRequest
- deleteFileResult
- deleteFolderRequest
- deleteFolderResult
- listDirectoryRequest
- listDirectoryResult
- writeToFileRequest
- writeToFileResult
- appendToFileRequest
- appendToFileResult
- copyFileRequest
- copyFileResult
- moveFileRequest
- moveFileResult
GitNotificationPayload:
allOf:
- $ref: '#/components/schemas/BaseNotificationPayload'
- type: object
properties: