bc-code-intelligence-mcp 1.4.4 → 1.4.5
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.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +90 -8
- package/dist/index.js.map +1 -1
- package/dist/layers/embedded-layer.d.ts.map +1 -1
- package/dist/layers/embedded-layer.js +42 -20
- package/dist/layers/embedded-layer.js.map +1 -1
- package/dist/services/agent-onboarding-service.d.ts +45 -0
- package/dist/services/agent-onboarding-service.d.ts.map +1 -0
- package/dist/services/agent-onboarding-service.js +372 -0
- package/dist/services/agent-onboarding-service.js.map +1 -0
- package/dist/services/specialist-handoff-service.d.ts +85 -0
- package/dist/services/specialist-handoff-service.d.ts.map +1 -0
- package/dist/services/specialist-handoff-service.js +492 -0
- package/dist/services/specialist-handoff-service.js.map +1 -0
- package/dist/streamlined-tools.d.ts +328 -0
- package/dist/streamlined-tools.d.ts.map +1 -0
- package/dist/streamlined-tools.js +201 -0
- package/dist/streamlined-tools.js.map +1 -0
- package/dist/tools/config-diagnostic-tools.d.ts +234 -0
- package/dist/tools/config-diagnostic-tools.d.ts.map +1 -0
- package/dist/tools/config-diagnostic-tools.js +887 -0
- package/dist/tools/config-diagnostic-tools.js.map +1 -0
- package/dist/types/config-types.d.ts +2 -0
- package/dist/types/config-types.d.ts.map +1 -1
- package/dist/types/config-types.js +3 -1
- package/dist/types/config-types.js.map +1 -1
- package/embedded-knowledge/domains/alex-architect/delegating-to-github-copilot-agents.md +371 -0
- package/embedded-knowledge/specialists/chris-config.md +276 -2
- package/package.json +1 -1
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
export declare const streamlinedTools: ({
|
|
2
|
+
name: string;
|
|
3
|
+
description: string;
|
|
4
|
+
inputSchema: {
|
|
5
|
+
type: string;
|
|
6
|
+
properties: {
|
|
7
|
+
query: {
|
|
8
|
+
type: string;
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
search_type: {
|
|
12
|
+
type: string;
|
|
13
|
+
enum: string[];
|
|
14
|
+
description: string;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
bc_version: {
|
|
18
|
+
type: string;
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
limit: {
|
|
22
|
+
type: string;
|
|
23
|
+
description: string;
|
|
24
|
+
default: number;
|
|
25
|
+
};
|
|
26
|
+
question?: undefined;
|
|
27
|
+
context?: undefined;
|
|
28
|
+
preferred_specialist?: undefined;
|
|
29
|
+
code?: undefined;
|
|
30
|
+
analysis_type?: undefined;
|
|
31
|
+
suggest_workflows?: undefined;
|
|
32
|
+
topic_id?: undefined;
|
|
33
|
+
include_samples?: undefined;
|
|
34
|
+
workflow_type?: undefined;
|
|
35
|
+
additional_info?: undefined;
|
|
36
|
+
workflow_id?: undefined;
|
|
37
|
+
phase_results?: undefined;
|
|
38
|
+
next_focus?: undefined;
|
|
39
|
+
check_status_only?: undefined;
|
|
40
|
+
help_type?: undefined;
|
|
41
|
+
current_situation?: undefined;
|
|
42
|
+
workspace_context?: undefined;
|
|
43
|
+
};
|
|
44
|
+
required: string[];
|
|
45
|
+
};
|
|
46
|
+
} | {
|
|
47
|
+
name: string;
|
|
48
|
+
description: string;
|
|
49
|
+
inputSchema: {
|
|
50
|
+
type: string;
|
|
51
|
+
properties: {
|
|
52
|
+
question: {
|
|
53
|
+
type: string;
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
context: {
|
|
57
|
+
type: string;
|
|
58
|
+
description: string;
|
|
59
|
+
};
|
|
60
|
+
preferred_specialist: {
|
|
61
|
+
type: string;
|
|
62
|
+
description: string;
|
|
63
|
+
};
|
|
64
|
+
query?: undefined;
|
|
65
|
+
search_type?: undefined;
|
|
66
|
+
bc_version?: undefined;
|
|
67
|
+
limit?: undefined;
|
|
68
|
+
code?: undefined;
|
|
69
|
+
analysis_type?: undefined;
|
|
70
|
+
suggest_workflows?: undefined;
|
|
71
|
+
topic_id?: undefined;
|
|
72
|
+
include_samples?: undefined;
|
|
73
|
+
workflow_type?: undefined;
|
|
74
|
+
additional_info?: undefined;
|
|
75
|
+
workflow_id?: undefined;
|
|
76
|
+
phase_results?: undefined;
|
|
77
|
+
next_focus?: undefined;
|
|
78
|
+
check_status_only?: undefined;
|
|
79
|
+
help_type?: undefined;
|
|
80
|
+
current_situation?: undefined;
|
|
81
|
+
workspace_context?: undefined;
|
|
82
|
+
};
|
|
83
|
+
required: string[];
|
|
84
|
+
};
|
|
85
|
+
} | {
|
|
86
|
+
name: string;
|
|
87
|
+
description: string;
|
|
88
|
+
inputSchema: {
|
|
89
|
+
type: string;
|
|
90
|
+
properties: {
|
|
91
|
+
code: {
|
|
92
|
+
type: string;
|
|
93
|
+
description: string;
|
|
94
|
+
};
|
|
95
|
+
analysis_type: {
|
|
96
|
+
type: string;
|
|
97
|
+
enum: string[];
|
|
98
|
+
description: string;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
bc_version: {
|
|
102
|
+
type: string;
|
|
103
|
+
description: string;
|
|
104
|
+
};
|
|
105
|
+
suggest_workflows: {
|
|
106
|
+
type: string;
|
|
107
|
+
description: string;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
110
|
+
query?: undefined;
|
|
111
|
+
search_type?: undefined;
|
|
112
|
+
limit?: undefined;
|
|
113
|
+
question?: undefined;
|
|
114
|
+
context?: undefined;
|
|
115
|
+
preferred_specialist?: undefined;
|
|
116
|
+
topic_id?: undefined;
|
|
117
|
+
include_samples?: undefined;
|
|
118
|
+
workflow_type?: undefined;
|
|
119
|
+
additional_info?: undefined;
|
|
120
|
+
workflow_id?: undefined;
|
|
121
|
+
phase_results?: undefined;
|
|
122
|
+
next_focus?: undefined;
|
|
123
|
+
check_status_only?: undefined;
|
|
124
|
+
help_type?: undefined;
|
|
125
|
+
current_situation?: undefined;
|
|
126
|
+
workspace_context?: undefined;
|
|
127
|
+
};
|
|
128
|
+
required: string[];
|
|
129
|
+
};
|
|
130
|
+
} | {
|
|
131
|
+
name: string;
|
|
132
|
+
description: string;
|
|
133
|
+
inputSchema: {
|
|
134
|
+
type: string;
|
|
135
|
+
properties: {
|
|
136
|
+
topic_id: {
|
|
137
|
+
type: string;
|
|
138
|
+
description: string;
|
|
139
|
+
};
|
|
140
|
+
include_samples: {
|
|
141
|
+
type: string;
|
|
142
|
+
description: string;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
query?: undefined;
|
|
146
|
+
search_type?: undefined;
|
|
147
|
+
bc_version?: undefined;
|
|
148
|
+
limit?: undefined;
|
|
149
|
+
question?: undefined;
|
|
150
|
+
context?: undefined;
|
|
151
|
+
preferred_specialist?: undefined;
|
|
152
|
+
code?: undefined;
|
|
153
|
+
analysis_type?: undefined;
|
|
154
|
+
suggest_workflows?: undefined;
|
|
155
|
+
workflow_type?: undefined;
|
|
156
|
+
additional_info?: undefined;
|
|
157
|
+
workflow_id?: undefined;
|
|
158
|
+
phase_results?: undefined;
|
|
159
|
+
next_focus?: undefined;
|
|
160
|
+
check_status_only?: undefined;
|
|
161
|
+
help_type?: undefined;
|
|
162
|
+
current_situation?: undefined;
|
|
163
|
+
workspace_context?: undefined;
|
|
164
|
+
};
|
|
165
|
+
required: string[];
|
|
166
|
+
};
|
|
167
|
+
} | {
|
|
168
|
+
name: string;
|
|
169
|
+
description: string;
|
|
170
|
+
inputSchema: {
|
|
171
|
+
type: string;
|
|
172
|
+
properties: {
|
|
173
|
+
workflow_type: {
|
|
174
|
+
type: string;
|
|
175
|
+
enum: string[];
|
|
176
|
+
description: string;
|
|
177
|
+
};
|
|
178
|
+
context: {
|
|
179
|
+
type: string;
|
|
180
|
+
description: string;
|
|
181
|
+
};
|
|
182
|
+
bc_version: {
|
|
183
|
+
type: string;
|
|
184
|
+
description: string;
|
|
185
|
+
};
|
|
186
|
+
additional_info: {
|
|
187
|
+
type: string;
|
|
188
|
+
description: string;
|
|
189
|
+
};
|
|
190
|
+
query?: undefined;
|
|
191
|
+
search_type?: undefined;
|
|
192
|
+
limit?: undefined;
|
|
193
|
+
question?: undefined;
|
|
194
|
+
preferred_specialist?: undefined;
|
|
195
|
+
code?: undefined;
|
|
196
|
+
analysis_type?: undefined;
|
|
197
|
+
suggest_workflows?: undefined;
|
|
198
|
+
topic_id?: undefined;
|
|
199
|
+
include_samples?: undefined;
|
|
200
|
+
workflow_id?: undefined;
|
|
201
|
+
phase_results?: undefined;
|
|
202
|
+
next_focus?: undefined;
|
|
203
|
+
check_status_only?: undefined;
|
|
204
|
+
help_type?: undefined;
|
|
205
|
+
current_situation?: undefined;
|
|
206
|
+
workspace_context?: undefined;
|
|
207
|
+
};
|
|
208
|
+
required: string[];
|
|
209
|
+
};
|
|
210
|
+
} | {
|
|
211
|
+
name: string;
|
|
212
|
+
description: string;
|
|
213
|
+
inputSchema: {
|
|
214
|
+
type: string;
|
|
215
|
+
properties: {
|
|
216
|
+
workflow_id: {
|
|
217
|
+
type: string;
|
|
218
|
+
description: string;
|
|
219
|
+
};
|
|
220
|
+
phase_results: {
|
|
221
|
+
type: string;
|
|
222
|
+
description: string;
|
|
223
|
+
};
|
|
224
|
+
next_focus: {
|
|
225
|
+
type: string;
|
|
226
|
+
description: string;
|
|
227
|
+
};
|
|
228
|
+
check_status_only: {
|
|
229
|
+
type: string;
|
|
230
|
+
description: string;
|
|
231
|
+
default: boolean;
|
|
232
|
+
};
|
|
233
|
+
query?: undefined;
|
|
234
|
+
search_type?: undefined;
|
|
235
|
+
bc_version?: undefined;
|
|
236
|
+
limit?: undefined;
|
|
237
|
+
question?: undefined;
|
|
238
|
+
context?: undefined;
|
|
239
|
+
preferred_specialist?: undefined;
|
|
240
|
+
code?: undefined;
|
|
241
|
+
analysis_type?: undefined;
|
|
242
|
+
suggest_workflows?: undefined;
|
|
243
|
+
topic_id?: undefined;
|
|
244
|
+
include_samples?: undefined;
|
|
245
|
+
workflow_type?: undefined;
|
|
246
|
+
additional_info?: undefined;
|
|
247
|
+
help_type?: undefined;
|
|
248
|
+
current_situation?: undefined;
|
|
249
|
+
workspace_context?: undefined;
|
|
250
|
+
};
|
|
251
|
+
required: string[];
|
|
252
|
+
};
|
|
253
|
+
} | {
|
|
254
|
+
name: string;
|
|
255
|
+
description: string;
|
|
256
|
+
inputSchema: {
|
|
257
|
+
type: string;
|
|
258
|
+
properties: {
|
|
259
|
+
workflow_id: {
|
|
260
|
+
type: string;
|
|
261
|
+
description: string;
|
|
262
|
+
};
|
|
263
|
+
help_type: {
|
|
264
|
+
type: string;
|
|
265
|
+
enum: string[];
|
|
266
|
+
description: string;
|
|
267
|
+
default: string;
|
|
268
|
+
};
|
|
269
|
+
query?: undefined;
|
|
270
|
+
search_type?: undefined;
|
|
271
|
+
bc_version?: undefined;
|
|
272
|
+
limit?: undefined;
|
|
273
|
+
question?: undefined;
|
|
274
|
+
context?: undefined;
|
|
275
|
+
preferred_specialist?: undefined;
|
|
276
|
+
code?: undefined;
|
|
277
|
+
analysis_type?: undefined;
|
|
278
|
+
suggest_workflows?: undefined;
|
|
279
|
+
topic_id?: undefined;
|
|
280
|
+
include_samples?: undefined;
|
|
281
|
+
workflow_type?: undefined;
|
|
282
|
+
additional_info?: undefined;
|
|
283
|
+
phase_results?: undefined;
|
|
284
|
+
next_focus?: undefined;
|
|
285
|
+
check_status_only?: undefined;
|
|
286
|
+
current_situation?: undefined;
|
|
287
|
+
workspace_context?: undefined;
|
|
288
|
+
};
|
|
289
|
+
required?: undefined;
|
|
290
|
+
};
|
|
291
|
+
} | {
|
|
292
|
+
name: string;
|
|
293
|
+
description: string;
|
|
294
|
+
inputSchema: {
|
|
295
|
+
type: string;
|
|
296
|
+
properties: {
|
|
297
|
+
current_situation: {
|
|
298
|
+
type: string;
|
|
299
|
+
description: string;
|
|
300
|
+
};
|
|
301
|
+
workspace_context: {
|
|
302
|
+
type: string;
|
|
303
|
+
description: string;
|
|
304
|
+
};
|
|
305
|
+
query?: undefined;
|
|
306
|
+
search_type?: undefined;
|
|
307
|
+
bc_version?: undefined;
|
|
308
|
+
limit?: undefined;
|
|
309
|
+
question?: undefined;
|
|
310
|
+
context?: undefined;
|
|
311
|
+
preferred_specialist?: undefined;
|
|
312
|
+
code?: undefined;
|
|
313
|
+
analysis_type?: undefined;
|
|
314
|
+
suggest_workflows?: undefined;
|
|
315
|
+
topic_id?: undefined;
|
|
316
|
+
include_samples?: undefined;
|
|
317
|
+
workflow_type?: undefined;
|
|
318
|
+
additional_info?: undefined;
|
|
319
|
+
workflow_id?: undefined;
|
|
320
|
+
phase_results?: undefined;
|
|
321
|
+
next_focus?: undefined;
|
|
322
|
+
check_status_only?: undefined;
|
|
323
|
+
help_type?: undefined;
|
|
324
|
+
};
|
|
325
|
+
required: string[];
|
|
326
|
+
};
|
|
327
|
+
})[];
|
|
328
|
+
//# sourceMappingURL=streamlined-tools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streamlined-tools.d.ts","sourceRoot":"","sources":["../src/streamlined-tools.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsM5B,CAAC"}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
// Streamlined 8-tool interface for BCKB MCP Server 1.0.1
|
|
2
|
+
export const streamlinedTools = [
|
|
3
|
+
{
|
|
4
|
+
name: 'find_bc_knowledge',
|
|
5
|
+
description: 'Search BC knowledge topics, find specialists, or discover workflows. Use this when users want to find information about BC development.',
|
|
6
|
+
inputSchema: {
|
|
7
|
+
type: 'object',
|
|
8
|
+
properties: {
|
|
9
|
+
query: {
|
|
10
|
+
type: 'string',
|
|
11
|
+
description: 'Search query or question about BC development'
|
|
12
|
+
},
|
|
13
|
+
search_type: {
|
|
14
|
+
type: 'string',
|
|
15
|
+
enum: ['topics', 'specialists', 'workflows', 'all'],
|
|
16
|
+
description: 'Type of search to perform',
|
|
17
|
+
default: 'all'
|
|
18
|
+
},
|
|
19
|
+
bc_version: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'Business Central version (e.g., "BC22", "BC20")'
|
|
22
|
+
},
|
|
23
|
+
limit: {
|
|
24
|
+
type: 'number',
|
|
25
|
+
description: 'Maximum number of results to return',
|
|
26
|
+
default: 10
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
required: ['query']
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'ask_bc_expert',
|
|
34
|
+
description: `DIRECT SPECIALIST CONSULTATION: Connect with BC specialists who respond immediately as themselves, not as AI assistants describing roleplay. When user says "Talk to Sam" or "Ask Dean about debugging", you get authentic specialist expertise directly. CRITICAL: Do not explain roleplay or offer menus - respond AS the specialist would respond. USE FOR: "Talk to Sam", "Ask Dean about debugging", "I took over this BC app", "Help with performance issues". DO NOT USE FOR WORKFLOWS.
|
|
35
|
+
|
|
36
|
+
🔧 **AL/BC Platform Constraints**: All specialist responses MUST respect Business Central and AL language limitations:
|
|
37
|
+
• Security: AL permission objects, user groups, BC security framework - NOT external auth systems
|
|
38
|
+
• UX: AL page/report constraints - BC controls rendering, NOT custom CSS/HTML
|
|
39
|
+
• Performance: AL optimization, table design, BC server constraints - NOT generic frameworks
|
|
40
|
+
• API: BC API pages, web services, AL integration - NOT generic REST frameworks
|
|
41
|
+
• Always prioritize AL language capabilities and BC platform limitations over generic programming approaches`,
|
|
42
|
+
inputSchema: {
|
|
43
|
+
type: 'object',
|
|
44
|
+
properties: {
|
|
45
|
+
question: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
description: 'Your specific question or challenge about BC development'
|
|
48
|
+
},
|
|
49
|
+
context: {
|
|
50
|
+
type: 'string',
|
|
51
|
+
description: 'Optional context about your situation, code, or project'
|
|
52
|
+
},
|
|
53
|
+
preferred_specialist: {
|
|
54
|
+
type: 'string',
|
|
55
|
+
description: 'Optional: specific specialist to consult (will auto-detect if not provided)'
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
required: ['question']
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'analyze_al_code',
|
|
63
|
+
description: 'Analyze AL/BC code for issues, patterns, optimization opportunities, and improvements. Includes workspace analysis and workflow recommendations.',
|
|
64
|
+
inputSchema: {
|
|
65
|
+
type: 'object',
|
|
66
|
+
properties: {
|
|
67
|
+
code: {
|
|
68
|
+
type: 'string',
|
|
69
|
+
description: 'AL/BC code to analyze (or "workspace" to analyze current workspace)'
|
|
70
|
+
},
|
|
71
|
+
analysis_type: {
|
|
72
|
+
type: 'string',
|
|
73
|
+
enum: ['performance', 'quality', 'security', 'patterns', 'optimization', 'general', 'comprehensive'],
|
|
74
|
+
description: 'Type of analysis to perform',
|
|
75
|
+
default: 'comprehensive'
|
|
76
|
+
},
|
|
77
|
+
bc_version: {
|
|
78
|
+
type: 'string',
|
|
79
|
+
description: 'Business Central version for version-specific analysis'
|
|
80
|
+
},
|
|
81
|
+
suggest_workflows: {
|
|
82
|
+
type: 'boolean',
|
|
83
|
+
description: 'Include workflow recommendations based on analysis',
|
|
84
|
+
default: true
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
required: ['code']
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: 'get_bc_topic',
|
|
92
|
+
description: 'Get detailed content for a specific BC knowledge topic with examples and best practices.',
|
|
93
|
+
inputSchema: {
|
|
94
|
+
type: 'object',
|
|
95
|
+
properties: {
|
|
96
|
+
topic_id: {
|
|
97
|
+
type: 'string',
|
|
98
|
+
description: 'Unique topic identifier (e.g., "sift-technology-fundamentals")'
|
|
99
|
+
},
|
|
100
|
+
include_samples: {
|
|
101
|
+
type: 'boolean',
|
|
102
|
+
description: 'Include companion AL code samples if available',
|
|
103
|
+
default: true
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
required: ['topic_id']
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'start_bc_workflow',
|
|
111
|
+
description: 'STRUCTURED WORKFLOWS: Start systematic BC development workflows for complex, multi-phase processes. USE FOR STRUCTURED PROCESSES like "optimize my code systematically", "conduct architecture review", "security audit", "performance analysis". DO NOT USE FOR SIMPLE CONVERSATIONS - if user wants to "talk to" or "ask" a specialist, use ask_bc_expert instead.',
|
|
112
|
+
inputSchema: {
|
|
113
|
+
type: 'object',
|
|
114
|
+
properties: {
|
|
115
|
+
workflow_type: {
|
|
116
|
+
type: 'string',
|
|
117
|
+
enum: ['new-bc-app', 'enhance-bc-app', 'review-bc-code', 'debug-bc-issues', 'modernize-bc-code', 'onboard-developer', 'upgrade-bc-version', 'add-ecosystem-features', 'document-bc-solution'],
|
|
118
|
+
description: 'Type of workflow to start'
|
|
119
|
+
},
|
|
120
|
+
context: {
|
|
121
|
+
type: 'string',
|
|
122
|
+
description: 'Project context, code location, or description of what needs to be worked on'
|
|
123
|
+
},
|
|
124
|
+
bc_version: {
|
|
125
|
+
type: 'string',
|
|
126
|
+
description: 'Business Central version'
|
|
127
|
+
},
|
|
128
|
+
additional_info: {
|
|
129
|
+
type: 'object',
|
|
130
|
+
description: 'Additional context specific to the workflow type'
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
required: ['workflow_type', 'context']
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: 'advance_workflow',
|
|
138
|
+
description: 'Progress to the next phase of an active workflow with your results and feedback, or check workflow status.',
|
|
139
|
+
inputSchema: {
|
|
140
|
+
type: 'object',
|
|
141
|
+
properties: {
|
|
142
|
+
workflow_id: {
|
|
143
|
+
type: 'string',
|
|
144
|
+
description: 'ID of the workflow session to advance'
|
|
145
|
+
},
|
|
146
|
+
phase_results: {
|
|
147
|
+
type: 'string',
|
|
148
|
+
description: 'Results from the current phase, decisions made, or feedback (optional for status checks)'
|
|
149
|
+
},
|
|
150
|
+
next_focus: {
|
|
151
|
+
type: 'string',
|
|
152
|
+
description: 'Optional: specific focus area for the next phase'
|
|
153
|
+
},
|
|
154
|
+
check_status_only: {
|
|
155
|
+
type: 'boolean',
|
|
156
|
+
description: 'Only check workflow status without advancing',
|
|
157
|
+
default: false
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
required: ['workflow_id']
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
name: 'get_workflow_help',
|
|
165
|
+
description: 'Get guidance for current workflow phase, check status, or understand next steps.',
|
|
166
|
+
inputSchema: {
|
|
167
|
+
type: 'object',
|
|
168
|
+
properties: {
|
|
169
|
+
workflow_id: {
|
|
170
|
+
type: 'string',
|
|
171
|
+
description: 'ID of the workflow session (optional - will list active workflows if not provided)'
|
|
172
|
+
},
|
|
173
|
+
help_type: {
|
|
174
|
+
type: 'string',
|
|
175
|
+
enum: ['status', 'guidance', 'next-steps', 'methodology'],
|
|
176
|
+
description: 'Type of help to provide',
|
|
177
|
+
default: 'guidance'
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
name: 'get_bc_help',
|
|
184
|
+
description: 'Meta-tool that analyzes your current context and suggests what BC tools or workflows to use next. Use when unsure what to do.',
|
|
185
|
+
inputSchema: {
|
|
186
|
+
type: 'object',
|
|
187
|
+
properties: {
|
|
188
|
+
current_situation: {
|
|
189
|
+
type: 'string',
|
|
190
|
+
description: 'Description of your current situation, challenge, or what you\'re trying to accomplish'
|
|
191
|
+
},
|
|
192
|
+
workspace_context: {
|
|
193
|
+
type: 'string',
|
|
194
|
+
description: 'Optional: information about your current AL workspace or project'
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
required: ['current_situation']
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
];
|
|
201
|
+
//# sourceMappingURL=streamlined-tools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streamlined-tools.js","sourceRoot":"","sources":["../src/streamlined-tools.ts"],"names":[],"mappings":"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"}
|