@taskforcehq/taskforce 0.3.323 → 0.3.326
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/Taskforce.module.css +56 -0
- package/dist/components/features/TaskSettings.js +26 -9
- package/dist/components/task/TaskKanban.d.ts +2 -2
- package/dist/components/views/AppShellHeader.js +47 -2
- package/dist/components/views/StandaloneLayout.js +22 -22
- package/dist/components/views/panels/PlanningDrawer.d.ts +2 -2
- package/dist/components/views/panels/PlanningDrawer.js +26 -12
- package/dist/components/views/planningScope.d.ts +4 -0
- package/dist/components/views/planningScope.js +5 -0
- package/dist/core/AiProfileService.js +6 -1
- package/dist/core/Taskforce.d.ts +3 -0
- package/dist/core/Taskforce.js +21 -0
- package/dist/hooks/useTaskforce.js +74 -17
- package/dist/hooks/workspace/workspaceLocalState.d.ts +25 -0
- package/dist/hooks/workspace/workspaceLocalState.js +38 -0
- package/dist/mcp/adminWorkspaceRegistrar.js +0 -10
- package/dist/mcp/clientIntegrations.d.ts +1 -1
- package/dist/mcp/clientIntegrations.js +50 -0
- package/dist/mcp/clientProfileDefaults.js +4 -0
- package/dist/mcp/collaborationRegistrar.js +3 -3
- package/dist/mcp/documentAssetRegistrar.js +24 -72
- package/dist/mcp/documentHelpers.d.ts +11 -4
- package/dist/mcp/documentHelpers.js +21 -17
- package/dist/mcp/runtime.d.ts +4 -0
- package/dist/mcp/runtime.js +466 -534
- package/dist/mcp/taskPlanningRegistrar.js +45 -81
- package/dist/mcp/toolProfiles.d.ts +7 -0
- package/dist/mcp/toolProfiles.js +36 -0
- package/dist/mcp/toolRegistry.d.ts +87 -609
- package/dist/mcp/toolRegistry.js +93 -88
- package/dist/resources/templates/workflow-sources/workflowDocs.mjs +10 -10
- package/dist/resources/templates/workflows/collaborate.yaml +2 -3
- package/dist/resources/templates/workflows/do.yaml +2 -3
- package/dist/resources/templates/workflows/evaluate.yaml +2 -3
- package/dist/resources/templates/workflows/execute.yaml +12 -15
- package/dist/resources/templates/workflows/plan.yaml +3 -4
- package/dist/resources/templates/workflows/review.yaml +2 -3
- package/dist/server/routes/admin.d.ts +1 -0
- package/dist/server/routes/admin.js +29 -1
- package/dist/shared/taxonomyLibrary.js +1 -1
- package/dist/sync/cloudSyncApi.js +22 -3
- package/dist/types.js +1 -1
- package/dist/ui/.well-known/openai-apps-challenge +1 -1
- package/dist/ui/assets/{AgentsModule-7jpDeuVR.js → AgentsModule-C4LcqhcZ.js} +1 -1
- package/dist/ui/assets/{AnnotatedAttachmentWorkspace-BJLe8DFj.js → AnnotatedAttachmentWorkspace-B-Dq22d2.js} +1 -1
- package/dist/ui/assets/{ContextAttachmentManager-AmEny3eI.js → ContextAttachmentManager-DsXPTvi-.js} +1 -1
- package/dist/ui/assets/{DocumentWorkspace-Cqdq31Ha.js → DocumentWorkspace-CxA1wO3U.js} +1 -1
- package/dist/ui/assets/{EntityActivityTimeline-BlS7DhA4.js → EntityActivityTimeline-B8nSe8l3.js} +1 -1
- package/dist/ui/assets/{InitiativesModule-C1qfO1uZ.js → InitiativesModule-VY95v38E.js} +1 -1
- package/dist/ui/assets/{PlansPage-DFt5w-0Y.js → PlansPage-CQbKDv1a.js} +1 -1
- package/dist/ui/assets/{TaskContextUpload-zuro5gDT.js → TaskContextUpload-DvDlNpHC.js} +1 -1
- package/dist/ui/assets/TaskSettings-CUWbYYtP.js +12 -0
- package/dist/ui/assets/{WorkflowsModule-CEEGuxsf.js → WorkflowsModule-CgM3Jako.js} +1 -1
- package/dist/ui/assets/documentReferences-Do9YjrS3.js +1 -0
- package/dist/ui/assets/index--mh3pktj.js +5 -0
- package/dist/ui/assets/index-BawaaEXS.css +1 -0
- package/dist/ui/index.html +2 -2
- package/dist/utils/theme.js +1 -1
- package/package.json +1 -1
- package/src/resources/templates/workflow-sources/workflowDocs.mjs +10 -10
- package/src/resources/templates/workflows/collaborate.yaml +2 -3
- package/src/resources/templates/workflows/do.yaml +2 -3
- package/src/resources/templates/workflows/evaluate.yaml +2 -3
- package/src/resources/templates/workflows/execute.yaml +12 -15
- package/src/resources/templates/workflows/plan.yaml +3 -4
- package/src/resources/templates/workflows/review.yaml +2 -3
- package/dist/ui/assets/TaskSettings-CJPC2Bft.js +0 -9
- package/dist/ui/assets/documentReferences-Ca2P--i5.js +0 -1
- package/dist/ui/assets/index-CGDQY0nN.js +0 -5
- package/dist/ui/assets/index-DcK_8tuE.css +0 -1
|
@@ -9,618 +9,96 @@ export type McpPermission = {
|
|
|
9
9
|
} | {
|
|
10
10
|
kind: 'session-only';
|
|
11
11
|
};
|
|
12
|
+
export declare const MCP_TOOL_PROFILES: readonly ["default", "extended", "full"];
|
|
13
|
+
export type McpToolProfile = typeof MCP_TOOL_PROFILES[number];
|
|
14
|
+
export type McpToolSuccessor = {
|
|
15
|
+
name: string;
|
|
16
|
+
argumentHint?: Record<string, unknown>;
|
|
17
|
+
};
|
|
18
|
+
type McpToolRegistryEntry = {
|
|
19
|
+
permission: McpPermission;
|
|
20
|
+
mutating: boolean;
|
|
21
|
+
minProfile: McpToolProfile;
|
|
22
|
+
suggestedTool?: McpToolSuccessor;
|
|
23
|
+
};
|
|
12
24
|
export declare const MCP_TOOL_REGISTRY: Readonly<{
|
|
13
|
-
readonly list_assignees:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
readonly
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
readonly
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
readonly
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
readonly
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
readonly
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
readonly
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
readonly
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
readonly
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
readonly
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
readonly
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
};
|
|
88
|
-
readonly mutating: true;
|
|
89
|
-
};
|
|
90
|
-
readonly list_workstreams: {
|
|
91
|
-
readonly permission: {
|
|
92
|
-
readonly kind: "scope";
|
|
93
|
-
readonly scope: "tasks:read";
|
|
94
|
-
};
|
|
95
|
-
readonly mutating: false;
|
|
96
|
-
};
|
|
97
|
-
readonly get_workstream: {
|
|
98
|
-
readonly permission: {
|
|
99
|
-
readonly kind: "scope";
|
|
100
|
-
readonly scope: "tasks:read";
|
|
101
|
-
};
|
|
102
|
-
readonly mutating: false;
|
|
103
|
-
};
|
|
104
|
-
readonly create_workstream: {
|
|
105
|
-
readonly permission: {
|
|
106
|
-
readonly kind: "scope";
|
|
107
|
-
readonly scope: "tasks:write";
|
|
108
|
-
};
|
|
109
|
-
readonly mutating: true;
|
|
110
|
-
};
|
|
111
|
-
readonly update_workstream: {
|
|
112
|
-
readonly permission: {
|
|
113
|
-
readonly kind: "scope";
|
|
114
|
-
readonly scope: "tasks:write";
|
|
115
|
-
};
|
|
116
|
-
readonly mutating: true;
|
|
117
|
-
};
|
|
118
|
-
readonly archive_workstream: {
|
|
119
|
-
readonly permission: {
|
|
120
|
-
readonly kind: "scope";
|
|
121
|
-
readonly scope: "tasks:write";
|
|
122
|
-
};
|
|
123
|
-
readonly mutating: true;
|
|
124
|
-
};
|
|
125
|
-
readonly unarchive_workstream: {
|
|
126
|
-
readonly permission: {
|
|
127
|
-
readonly kind: "scope";
|
|
128
|
-
readonly scope: "tasks:write";
|
|
129
|
-
};
|
|
130
|
-
readonly mutating: true;
|
|
131
|
-
};
|
|
132
|
-
readonly set_task_workstream: {
|
|
133
|
-
readonly permission: {
|
|
134
|
-
readonly kind: "scope";
|
|
135
|
-
readonly scope: "tasks:write";
|
|
136
|
-
};
|
|
137
|
-
readonly mutating: true;
|
|
138
|
-
};
|
|
139
|
-
readonly clear_task_workstream: {
|
|
140
|
-
readonly permission: {
|
|
141
|
-
readonly kind: "scope";
|
|
142
|
-
readonly scope: "tasks:write";
|
|
143
|
-
};
|
|
144
|
-
readonly mutating: true;
|
|
145
|
-
};
|
|
146
|
-
readonly set_workstream_initiative: {
|
|
147
|
-
readonly permission: {
|
|
148
|
-
readonly kind: "scope";
|
|
149
|
-
readonly scope: "tasks:write";
|
|
150
|
-
};
|
|
151
|
-
readonly mutating: true;
|
|
152
|
-
};
|
|
153
|
-
readonly clear_workstream_initiative: {
|
|
154
|
-
readonly permission: {
|
|
155
|
-
readonly kind: "scope";
|
|
156
|
-
readonly scope: "tasks:write";
|
|
157
|
-
};
|
|
158
|
-
readonly mutating: true;
|
|
159
|
-
};
|
|
160
|
-
readonly get_task_checklist: {
|
|
161
|
-
readonly permission: {
|
|
162
|
-
readonly kind: "scope";
|
|
163
|
-
readonly scope: "tasks:read";
|
|
164
|
-
};
|
|
165
|
-
readonly mutating: false;
|
|
166
|
-
};
|
|
167
|
-
readonly replace_task_checklist: {
|
|
168
|
-
readonly permission: {
|
|
169
|
-
readonly kind: "scope";
|
|
170
|
-
readonly scope: "tasks:write";
|
|
171
|
-
};
|
|
172
|
-
readonly mutating: true;
|
|
173
|
-
};
|
|
174
|
-
readonly get_task_attachments: {
|
|
175
|
-
readonly permission: {
|
|
176
|
-
readonly kind: "scope";
|
|
177
|
-
readonly scope: "tasks:read";
|
|
178
|
-
};
|
|
179
|
-
readonly mutating: false;
|
|
180
|
-
};
|
|
181
|
-
readonly read_task_attachment: {
|
|
182
|
-
readonly permission: {
|
|
183
|
-
readonly kind: "scope";
|
|
184
|
-
readonly scope: "tasks:read";
|
|
185
|
-
};
|
|
186
|
-
readonly mutating: false;
|
|
187
|
-
};
|
|
188
|
-
readonly get_workstream_attachments: {
|
|
189
|
-
readonly permission: {
|
|
190
|
-
readonly kind: "scope";
|
|
191
|
-
readonly scope: "tasks:read";
|
|
192
|
-
};
|
|
193
|
-
readonly mutating: false;
|
|
194
|
-
};
|
|
195
|
-
readonly read_workstream_attachment: {
|
|
196
|
-
readonly permission: {
|
|
197
|
-
readonly kind: "scope";
|
|
198
|
-
readonly scope: "tasks:read";
|
|
199
|
-
};
|
|
200
|
-
readonly mutating: false;
|
|
201
|
-
};
|
|
202
|
-
readonly save_workstream_attachment: {
|
|
203
|
-
readonly permission: {
|
|
204
|
-
readonly kind: "scope";
|
|
205
|
-
readonly scope: "tasks:write";
|
|
206
|
-
};
|
|
207
|
-
readonly mutating: true;
|
|
208
|
-
};
|
|
209
|
-
readonly delete_workstream_attachment: {
|
|
210
|
-
readonly permission: {
|
|
211
|
-
readonly kind: "scope";
|
|
212
|
-
readonly scope: "tasks:write";
|
|
213
|
-
};
|
|
214
|
-
readonly mutating: true;
|
|
215
|
-
};
|
|
216
|
-
readonly get_initiative_attachments: {
|
|
217
|
-
readonly permission: {
|
|
218
|
-
readonly kind: "scope";
|
|
219
|
-
readonly scope: "tasks:read";
|
|
220
|
-
};
|
|
221
|
-
readonly mutating: false;
|
|
222
|
-
};
|
|
223
|
-
readonly read_initiative_attachment: {
|
|
224
|
-
readonly permission: {
|
|
225
|
-
readonly kind: "scope";
|
|
226
|
-
readonly scope: "tasks:read";
|
|
227
|
-
};
|
|
228
|
-
readonly mutating: false;
|
|
229
|
-
};
|
|
230
|
-
readonly save_initiative_attachment: {
|
|
231
|
-
readonly permission: {
|
|
232
|
-
readonly kind: "scope";
|
|
233
|
-
readonly scope: "tasks:write";
|
|
234
|
-
};
|
|
235
|
-
readonly mutating: true;
|
|
236
|
-
};
|
|
237
|
-
readonly delete_initiative_attachment: {
|
|
238
|
-
readonly permission: {
|
|
239
|
-
readonly kind: "scope";
|
|
240
|
-
readonly scope: "tasks:write";
|
|
241
|
-
};
|
|
242
|
-
readonly mutating: true;
|
|
243
|
-
};
|
|
244
|
-
readonly search_images: {
|
|
245
|
-
readonly permission: {
|
|
246
|
-
readonly kind: "scope";
|
|
247
|
-
readonly scope: "tasks:read";
|
|
248
|
-
};
|
|
249
|
-
readonly mutating: false;
|
|
250
|
-
};
|
|
251
|
-
readonly get_image: {
|
|
252
|
-
readonly permission: {
|
|
253
|
-
readonly kind: "scope";
|
|
254
|
-
readonly scope: "tasks:read";
|
|
255
|
-
};
|
|
256
|
-
readonly mutating: false;
|
|
257
|
-
};
|
|
258
|
-
readonly search_documents: {
|
|
259
|
-
readonly permission: {
|
|
260
|
-
readonly kind: "scope";
|
|
261
|
-
readonly scope: "tasks:read";
|
|
262
|
-
};
|
|
263
|
-
readonly mutating: false;
|
|
264
|
-
};
|
|
265
|
-
readonly get_document: {
|
|
266
|
-
readonly permission: {
|
|
267
|
-
readonly kind: "scope";
|
|
268
|
-
readonly scope: "tasks:read";
|
|
269
|
-
};
|
|
270
|
-
readonly mutating: false;
|
|
271
|
-
};
|
|
272
|
-
readonly read_document_content: {
|
|
273
|
-
readonly permission: {
|
|
274
|
-
readonly kind: "scope";
|
|
275
|
-
readonly scope: "tasks:read";
|
|
276
|
-
};
|
|
277
|
-
readonly mutating: false;
|
|
278
|
-
};
|
|
279
|
-
readonly get_annotated_attachment_sessions: {
|
|
280
|
-
readonly permission: {
|
|
281
|
-
readonly kind: "scope";
|
|
282
|
-
readonly scope: "tasks:read";
|
|
283
|
-
};
|
|
284
|
-
readonly mutating: false;
|
|
285
|
-
};
|
|
286
|
-
readonly read_annotated_attachment_payload: {
|
|
287
|
-
readonly permission: {
|
|
288
|
-
readonly kind: "scope";
|
|
289
|
-
readonly scope: "tasks:read";
|
|
290
|
-
};
|
|
291
|
-
readonly mutating: false;
|
|
292
|
-
};
|
|
293
|
-
readonly create_annotated_attachment_session: {
|
|
294
|
-
readonly permission: {
|
|
295
|
-
readonly kind: "scope";
|
|
296
|
-
readonly scope: "tasks:write";
|
|
297
|
-
};
|
|
298
|
-
readonly mutating: true;
|
|
299
|
-
};
|
|
300
|
-
readonly update_annotated_attachment_session: {
|
|
301
|
-
readonly permission: {
|
|
302
|
-
readonly kind: "scope";
|
|
303
|
-
readonly scope: "tasks:write";
|
|
304
|
-
};
|
|
305
|
-
readonly mutating: true;
|
|
306
|
-
};
|
|
307
|
-
readonly delete_annotated_attachment_session: {
|
|
308
|
-
readonly permission: {
|
|
309
|
-
readonly kind: "scope";
|
|
310
|
-
readonly scope: "tasks:write";
|
|
311
|
-
};
|
|
312
|
-
readonly mutating: true;
|
|
313
|
-
};
|
|
314
|
-
readonly review_image: {
|
|
315
|
-
readonly permission: {
|
|
316
|
-
readonly kind: "scope";
|
|
317
|
-
readonly scope: "tasks:write";
|
|
318
|
-
};
|
|
319
|
-
readonly mutating: true;
|
|
320
|
-
};
|
|
321
|
-
readonly add_annotated_attachment_marker: {
|
|
322
|
-
readonly permission: {
|
|
323
|
-
readonly kind: "scope";
|
|
324
|
-
readonly scope: "tasks:write";
|
|
325
|
-
};
|
|
326
|
-
readonly mutating: true;
|
|
327
|
-
};
|
|
328
|
-
readonly bulk_add_annotated_attachment_markers: {
|
|
329
|
-
readonly permission: {
|
|
330
|
-
readonly kind: "scope";
|
|
331
|
-
readonly scope: "tasks:write";
|
|
332
|
-
};
|
|
333
|
-
readonly mutating: true;
|
|
334
|
-
};
|
|
335
|
-
readonly update_annotated_attachment_marker: {
|
|
336
|
-
readonly permission: {
|
|
337
|
-
readonly kind: "scope";
|
|
338
|
-
readonly scope: "tasks:write";
|
|
339
|
-
};
|
|
340
|
-
readonly mutating: true;
|
|
341
|
-
};
|
|
342
|
-
readonly reorder_annotated_attachment_marker: {
|
|
343
|
-
readonly permission: {
|
|
344
|
-
readonly kind: "scope";
|
|
345
|
-
readonly scope: "tasks:write";
|
|
346
|
-
};
|
|
347
|
-
readonly mutating: true;
|
|
348
|
-
};
|
|
349
|
-
readonly delete_annotated_attachment_marker: {
|
|
350
|
-
readonly permission: {
|
|
351
|
-
readonly kind: "scope";
|
|
352
|
-
readonly scope: "tasks:write";
|
|
353
|
-
};
|
|
354
|
-
readonly mutating: true;
|
|
355
|
-
};
|
|
356
|
-
readonly get_document_review_sessions: {
|
|
357
|
-
readonly permission: {
|
|
358
|
-
readonly kind: "scope";
|
|
359
|
-
readonly scope: "tasks:read";
|
|
360
|
-
};
|
|
361
|
-
readonly mutating: false;
|
|
362
|
-
};
|
|
363
|
-
readonly get_document_review_session: {
|
|
364
|
-
readonly permission: {
|
|
365
|
-
readonly kind: "scope";
|
|
366
|
-
readonly scope: "tasks:read";
|
|
367
|
-
};
|
|
368
|
-
readonly mutating: false;
|
|
369
|
-
};
|
|
370
|
-
readonly create_document_review_session: {
|
|
371
|
-
readonly permission: {
|
|
372
|
-
readonly kind: "scope";
|
|
373
|
-
readonly scope: "tasks:write";
|
|
374
|
-
};
|
|
375
|
-
readonly mutating: true;
|
|
376
|
-
};
|
|
377
|
-
readonly update_document_review_session: {
|
|
378
|
-
readonly permission: {
|
|
379
|
-
readonly kind: "scope";
|
|
380
|
-
readonly scope: "tasks:write";
|
|
381
|
-
};
|
|
382
|
-
readonly mutating: true;
|
|
383
|
-
};
|
|
384
|
-
readonly review_document: {
|
|
385
|
-
readonly permission: {
|
|
386
|
-
readonly kind: "scope";
|
|
387
|
-
readonly scope: "tasks:write";
|
|
388
|
-
};
|
|
389
|
-
readonly mutating: true;
|
|
390
|
-
};
|
|
391
|
-
readonly add_document_review_comment: {
|
|
392
|
-
readonly permission: {
|
|
393
|
-
readonly kind: "scope";
|
|
394
|
-
readonly scope: "tasks:write";
|
|
395
|
-
};
|
|
396
|
-
readonly mutating: true;
|
|
397
|
-
};
|
|
398
|
-
readonly update_document_review_comment: {
|
|
399
|
-
readonly permission: {
|
|
400
|
-
readonly kind: "scope";
|
|
401
|
-
readonly scope: "tasks:write";
|
|
402
|
-
};
|
|
403
|
-
readonly mutating: true;
|
|
404
|
-
};
|
|
405
|
-
readonly delete_document_review_comment: {
|
|
406
|
-
readonly permission: {
|
|
407
|
-
readonly kind: "scope";
|
|
408
|
-
readonly scope: "tasks:write";
|
|
409
|
-
};
|
|
410
|
-
readonly mutating: true;
|
|
411
|
-
};
|
|
412
|
-
readonly get_schedule_board: {
|
|
413
|
-
readonly permission: {
|
|
414
|
-
readonly kind: "scope";
|
|
415
|
-
readonly scope: "tasks:read";
|
|
416
|
-
};
|
|
417
|
-
readonly mutating: false;
|
|
418
|
-
};
|
|
419
|
-
readonly schedule_task: {
|
|
420
|
-
readonly permission: {
|
|
421
|
-
readonly kind: "scope";
|
|
422
|
-
readonly scope: "tasks:write";
|
|
423
|
-
};
|
|
424
|
-
readonly mutating: true;
|
|
425
|
-
};
|
|
426
|
-
readonly unschedule_task: {
|
|
427
|
-
readonly permission: {
|
|
428
|
-
readonly kind: "scope";
|
|
429
|
-
readonly scope: "tasks:write";
|
|
430
|
-
};
|
|
431
|
-
readonly mutating: true;
|
|
432
|
-
};
|
|
433
|
-
readonly reorder_scheduled_tasks: {
|
|
434
|
-
readonly permission: {
|
|
435
|
-
readonly kind: "scope";
|
|
436
|
-
readonly scope: "tasks:write";
|
|
437
|
-
};
|
|
438
|
-
readonly mutating: true;
|
|
439
|
-
};
|
|
440
|
-
readonly bulk_carryover: {
|
|
441
|
-
readonly permission: {
|
|
442
|
-
readonly kind: "scope";
|
|
443
|
-
readonly scope: "tasks:write";
|
|
444
|
-
};
|
|
445
|
-
readonly mutating: true;
|
|
446
|
-
};
|
|
447
|
-
readonly set_schedule_preferences: {
|
|
448
|
-
readonly permission: {
|
|
449
|
-
readonly kind: "session-only";
|
|
450
|
-
};
|
|
451
|
-
readonly mutating: true;
|
|
452
|
-
};
|
|
453
|
-
readonly resolve_profile: {
|
|
454
|
-
readonly permission: {
|
|
455
|
-
readonly kind: "scope";
|
|
456
|
-
readonly scope: "tasks:write";
|
|
457
|
-
};
|
|
458
|
-
readonly mutating: true;
|
|
459
|
-
};
|
|
460
|
-
readonly create_task: {
|
|
461
|
-
readonly permission: {
|
|
462
|
-
readonly kind: "scope";
|
|
463
|
-
readonly scope: "tasks:write";
|
|
464
|
-
};
|
|
465
|
-
readonly mutating: true;
|
|
466
|
-
};
|
|
467
|
-
readonly start_task: {
|
|
468
|
-
readonly permission: {
|
|
469
|
-
readonly kind: "scope";
|
|
470
|
-
readonly scope: "tasks:write";
|
|
471
|
-
};
|
|
472
|
-
readonly mutating: true;
|
|
473
|
-
};
|
|
474
|
-
readonly update_task: {
|
|
475
|
-
readonly permission: {
|
|
476
|
-
readonly kind: "scope";
|
|
477
|
-
readonly scope: "tasks:write";
|
|
478
|
-
};
|
|
479
|
-
readonly mutating: true;
|
|
480
|
-
};
|
|
481
|
-
readonly finish_task: {
|
|
482
|
-
readonly permission: {
|
|
483
|
-
readonly kind: "scope";
|
|
484
|
-
readonly scope: "tasks:write";
|
|
485
|
-
};
|
|
486
|
-
readonly mutating: true;
|
|
487
|
-
};
|
|
488
|
-
readonly assign_task: {
|
|
489
|
-
readonly permission: {
|
|
490
|
-
readonly kind: "scope";
|
|
491
|
-
readonly scope: "tasks:write";
|
|
492
|
-
};
|
|
493
|
-
readonly mutating: true;
|
|
494
|
-
};
|
|
495
|
-
readonly bulk_assign_tasks: {
|
|
496
|
-
readonly permission: {
|
|
497
|
-
readonly kind: "scope";
|
|
498
|
-
readonly scope: "tasks:write";
|
|
499
|
-
};
|
|
500
|
-
readonly mutating: true;
|
|
501
|
-
};
|
|
502
|
-
readonly archive_task: {
|
|
503
|
-
readonly permission: {
|
|
504
|
-
readonly kind: "scope";
|
|
505
|
-
readonly scope: "tasks:write";
|
|
506
|
-
};
|
|
507
|
-
readonly mutating: true;
|
|
508
|
-
};
|
|
509
|
-
readonly add_comment: {
|
|
510
|
-
readonly permission: {
|
|
511
|
-
readonly kind: "scope";
|
|
512
|
-
readonly scope: "tasks:write";
|
|
513
|
-
};
|
|
514
|
-
readonly mutating: true;
|
|
515
|
-
};
|
|
516
|
-
readonly link_task_context: {
|
|
517
|
-
readonly permission: {
|
|
518
|
-
readonly kind: "scope";
|
|
519
|
-
readonly scope: "tasks:write";
|
|
520
|
-
};
|
|
521
|
-
readonly mutating: true;
|
|
522
|
-
};
|
|
523
|
-
readonly save_task_attachment: {
|
|
524
|
-
readonly permission: {
|
|
525
|
-
readonly kind: "scope";
|
|
526
|
-
readonly scope: "tasks:write";
|
|
527
|
-
};
|
|
528
|
-
readonly mutating: true;
|
|
529
|
-
};
|
|
530
|
-
readonly delete_task_attachment: {
|
|
531
|
-
readonly permission: {
|
|
532
|
-
readonly kind: "scope";
|
|
533
|
-
readonly scope: "tasks:write";
|
|
534
|
-
};
|
|
535
|
-
readonly mutating: true;
|
|
536
|
-
};
|
|
537
|
-
readonly list_archive: {
|
|
538
|
-
readonly permission: {
|
|
539
|
-
readonly kind: "scope";
|
|
540
|
-
readonly scope: "tasks:read";
|
|
541
|
-
};
|
|
542
|
-
readonly mutating: false;
|
|
543
|
-
};
|
|
544
|
-
readonly unarchive_task: {
|
|
545
|
-
readonly permission: {
|
|
546
|
-
readonly kind: "scope";
|
|
547
|
-
readonly scope: "tasks:write";
|
|
548
|
-
};
|
|
549
|
-
readonly mutating: true;
|
|
550
|
-
};
|
|
551
|
-
readonly bulk_archive: {
|
|
552
|
-
readonly permission: {
|
|
553
|
-
readonly kind: "scope";
|
|
554
|
-
readonly scope: "tasks:write";
|
|
555
|
-
};
|
|
556
|
-
readonly mutating: true;
|
|
557
|
-
};
|
|
558
|
-
readonly get_config: {
|
|
559
|
-
readonly permission: {
|
|
560
|
-
readonly kind: "scope";
|
|
561
|
-
readonly scope: "workspace:read";
|
|
562
|
-
};
|
|
563
|
-
readonly mutating: false;
|
|
564
|
-
};
|
|
565
|
-
readonly update_categories: {
|
|
566
|
-
readonly permission: {
|
|
567
|
-
readonly kind: "session-only";
|
|
568
|
-
};
|
|
569
|
-
readonly mutating: true;
|
|
570
|
-
};
|
|
571
|
-
readonly update_types: {
|
|
572
|
-
readonly permission: {
|
|
573
|
-
readonly kind: "session-only";
|
|
574
|
-
};
|
|
575
|
-
readonly mutating: true;
|
|
576
|
-
};
|
|
577
|
-
readonly bulk_update_type: {
|
|
578
|
-
readonly permission: {
|
|
579
|
-
readonly kind: "scope";
|
|
580
|
-
readonly scope: "tasks:write";
|
|
581
|
-
};
|
|
582
|
-
readonly mutating: true;
|
|
583
|
-
};
|
|
584
|
-
readonly bulk_update_fields: {
|
|
585
|
-
readonly permission: {
|
|
586
|
-
readonly kind: "scope";
|
|
587
|
-
readonly scope: "tasks:write";
|
|
588
|
-
};
|
|
589
|
-
readonly mutating: true;
|
|
590
|
-
};
|
|
591
|
-
readonly export_resources: {
|
|
592
|
-
readonly permission: {
|
|
593
|
-
readonly kind: "local-only";
|
|
594
|
-
};
|
|
595
|
-
readonly mutating: true;
|
|
596
|
-
};
|
|
597
|
-
readonly get_paths: {
|
|
598
|
-
readonly permission: {
|
|
599
|
-
readonly kind: "local-only";
|
|
600
|
-
};
|
|
601
|
-
readonly mutating: false;
|
|
602
|
-
};
|
|
603
|
-
readonly update_priorities: {
|
|
604
|
-
readonly permission: {
|
|
605
|
-
readonly kind: "session-only";
|
|
606
|
-
};
|
|
607
|
-
readonly mutating: true;
|
|
608
|
-
};
|
|
609
|
-
readonly update_approaches: {
|
|
610
|
-
readonly permission: {
|
|
611
|
-
readonly kind: "session-only";
|
|
612
|
-
};
|
|
613
|
-
readonly mutating: true;
|
|
614
|
-
};
|
|
615
|
-
readonly get_stats: {
|
|
616
|
-
readonly permission: {
|
|
617
|
-
readonly kind: "scope";
|
|
618
|
-
readonly scope: "tasks:read";
|
|
619
|
-
};
|
|
620
|
-
readonly mutating: false;
|
|
621
|
-
};
|
|
25
|
+
readonly list_assignees: McpToolRegistryEntry;
|
|
26
|
+
readonly get_current_profile: McpToolRegistryEntry;
|
|
27
|
+
readonly list_tasks: McpToolRegistryEntry;
|
|
28
|
+
readonly search_tasks: McpToolRegistryEntry;
|
|
29
|
+
readonly get_task: McpToolRegistryEntry;
|
|
30
|
+
readonly list_initiatives: McpToolRegistryEntry;
|
|
31
|
+
readonly get_initiative: McpToolRegistryEntry;
|
|
32
|
+
readonly create_initiative: McpToolRegistryEntry;
|
|
33
|
+
readonly update_initiative: McpToolRegistryEntry;
|
|
34
|
+
readonly archive_initiative: McpToolRegistryEntry;
|
|
35
|
+
readonly unarchive_initiative: McpToolRegistryEntry;
|
|
36
|
+
readonly list_workstreams: McpToolRegistryEntry;
|
|
37
|
+
readonly get_workstream: McpToolRegistryEntry;
|
|
38
|
+
readonly create_workstream: McpToolRegistryEntry;
|
|
39
|
+
readonly update_workstream: McpToolRegistryEntry;
|
|
40
|
+
readonly archive_workstream: McpToolRegistryEntry;
|
|
41
|
+
readonly unarchive_workstream: McpToolRegistryEntry;
|
|
42
|
+
readonly update_task_workstream: McpToolRegistryEntry;
|
|
43
|
+
readonly update_workstream_initiative: McpToolRegistryEntry;
|
|
44
|
+
readonly get_task_checklist: McpToolRegistryEntry;
|
|
45
|
+
readonly replace_task_checklist: McpToolRegistryEntry;
|
|
46
|
+
readonly get_task_attachments: McpToolRegistryEntry;
|
|
47
|
+
readonly get_workstream_attachments: McpToolRegistryEntry;
|
|
48
|
+
readonly save_workstream_attachment: McpToolRegistryEntry;
|
|
49
|
+
readonly delete_workstream_attachment: McpToolRegistryEntry;
|
|
50
|
+
readonly get_initiative_attachments: McpToolRegistryEntry;
|
|
51
|
+
readonly save_initiative_attachment: McpToolRegistryEntry;
|
|
52
|
+
readonly delete_initiative_attachment: McpToolRegistryEntry;
|
|
53
|
+
readonly search_images: McpToolRegistryEntry;
|
|
54
|
+
readonly get_image: McpToolRegistryEntry;
|
|
55
|
+
readonly search_documents: McpToolRegistryEntry;
|
|
56
|
+
readonly get_document: McpToolRegistryEntry;
|
|
57
|
+
readonly get_image_annotations: McpToolRegistryEntry;
|
|
58
|
+
readonly create_annotated_attachment_session: McpToolRegistryEntry;
|
|
59
|
+
readonly update_annotated_attachment_session: McpToolRegistryEntry;
|
|
60
|
+
readonly delete_annotated_attachment_session: McpToolRegistryEntry;
|
|
61
|
+
readonly review_image: McpToolRegistryEntry;
|
|
62
|
+
readonly add_annotated_attachment_marker: McpToolRegistryEntry;
|
|
63
|
+
readonly bulk_add_annotated_attachment_markers: McpToolRegistryEntry;
|
|
64
|
+
readonly update_annotated_attachment_marker: McpToolRegistryEntry;
|
|
65
|
+
readonly reorder_annotated_attachment_marker: McpToolRegistryEntry;
|
|
66
|
+
readonly delete_annotated_attachment_marker: McpToolRegistryEntry;
|
|
67
|
+
readonly get_document_reviews: McpToolRegistryEntry;
|
|
68
|
+
readonly create_document_review_session: McpToolRegistryEntry;
|
|
69
|
+
readonly update_document_review_session: McpToolRegistryEntry;
|
|
70
|
+
readonly review_document: McpToolRegistryEntry;
|
|
71
|
+
readonly add_document_review_comment: McpToolRegistryEntry;
|
|
72
|
+
readonly update_document_review_comment: McpToolRegistryEntry;
|
|
73
|
+
readonly delete_document_review_comment: McpToolRegistryEntry;
|
|
74
|
+
readonly get_schedule_board: McpToolRegistryEntry;
|
|
75
|
+
readonly update_schedule: McpToolRegistryEntry;
|
|
76
|
+
readonly bulk_carryover: McpToolRegistryEntry;
|
|
77
|
+
readonly set_schedule_preferences: McpToolRegistryEntry;
|
|
78
|
+
readonly resolve_profile: McpToolRegistryEntry;
|
|
79
|
+
readonly create_task: McpToolRegistryEntry;
|
|
80
|
+
readonly start_task: McpToolRegistryEntry;
|
|
81
|
+
readonly update_task: McpToolRegistryEntry;
|
|
82
|
+
readonly finish_task: McpToolRegistryEntry;
|
|
83
|
+
readonly archive_task: McpToolRegistryEntry;
|
|
84
|
+
readonly add_comment: McpToolRegistryEntry;
|
|
85
|
+
readonly link_task_context: McpToolRegistryEntry;
|
|
86
|
+
readonly save_task_attachment: McpToolRegistryEntry;
|
|
87
|
+
readonly delete_task_attachment: McpToolRegistryEntry;
|
|
88
|
+
readonly unarchive_task: McpToolRegistryEntry;
|
|
89
|
+
readonly bulk_archive: McpToolRegistryEntry;
|
|
90
|
+
readonly get_config: McpToolRegistryEntry;
|
|
91
|
+
readonly update_categories: McpToolRegistryEntry;
|
|
92
|
+
readonly update_types: McpToolRegistryEntry;
|
|
93
|
+
readonly bulk_update_fields: McpToolRegistryEntry;
|
|
94
|
+
readonly export_resources: McpToolRegistryEntry;
|
|
95
|
+
readonly get_paths: McpToolRegistryEntry;
|
|
96
|
+
readonly update_priorities: McpToolRegistryEntry;
|
|
97
|
+
readonly update_approaches: McpToolRegistryEntry;
|
|
98
|
+
readonly get_stats: McpToolRegistryEntry;
|
|
622
99
|
}>;
|
|
623
100
|
export type McpToolName = keyof typeof MCP_TOOL_REGISTRY;
|
|
624
101
|
export declare const MCP_TOOL_PERMISSIONS: Record<McpToolName, McpPermission>;
|
|
625
102
|
export declare const MCP_WRITE_TOOL_NAMES: Set<string>;
|
|
626
103
|
export declare const MCP_CLOUD_TOOL_SCOPE_REQUIREMENTS: Record<string, McpAccessTokenScope>;
|
|
104
|
+
export {};
|