@codebakers/cli 3.7.2 → 3.8.0

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.
@@ -0,0 +1,396 @@
1
+ /**
2
+ * ENGINEERING TOOLS FOR MCP
3
+ *
4
+ * MCP tools for the AI agent-based engineering workflow.
5
+ * These tools enable enterprise-grade software development with NO FRICTION.
6
+ */
7
+ export declare const ENGINEERING_TOOLS: ({
8
+ name: string;
9
+ description: string;
10
+ inputSchema: {
11
+ type: "object";
12
+ properties: {
13
+ projectName: {
14
+ type: string;
15
+ description: string;
16
+ };
17
+ description: {
18
+ type: string;
19
+ description: string;
20
+ };
21
+ stepId?: undefined;
22
+ answer?: undefined;
23
+ artifacts?: undefined;
24
+ action?: undefined;
25
+ reason?: undefined;
26
+ name?: undefined;
27
+ content?: undefined;
28
+ agent?: undefined;
29
+ decision?: undefined;
30
+ reasoning?: undefined;
31
+ alternatives?: undefined;
32
+ confidence?: undefined;
33
+ impact?: undefined;
34
+ nodeType?: undefined;
35
+ filePath?: undefined;
36
+ dependsOn?: undefined;
37
+ dependencyTypes?: undefined;
38
+ focusFile?: undefined;
39
+ };
40
+ required: string[];
41
+ };
42
+ } | {
43
+ name: string;
44
+ description: string;
45
+ inputSchema: {
46
+ type: "object";
47
+ properties: {
48
+ stepId: {
49
+ type: string;
50
+ description: string;
51
+ };
52
+ answer: {
53
+ type: string;
54
+ description: string;
55
+ };
56
+ projectName?: undefined;
57
+ description?: undefined;
58
+ artifacts?: undefined;
59
+ action?: undefined;
60
+ reason?: undefined;
61
+ name?: undefined;
62
+ content?: undefined;
63
+ agent?: undefined;
64
+ decision?: undefined;
65
+ reasoning?: undefined;
66
+ alternatives?: undefined;
67
+ confidence?: undefined;
68
+ impact?: undefined;
69
+ nodeType?: undefined;
70
+ filePath?: undefined;
71
+ dependsOn?: undefined;
72
+ dependencyTypes?: undefined;
73
+ focusFile?: undefined;
74
+ };
75
+ required: string[];
76
+ };
77
+ } | {
78
+ name: string;
79
+ description: string;
80
+ inputSchema: {
81
+ type: "object";
82
+ properties: {
83
+ projectName?: undefined;
84
+ description?: undefined;
85
+ stepId?: undefined;
86
+ answer?: undefined;
87
+ artifacts?: undefined;
88
+ action?: undefined;
89
+ reason?: undefined;
90
+ name?: undefined;
91
+ content?: undefined;
92
+ agent?: undefined;
93
+ decision?: undefined;
94
+ reasoning?: undefined;
95
+ alternatives?: undefined;
96
+ confidence?: undefined;
97
+ impact?: undefined;
98
+ nodeType?: undefined;
99
+ filePath?: undefined;
100
+ dependsOn?: undefined;
101
+ dependencyTypes?: undefined;
102
+ focusFile?: undefined;
103
+ };
104
+ required?: undefined;
105
+ };
106
+ } | {
107
+ name: string;
108
+ description: string;
109
+ inputSchema: {
110
+ type: "object";
111
+ properties: {
112
+ artifacts: {
113
+ type: string;
114
+ items: {
115
+ type: string;
116
+ };
117
+ description: string;
118
+ };
119
+ projectName?: undefined;
120
+ description?: undefined;
121
+ stepId?: undefined;
122
+ answer?: undefined;
123
+ action?: undefined;
124
+ reason?: undefined;
125
+ name?: undefined;
126
+ content?: undefined;
127
+ agent?: undefined;
128
+ decision?: undefined;
129
+ reasoning?: undefined;
130
+ alternatives?: undefined;
131
+ confidence?: undefined;
132
+ impact?: undefined;
133
+ nodeType?: undefined;
134
+ filePath?: undefined;
135
+ dependsOn?: undefined;
136
+ dependencyTypes?: undefined;
137
+ focusFile?: undefined;
138
+ };
139
+ required?: undefined;
140
+ };
141
+ } | {
142
+ name: string;
143
+ description: string;
144
+ inputSchema: {
145
+ type: "object";
146
+ properties: {
147
+ action: {
148
+ type: string;
149
+ enum: string[];
150
+ description: string;
151
+ };
152
+ artifacts: {
153
+ type: string;
154
+ items: {
155
+ type: string;
156
+ };
157
+ description: string;
158
+ };
159
+ reason: {
160
+ type: string;
161
+ description: string;
162
+ };
163
+ projectName?: undefined;
164
+ description?: undefined;
165
+ stepId?: undefined;
166
+ answer?: undefined;
167
+ name?: undefined;
168
+ content?: undefined;
169
+ agent?: undefined;
170
+ decision?: undefined;
171
+ reasoning?: undefined;
172
+ alternatives?: undefined;
173
+ confidence?: undefined;
174
+ impact?: undefined;
175
+ nodeType?: undefined;
176
+ filePath?: undefined;
177
+ dependsOn?: undefined;
178
+ dependencyTypes?: undefined;
179
+ focusFile?: undefined;
180
+ };
181
+ required: string[];
182
+ };
183
+ } | {
184
+ name: string;
185
+ description: string;
186
+ inputSchema: {
187
+ type: "object";
188
+ properties: {
189
+ action: {
190
+ type: string;
191
+ enum: string[];
192
+ description: string;
193
+ };
194
+ name: {
195
+ type: string;
196
+ description: string;
197
+ };
198
+ content: {
199
+ type: string;
200
+ description: string;
201
+ };
202
+ projectName?: undefined;
203
+ description?: undefined;
204
+ stepId?: undefined;
205
+ answer?: undefined;
206
+ artifacts?: undefined;
207
+ reason?: undefined;
208
+ agent?: undefined;
209
+ decision?: undefined;
210
+ reasoning?: undefined;
211
+ alternatives?: undefined;
212
+ confidence?: undefined;
213
+ impact?: undefined;
214
+ nodeType?: undefined;
215
+ filePath?: undefined;
216
+ dependsOn?: undefined;
217
+ dependencyTypes?: undefined;
218
+ focusFile?: undefined;
219
+ };
220
+ required: string[];
221
+ };
222
+ } | {
223
+ name: string;
224
+ description: string;
225
+ inputSchema: {
226
+ type: "object";
227
+ properties: {
228
+ agent: {
229
+ type: string;
230
+ enum: string[];
231
+ description: string;
232
+ };
233
+ decision: {
234
+ type: string;
235
+ description: string;
236
+ };
237
+ reasoning: {
238
+ type: string;
239
+ description: string;
240
+ };
241
+ alternatives: {
242
+ type: string;
243
+ items: {
244
+ type: string;
245
+ };
246
+ description: string;
247
+ };
248
+ confidence: {
249
+ type: string;
250
+ description: string;
251
+ };
252
+ impact: {
253
+ type: string;
254
+ enum: string[];
255
+ description: string;
256
+ };
257
+ projectName?: undefined;
258
+ description?: undefined;
259
+ stepId?: undefined;
260
+ answer?: undefined;
261
+ artifacts?: undefined;
262
+ action?: undefined;
263
+ reason?: undefined;
264
+ name?: undefined;
265
+ content?: undefined;
266
+ nodeType?: undefined;
267
+ filePath?: undefined;
268
+ dependsOn?: undefined;
269
+ dependencyTypes?: undefined;
270
+ focusFile?: undefined;
271
+ };
272
+ required: string[];
273
+ };
274
+ } | {
275
+ name: string;
276
+ description: string;
277
+ inputSchema: {
278
+ type: "object";
279
+ properties: {
280
+ nodeType: {
281
+ type: string;
282
+ enum: string[];
283
+ description: string;
284
+ };
285
+ name: {
286
+ type: string;
287
+ description: string;
288
+ };
289
+ filePath: {
290
+ type: string;
291
+ description: string;
292
+ };
293
+ dependsOn: {
294
+ type: string;
295
+ items: {
296
+ type: string;
297
+ };
298
+ description: string;
299
+ };
300
+ dependencyTypes: {
301
+ type: string;
302
+ items: {
303
+ type: string;
304
+ enum: string[];
305
+ };
306
+ description: string;
307
+ };
308
+ projectName?: undefined;
309
+ description?: undefined;
310
+ stepId?: undefined;
311
+ answer?: undefined;
312
+ artifacts?: undefined;
313
+ action?: undefined;
314
+ reason?: undefined;
315
+ content?: undefined;
316
+ agent?: undefined;
317
+ decision?: undefined;
318
+ reasoning?: undefined;
319
+ alternatives?: undefined;
320
+ confidence?: undefined;
321
+ impact?: undefined;
322
+ focusFile?: undefined;
323
+ };
324
+ required: string[];
325
+ };
326
+ } | {
327
+ name: string;
328
+ description: string;
329
+ inputSchema: {
330
+ type: "object";
331
+ properties: {
332
+ filePath: {
333
+ type: string;
334
+ description: string;
335
+ };
336
+ projectName?: undefined;
337
+ description?: undefined;
338
+ stepId?: undefined;
339
+ answer?: undefined;
340
+ artifacts?: undefined;
341
+ action?: undefined;
342
+ reason?: undefined;
343
+ name?: undefined;
344
+ content?: undefined;
345
+ agent?: undefined;
346
+ decision?: undefined;
347
+ reasoning?: undefined;
348
+ alternatives?: undefined;
349
+ confidence?: undefined;
350
+ impact?: undefined;
351
+ nodeType?: undefined;
352
+ dependsOn?: undefined;
353
+ dependencyTypes?: undefined;
354
+ focusFile?: undefined;
355
+ };
356
+ required: string[];
357
+ };
358
+ } | {
359
+ name: string;
360
+ description: string;
361
+ inputSchema: {
362
+ type: "object";
363
+ properties: {
364
+ focusFile: {
365
+ type: string;
366
+ description: string;
367
+ };
368
+ projectName?: undefined;
369
+ description?: undefined;
370
+ stepId?: undefined;
371
+ answer?: undefined;
372
+ artifacts?: undefined;
373
+ action?: undefined;
374
+ reason?: undefined;
375
+ name?: undefined;
376
+ content?: undefined;
377
+ agent?: undefined;
378
+ decision?: undefined;
379
+ reasoning?: undefined;
380
+ alternatives?: undefined;
381
+ confidence?: undefined;
382
+ impact?: undefined;
383
+ nodeType?: undefined;
384
+ filePath?: undefined;
385
+ dependsOn?: undefined;
386
+ dependencyTypes?: undefined;
387
+ };
388
+ required?: undefined;
389
+ };
390
+ })[];
391
+ export declare function handleEngineeringTool(name: string, args: Record<string, unknown>, apiUrl: string, authHeaders: Record<string, string>): Promise<{
392
+ content: Array<{
393
+ type: 'text';
394
+ text: string;
395
+ }>;
396
+ }>;