claude-ide-bridge 2.4.3 → 2.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,308 +0,0 @@
1
- export declare function createGithubCreatePRTool(workspace: string): {
2
- schema: {
3
- name: string;
4
- description: string;
5
- annotations: {
6
- destructiveHint: boolean;
7
- };
8
- inputSchema: {
9
- type: "object";
10
- required: string[];
11
- properties: {
12
- title: {
13
- type: string;
14
- description: string;
15
- };
16
- body: {
17
- type: string;
18
- description: string;
19
- };
20
- base: {
21
- type: string;
22
- description: string;
23
- };
24
- draft: {
25
- type: string;
26
- description: string;
27
- };
28
- assignee: {
29
- type: string;
30
- description: string;
31
- };
32
- };
33
- additionalProperties: false;
34
- };
35
- };
36
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
37
- content: Array<{
38
- type: string;
39
- text: string;
40
- }>;
41
- }>;
42
- };
43
- export declare function createGithubListPRsTool(workspace: string): {
44
- schema: {
45
- name: string;
46
- description: string;
47
- annotations: {
48
- readOnlyHint: boolean;
49
- };
50
- inputSchema: {
51
- type: "object";
52
- properties: {
53
- state: {
54
- type: string;
55
- enum: string[];
56
- description: string;
57
- };
58
- limit: {
59
- type: string;
60
- description: string;
61
- };
62
- author: {
63
- type: string;
64
- description: string;
65
- };
66
- };
67
- additionalProperties: false;
68
- };
69
- };
70
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
71
- content: Array<{
72
- type: string;
73
- text: string;
74
- }>;
75
- }>;
76
- };
77
- export declare function createGithubViewPRTool(workspace: string): {
78
- schema: {
79
- name: string;
80
- description: string;
81
- annotations: {
82
- readOnlyHint: boolean;
83
- };
84
- inputSchema: {
85
- type: "object";
86
- properties: {
87
- number: {
88
- type: string;
89
- description: string;
90
- };
91
- };
92
- additionalProperties: false;
93
- };
94
- };
95
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
96
- content: Array<{
97
- type: string;
98
- text: string;
99
- }>;
100
- }>;
101
- };
102
- export declare function createGithubListIssuesTool(workspace: string): {
103
- schema: {
104
- name: string;
105
- description: string;
106
- annotations: {
107
- readOnlyHint: boolean;
108
- };
109
- inputSchema: {
110
- type: "object";
111
- properties: {
112
- state: {
113
- type: string;
114
- enum: string[];
115
- description: string;
116
- };
117
- limit: {
118
- type: string;
119
- description: string;
120
- };
121
- assignee: {
122
- type: string;
123
- description: string;
124
- };
125
- label: {
126
- type: string;
127
- description: string;
128
- };
129
- milestone: {
130
- type: string;
131
- description: string;
132
- };
133
- };
134
- additionalProperties: false;
135
- };
136
- };
137
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
138
- content: Array<{
139
- type: string;
140
- text: string;
141
- }>;
142
- }>;
143
- };
144
- export declare function createGithubGetIssueTool(workspace: string): {
145
- schema: {
146
- name: string;
147
- description: string;
148
- annotations: {
149
- readOnlyHint: boolean;
150
- };
151
- inputSchema: {
152
- type: "object";
153
- required: string[];
154
- properties: {
155
- number: {
156
- type: string;
157
- description: string;
158
- };
159
- };
160
- additionalProperties: false;
161
- };
162
- };
163
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
164
- content: Array<{
165
- type: string;
166
- text: string;
167
- }>;
168
- }>;
169
- };
170
- export declare function createGithubCreateIssueTool(workspace: string): {
171
- schema: {
172
- name: string;
173
- description: string;
174
- annotations: {
175
- destructiveHint: boolean;
176
- };
177
- inputSchema: {
178
- type: "object";
179
- required: string[];
180
- properties: {
181
- title: {
182
- type: string;
183
- description: string;
184
- };
185
- body: {
186
- type: string;
187
- description: string;
188
- };
189
- assignee: {
190
- type: string;
191
- description: string;
192
- };
193
- label: {
194
- type: string;
195
- description: string;
196
- };
197
- milestone: {
198
- type: string;
199
- description: string;
200
- };
201
- };
202
- additionalProperties: false;
203
- };
204
- };
205
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
206
- content: Array<{
207
- type: string;
208
- text: string;
209
- }>;
210
- }>;
211
- };
212
- export declare function createGithubCommentIssueTool(workspace: string): {
213
- schema: {
214
- name: string;
215
- description: string;
216
- annotations: {
217
- destructiveHint: boolean;
218
- };
219
- inputSchema: {
220
- type: "object";
221
- required: string[];
222
- properties: {
223
- number: {
224
- type: string;
225
- description: string;
226
- };
227
- body: {
228
- type: string;
229
- description: string;
230
- };
231
- };
232
- additionalProperties: false;
233
- };
234
- };
235
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
236
- content: Array<{
237
- type: string;
238
- text: string;
239
- }>;
240
- }>;
241
- };
242
- export declare function createGithubListRunsTool(workspace: string): {
243
- schema: {
244
- name: string;
245
- description: string;
246
- annotations: {
247
- readOnlyHint: boolean;
248
- };
249
- inputSchema: {
250
- type: "object";
251
- properties: {
252
- branch: {
253
- type: string;
254
- description: string;
255
- };
256
- workflow: {
257
- type: string;
258
- description: string;
259
- };
260
- status: {
261
- type: string;
262
- description: string;
263
- };
264
- limit: {
265
- type: string;
266
- description: string;
267
- };
268
- };
269
- additionalProperties: false;
270
- };
271
- };
272
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
273
- content: Array<{
274
- type: string;
275
- text: string;
276
- }>;
277
- }>;
278
- };
279
- export declare function createGithubGetRunLogsTool(workspace: string): {
280
- schema: {
281
- name: string;
282
- description: string;
283
- annotations: {
284
- readOnlyHint: boolean;
285
- };
286
- inputSchema: {
287
- type: "object";
288
- required: string[];
289
- properties: {
290
- runId: {
291
- type: string;
292
- description: string;
293
- };
294
- failedOnly: {
295
- type: string;
296
- description: string;
297
- };
298
- };
299
- additionalProperties: false;
300
- };
301
- };
302
- handler: (args: Record<string, unknown>, signal?: AbortSignal) => Promise<{
303
- content: Array<{
304
- type: string;
305
- text: string;
306
- }>;
307
- }>;
308
- };