@vheins/local-memory-mcp 0.5.20 → 0.5.22
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/dashboard/public/assets/{index-CUNSfwmD.js → index-BrV31hFu.js} +1 -1
- package/dist/dashboard/public/index.html +1 -1
- package/dist/mcp/prompts/definitions/create-task.md +3 -2
- package/dist/mcp/prompts/definitions/task-management-guidelines.md +18 -13
- package/dist/mcp/prompts/definitions/task-memory-executor.md +8 -4
- package/dist/mcp/prompts/registry.d.ts +5 -1
- package/dist/mcp/prompts/registry.d.ts.map +1 -1
- package/dist/mcp/prompts/registry.js +14 -6
- package/dist/mcp/prompts/registry.js.map +1 -1
- package/dist/mcp/router.d.ts.map +1 -1
- package/dist/mcp/router.js +11 -7
- package/dist/mcp/router.js.map +1 -1
- package/dist/mcp/storage/sqlite.d.ts.map +1 -1
- package/dist/mcp/storage/sqlite.js +4 -2
- package/dist/mcp/storage/sqlite.js.map +1 -1
- package/dist/mcp/tests/router.test.js +3 -4
- package/dist/mcp/tests/router.test.js.map +1 -1
- package/dist/mcp/tests/tasks-search.test.js +16 -14
- package/dist/mcp/tests/tasks-search.test.js.map +1 -1
- package/dist/mcp/tests/tasks.bulk.test.js +78 -3
- package/dist/mcp/tests/tasks.bulk.test.js.map +1 -1
- package/dist/mcp/tests/tasks.e2e.test.js +1 -1
- package/dist/mcp/tests/tasks.e2e.test.js.map +1 -1
- package/dist/mcp/tools/memory.search.d.ts.map +1 -1
- package/dist/mcp/tools/memory.search.js +0 -1
- package/dist/mcp/tools/memory.search.js.map +1 -1
- package/dist/mcp/tools/schemas.d.ts +277 -84
- package/dist/mcp/tools/schemas.d.ts.map +1 -1
- package/dist/mcp/tools/schemas.js +124 -52
- package/dist/mcp/tools/schemas.js.map +1 -1
- package/dist/mcp/tools/task.bulk-manage.d.ts.map +1 -1
- package/dist/mcp/tools/task.bulk-manage.js +78 -0
- package/dist/mcp/tools/task.bulk-manage.js.map +1 -1
- package/dist/mcp/tools/task.manage.d.ts +2 -0
- package/dist/mcp/tools/task.manage.d.ts.map +1 -1
- package/dist/mcp/tools/task.manage.js +77 -16
- package/dist/mcp/tools/task.manage.js.map +1 -1
- package/dist/mcp/utils/mcp-response.d.ts.map +1 -1
- package/dist/mcp/utils/mcp-response.js +0 -2
- package/dist/mcp/utils/mcp-response.js.map +1 -1
- package/package.json +1 -1
|
@@ -233,6 +233,7 @@ export declare const TaskBulkManageSchema: z.ZodObject<{
|
|
|
233
233
|
action: z.ZodEnum<{
|
|
234
234
|
bulk_create: "bulk_create";
|
|
235
235
|
bulk_delete: "bulk_delete";
|
|
236
|
+
bulk_update: "bulk_update";
|
|
236
237
|
}>;
|
|
237
238
|
repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
238
239
|
tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -255,11 +256,31 @@ export declare const TaskBulkManageSchema: z.ZodObject<{
|
|
|
255
256
|
est_tokens: z.ZodOptional<z.ZodNumber>;
|
|
256
257
|
}, z.core.$strip>>>;
|
|
257
258
|
ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
259
|
+
updates: z.ZodOptional<z.ZodObject<{
|
|
260
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
261
|
+
pending: "pending";
|
|
262
|
+
backlog: "backlog";
|
|
263
|
+
in_progress: "in_progress";
|
|
264
|
+
completed: "completed";
|
|
265
|
+
canceled: "canceled";
|
|
266
|
+
blocked: "blocked";
|
|
267
|
+
}>>;
|
|
268
|
+
comment: z.ZodOptional<z.ZodString>;
|
|
269
|
+
est_tokens: z.ZodOptional<z.ZodNumber>;
|
|
270
|
+
}, z.core.$strip>>;
|
|
258
271
|
}, z.core.$strip>;
|
|
259
272
|
export declare const TaskDeleteSchema: z.ZodObject<{
|
|
260
273
|
repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
261
274
|
id: z.ZodString;
|
|
262
275
|
}, z.core.$strip>;
|
|
276
|
+
export declare const TaskActiveSchema: z.ZodObject<{
|
|
277
|
+
repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
278
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
279
|
+
pending: "pending";
|
|
280
|
+
in_progress: "in_progress";
|
|
281
|
+
}>>;
|
|
282
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
283
|
+
}, z.core.$strip>;
|
|
263
284
|
export declare const TOOL_DEFINITIONS: ({
|
|
264
285
|
name: string;
|
|
265
286
|
title: string;
|
|
@@ -355,6 +376,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
355
376
|
search?: undefined;
|
|
356
377
|
action?: undefined;
|
|
357
378
|
tasks?: undefined;
|
|
379
|
+
updates?: undefined;
|
|
358
380
|
};
|
|
359
381
|
required: string[];
|
|
360
382
|
};
|
|
@@ -406,9 +428,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
406
428
|
memories?: undefined;
|
|
407
429
|
tasks?: undefined;
|
|
408
430
|
archivedToMemory?: undefined;
|
|
409
|
-
|
|
431
|
+
schema?: undefined;
|
|
410
432
|
action?: undefined;
|
|
411
433
|
createdCount?: undefined;
|
|
434
|
+
updatedCount?: undefined;
|
|
412
435
|
taskCodes?: undefined;
|
|
413
436
|
};
|
|
414
437
|
required: string[];
|
|
@@ -510,6 +533,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
510
533
|
search?: undefined;
|
|
511
534
|
action?: undefined;
|
|
512
535
|
tasks?: undefined;
|
|
536
|
+
updates?: undefined;
|
|
513
537
|
};
|
|
514
538
|
required?: undefined;
|
|
515
539
|
};
|
|
@@ -559,9 +583,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
559
583
|
memories?: undefined;
|
|
560
584
|
tasks?: undefined;
|
|
561
585
|
archivedToMemory?: undefined;
|
|
562
|
-
|
|
586
|
+
schema?: undefined;
|
|
563
587
|
action?: undefined;
|
|
564
588
|
createdCount?: undefined;
|
|
589
|
+
updatedCount?: undefined;
|
|
565
590
|
taskCodes?: undefined;
|
|
566
591
|
};
|
|
567
592
|
required: string[];
|
|
@@ -692,6 +717,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
692
717
|
search?: undefined;
|
|
693
718
|
action?: undefined;
|
|
694
719
|
tasks?: undefined;
|
|
720
|
+
updates?: undefined;
|
|
695
721
|
};
|
|
696
722
|
required: string[];
|
|
697
723
|
};
|
|
@@ -743,9 +769,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
743
769
|
memories?: undefined;
|
|
744
770
|
tasks?: undefined;
|
|
745
771
|
archivedToMemory?: undefined;
|
|
746
|
-
|
|
772
|
+
schema?: undefined;
|
|
747
773
|
action?: undefined;
|
|
748
774
|
createdCount?: undefined;
|
|
775
|
+
updatedCount?: undefined;
|
|
749
776
|
taskCodes?: undefined;
|
|
750
777
|
};
|
|
751
778
|
required: string[];
|
|
@@ -824,6 +851,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
824
851
|
search?: undefined;
|
|
825
852
|
action?: undefined;
|
|
826
853
|
tasks?: undefined;
|
|
854
|
+
updates?: undefined;
|
|
827
855
|
};
|
|
828
856
|
required: string[];
|
|
829
857
|
};
|
|
@@ -867,9 +895,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
867
895
|
memories?: undefined;
|
|
868
896
|
tasks?: undefined;
|
|
869
897
|
archivedToMemory?: undefined;
|
|
870
|
-
|
|
898
|
+
schema?: undefined;
|
|
871
899
|
action?: undefined;
|
|
872
900
|
createdCount?: undefined;
|
|
901
|
+
updatedCount?: undefined;
|
|
873
902
|
taskCodes?: undefined;
|
|
874
903
|
};
|
|
875
904
|
required: string[];
|
|
@@ -987,6 +1016,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
987
1016
|
search?: undefined;
|
|
988
1017
|
action?: undefined;
|
|
989
1018
|
tasks?: undefined;
|
|
1019
|
+
updates?: undefined;
|
|
990
1020
|
};
|
|
991
1021
|
required: string[];
|
|
992
1022
|
};
|
|
@@ -1035,9 +1065,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1035
1065
|
memories?: undefined;
|
|
1036
1066
|
tasks?: undefined;
|
|
1037
1067
|
archivedToMemory?: undefined;
|
|
1038
|
-
|
|
1068
|
+
schema?: undefined;
|
|
1039
1069
|
action?: undefined;
|
|
1040
1070
|
createdCount?: undefined;
|
|
1071
|
+
updatedCount?: undefined;
|
|
1041
1072
|
taskCodes?: undefined;
|
|
1042
1073
|
};
|
|
1043
1074
|
required: string[];
|
|
@@ -1163,6 +1194,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1163
1194
|
search?: undefined;
|
|
1164
1195
|
action?: undefined;
|
|
1165
1196
|
tasks?: undefined;
|
|
1197
|
+
updates?: undefined;
|
|
1166
1198
|
};
|
|
1167
1199
|
required: string[];
|
|
1168
1200
|
};
|
|
@@ -1227,9 +1259,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1227
1259
|
memories?: undefined;
|
|
1228
1260
|
tasks?: undefined;
|
|
1229
1261
|
archivedToMemory?: undefined;
|
|
1230
|
-
|
|
1262
|
+
schema?: undefined;
|
|
1231
1263
|
action?: undefined;
|
|
1232
1264
|
createdCount?: undefined;
|
|
1265
|
+
updatedCount?: undefined;
|
|
1233
1266
|
taskCodes?: undefined;
|
|
1234
1267
|
};
|
|
1235
1268
|
required: string[];
|
|
@@ -1308,6 +1341,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1308
1341
|
search?: undefined;
|
|
1309
1342
|
action?: undefined;
|
|
1310
1343
|
tasks?: undefined;
|
|
1344
|
+
updates?: undefined;
|
|
1311
1345
|
};
|
|
1312
1346
|
required: string[];
|
|
1313
1347
|
};
|
|
@@ -1353,9 +1387,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1353
1387
|
memories?: undefined;
|
|
1354
1388
|
tasks?: undefined;
|
|
1355
1389
|
archivedToMemory?: undefined;
|
|
1356
|
-
|
|
1390
|
+
schema?: undefined;
|
|
1357
1391
|
action?: undefined;
|
|
1358
1392
|
createdCount?: undefined;
|
|
1393
|
+
updatedCount?: undefined;
|
|
1359
1394
|
taskCodes?: undefined;
|
|
1360
1395
|
};
|
|
1361
1396
|
required: string[];
|
|
@@ -1427,6 +1462,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1427
1462
|
search?: undefined;
|
|
1428
1463
|
action?: undefined;
|
|
1429
1464
|
tasks?: undefined;
|
|
1465
|
+
updates?: undefined;
|
|
1430
1466
|
};
|
|
1431
1467
|
required: string[];
|
|
1432
1468
|
};
|
|
@@ -1470,9 +1506,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1470
1506
|
memories?: undefined;
|
|
1471
1507
|
tasks?: undefined;
|
|
1472
1508
|
archivedToMemory?: undefined;
|
|
1473
|
-
|
|
1509
|
+
schema?: undefined;
|
|
1474
1510
|
action?: undefined;
|
|
1475
1511
|
createdCount?: undefined;
|
|
1512
|
+
updatedCount?: undefined;
|
|
1476
1513
|
taskCodes?: undefined;
|
|
1477
1514
|
};
|
|
1478
1515
|
required: string[];
|
|
@@ -1551,6 +1588,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1551
1588
|
search?: undefined;
|
|
1552
1589
|
action?: undefined;
|
|
1553
1590
|
tasks?: undefined;
|
|
1591
|
+
updates?: undefined;
|
|
1554
1592
|
};
|
|
1555
1593
|
required: string[];
|
|
1556
1594
|
};
|
|
@@ -1599,9 +1637,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1599
1637
|
memories?: undefined;
|
|
1600
1638
|
tasks?: undefined;
|
|
1601
1639
|
archivedToMemory?: undefined;
|
|
1602
|
-
|
|
1640
|
+
schema?: undefined;
|
|
1603
1641
|
action?: undefined;
|
|
1604
1642
|
createdCount?: undefined;
|
|
1643
|
+
updatedCount?: undefined;
|
|
1605
1644
|
taskCodes?: undefined;
|
|
1606
1645
|
};
|
|
1607
1646
|
required: string[];
|
|
@@ -1683,6 +1722,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1683
1722
|
search?: undefined;
|
|
1684
1723
|
action?: undefined;
|
|
1685
1724
|
tasks?: undefined;
|
|
1725
|
+
updates?: undefined;
|
|
1686
1726
|
};
|
|
1687
1727
|
required: string[];
|
|
1688
1728
|
};
|
|
@@ -1751,12 +1791,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1751
1791
|
priority: {
|
|
1752
1792
|
type: string;
|
|
1753
1793
|
};
|
|
1754
|
-
repo?: undefined;
|
|
1755
|
-
phase?: undefined;
|
|
1756
|
-
description?: undefined;
|
|
1757
1794
|
};
|
|
1758
1795
|
required: string[];
|
|
1759
1796
|
};
|
|
1797
|
+
properties?: undefined;
|
|
1798
|
+
required?: undefined;
|
|
1760
1799
|
};
|
|
1761
1800
|
objective?: undefined;
|
|
1762
1801
|
answer?: undefined;
|
|
@@ -1782,9 +1821,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1782
1821
|
deletedCount?: undefined;
|
|
1783
1822
|
ids?: undefined;
|
|
1784
1823
|
archivedToMemory?: undefined;
|
|
1785
|
-
|
|
1824
|
+
schema?: undefined;
|
|
1786
1825
|
action?: undefined;
|
|
1787
1826
|
createdCount?: undefined;
|
|
1827
|
+
updatedCount?: undefined;
|
|
1788
1828
|
taskCodes?: undefined;
|
|
1789
1829
|
};
|
|
1790
1830
|
required: string[];
|
|
@@ -1906,6 +1946,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1906
1946
|
search?: undefined;
|
|
1907
1947
|
action?: undefined;
|
|
1908
1948
|
tasks?: undefined;
|
|
1949
|
+
updates?: undefined;
|
|
1909
1950
|
};
|
|
1910
1951
|
required: string[];
|
|
1911
1952
|
};
|
|
@@ -1959,9 +2000,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1959
2000
|
memories?: undefined;
|
|
1960
2001
|
tasks?: undefined;
|
|
1961
2002
|
archivedToMemory?: undefined;
|
|
1962
|
-
|
|
2003
|
+
schema?: undefined;
|
|
1963
2004
|
action?: undefined;
|
|
1964
2005
|
createdCount?: undefined;
|
|
2006
|
+
updatedCount?: undefined;
|
|
1965
2007
|
taskCodes?: undefined;
|
|
1966
2008
|
};
|
|
1967
2009
|
required: string[];
|
|
@@ -2093,6 +2135,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2093
2135
|
search?: undefined;
|
|
2094
2136
|
action?: undefined;
|
|
2095
2137
|
tasks?: undefined;
|
|
2138
|
+
updates?: undefined;
|
|
2096
2139
|
};
|
|
2097
2140
|
required: string[];
|
|
2098
2141
|
};
|
|
@@ -2145,9 +2188,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2145
2188
|
offset?: undefined;
|
|
2146
2189
|
memories?: undefined;
|
|
2147
2190
|
tasks?: undefined;
|
|
2148
|
-
|
|
2191
|
+
schema?: undefined;
|
|
2149
2192
|
action?: undefined;
|
|
2150
2193
|
createdCount?: undefined;
|
|
2194
|
+
updatedCount?: undefined;
|
|
2151
2195
|
taskCodes?: undefined;
|
|
2152
2196
|
};
|
|
2153
2197
|
required: string[];
|
|
@@ -2222,6 +2266,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2222
2266
|
search?: undefined;
|
|
2223
2267
|
action?: undefined;
|
|
2224
2268
|
tasks?: undefined;
|
|
2269
|
+
updates?: undefined;
|
|
2225
2270
|
};
|
|
2226
2271
|
required: string[];
|
|
2227
2272
|
};
|
|
@@ -2265,9 +2310,158 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2265
2310
|
memories?: undefined;
|
|
2266
2311
|
tasks?: undefined;
|
|
2267
2312
|
archivedToMemory?: undefined;
|
|
2268
|
-
|
|
2313
|
+
schema?: undefined;
|
|
2314
|
+
action?: undefined;
|
|
2315
|
+
createdCount?: undefined;
|
|
2316
|
+
updatedCount?: undefined;
|
|
2317
|
+
taskCodes?: undefined;
|
|
2318
|
+
};
|
|
2319
|
+
required: string[];
|
|
2320
|
+
};
|
|
2321
|
+
execution?: undefined;
|
|
2322
|
+
} | {
|
|
2323
|
+
name: string;
|
|
2324
|
+
title: string;
|
|
2325
|
+
description: string;
|
|
2326
|
+
annotations: {
|
|
2327
|
+
readOnlyHint: boolean;
|
|
2328
|
+
idempotentHint: boolean;
|
|
2329
|
+
openWorldHint: boolean;
|
|
2330
|
+
destructiveHint?: undefined;
|
|
2331
|
+
};
|
|
2332
|
+
inputSchema: {
|
|
2333
|
+
type: string;
|
|
2334
|
+
properties: {
|
|
2335
|
+
repo: {
|
|
2336
|
+
type: string;
|
|
2337
|
+
description: string;
|
|
2338
|
+
};
|
|
2339
|
+
status: {
|
|
2340
|
+
type: string;
|
|
2341
|
+
enum: string[];
|
|
2342
|
+
description: string;
|
|
2343
|
+
default?: undefined;
|
|
2344
|
+
};
|
|
2345
|
+
limit: {
|
|
2346
|
+
type: string;
|
|
2347
|
+
minimum: number;
|
|
2348
|
+
maximum: number;
|
|
2349
|
+
default: number;
|
|
2350
|
+
description: string;
|
|
2351
|
+
};
|
|
2352
|
+
objective?: undefined;
|
|
2353
|
+
current_file_path?: undefined;
|
|
2354
|
+
include_summary?: undefined;
|
|
2355
|
+
include_tasks?: undefined;
|
|
2356
|
+
use_tools?: undefined;
|
|
2357
|
+
max_iterations?: undefined;
|
|
2358
|
+
max_tokens?: undefined;
|
|
2359
|
+
task_code?: undefined;
|
|
2360
|
+
phase?: undefined;
|
|
2361
|
+
title?: undefined;
|
|
2362
|
+
description?: undefined;
|
|
2363
|
+
priority?: undefined;
|
|
2364
|
+
agent?: undefined;
|
|
2365
|
+
role?: undefined;
|
|
2366
|
+
doc_path?: undefined;
|
|
2367
|
+
type?: undefined;
|
|
2368
|
+
content?: undefined;
|
|
2369
|
+
importance?: undefined;
|
|
2370
|
+
model?: undefined;
|
|
2371
|
+
scope?: undefined;
|
|
2372
|
+
tags?: undefined;
|
|
2373
|
+
metadata?: undefined;
|
|
2374
|
+
is_global?: undefined;
|
|
2375
|
+
ttlDays?: undefined;
|
|
2376
|
+
supersedes?: undefined;
|
|
2377
|
+
memory_id?: undefined;
|
|
2378
|
+
application_context?: undefined;
|
|
2379
|
+
id?: undefined;
|
|
2380
|
+
completed_at?: undefined;
|
|
2381
|
+
query?: undefined;
|
|
2382
|
+
prompt?: undefined;
|
|
2383
|
+
current_tags?: undefined;
|
|
2384
|
+
types?: undefined;
|
|
2385
|
+
minImportance?: undefined;
|
|
2386
|
+
includeRecap?: undefined;
|
|
2387
|
+
include_archived?: undefined;
|
|
2388
|
+
signals?: undefined;
|
|
2389
|
+
ids?: undefined;
|
|
2390
|
+
offset?: undefined;
|
|
2391
|
+
parent_id?: undefined;
|
|
2392
|
+
depends_on?: undefined;
|
|
2393
|
+
est_tokens?: undefined;
|
|
2394
|
+
comment?: undefined;
|
|
2395
|
+
search?: undefined;
|
|
2396
|
+
action?: undefined;
|
|
2397
|
+
tasks?: undefined;
|
|
2398
|
+
updates?: undefined;
|
|
2399
|
+
};
|
|
2400
|
+
required: string[];
|
|
2401
|
+
};
|
|
2402
|
+
outputSchema: {
|
|
2403
|
+
type: string;
|
|
2404
|
+
properties: {
|
|
2405
|
+
schema: {
|
|
2406
|
+
type: string;
|
|
2407
|
+
enum: string[];
|
|
2408
|
+
};
|
|
2409
|
+
tasks: {
|
|
2410
|
+
type: string;
|
|
2411
|
+
properties: {
|
|
2412
|
+
columns: {
|
|
2413
|
+
type: string;
|
|
2414
|
+
items: {
|
|
2415
|
+
type: string;
|
|
2416
|
+
};
|
|
2417
|
+
description: string;
|
|
2418
|
+
};
|
|
2419
|
+
rows: {
|
|
2420
|
+
type: string;
|
|
2421
|
+
items: {
|
|
2422
|
+
type: string;
|
|
2423
|
+
};
|
|
2424
|
+
description: string;
|
|
2425
|
+
};
|
|
2426
|
+
};
|
|
2427
|
+
required: string[];
|
|
2428
|
+
items?: undefined;
|
|
2429
|
+
};
|
|
2430
|
+
count: {
|
|
2431
|
+
type: string;
|
|
2432
|
+
};
|
|
2433
|
+
repo?: undefined;
|
|
2434
|
+
objective?: undefined;
|
|
2435
|
+
answer?: undefined;
|
|
2436
|
+
model?: undefined;
|
|
2437
|
+
stopReason?: undefined;
|
|
2438
|
+
iterations?: undefined;
|
|
2439
|
+
toolCalls?: undefined;
|
|
2440
|
+
task_code?: undefined;
|
|
2441
|
+
phase?: undefined;
|
|
2442
|
+
title?: undefined;
|
|
2443
|
+
status?: undefined;
|
|
2444
|
+
priority?: undefined;
|
|
2445
|
+
success?: undefined;
|
|
2446
|
+
id?: undefined;
|
|
2447
|
+
type?: undefined;
|
|
2448
|
+
error?: undefined;
|
|
2449
|
+
message?: undefined;
|
|
2450
|
+
updatedFields?: undefined;
|
|
2451
|
+
query?: undefined;
|
|
2452
|
+
recapContext?: undefined;
|
|
2453
|
+
results?: undefined;
|
|
2454
|
+
summary?: undefined;
|
|
2455
|
+
signalCount?: undefined;
|
|
2456
|
+
deletedCount?: undefined;
|
|
2457
|
+
ids?: undefined;
|
|
2458
|
+
total?: undefined;
|
|
2459
|
+
offset?: undefined;
|
|
2460
|
+
memories?: undefined;
|
|
2461
|
+
archivedToMemory?: undefined;
|
|
2269
2462
|
action?: undefined;
|
|
2270
2463
|
createdCount?: undefined;
|
|
2464
|
+
updatedCount?: undefined;
|
|
2271
2465
|
taskCodes?: undefined;
|
|
2272
2466
|
};
|
|
2273
2467
|
required: string[];
|
|
@@ -2360,57 +2554,45 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2360
2554
|
comment?: undefined;
|
|
2361
2555
|
action?: undefined;
|
|
2362
2556
|
tasks?: undefined;
|
|
2557
|
+
updates?: undefined;
|
|
2363
2558
|
};
|
|
2364
2559
|
required: string[];
|
|
2365
2560
|
};
|
|
2366
2561
|
outputSchema: {
|
|
2367
2562
|
type: string;
|
|
2368
2563
|
properties: {
|
|
2369
|
-
|
|
2370
|
-
type: string;
|
|
2371
|
-
};
|
|
2372
|
-
count: {
|
|
2373
|
-
type: string;
|
|
2374
|
-
};
|
|
2375
|
-
offset: {
|
|
2376
|
-
type: string;
|
|
2377
|
-
};
|
|
2378
|
-
limit: {
|
|
2564
|
+
schema: {
|
|
2379
2565
|
type: string;
|
|
2566
|
+
enum: string[];
|
|
2380
2567
|
};
|
|
2381
2568
|
tasks: {
|
|
2382
2569
|
type: string;
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
type: string;
|
|
2388
|
-
};
|
|
2389
|
-
repo: {
|
|
2390
|
-
type: string;
|
|
2391
|
-
};
|
|
2392
|
-
task_code: {
|
|
2393
|
-
type: string;
|
|
2394
|
-
};
|
|
2395
|
-
phase: {
|
|
2396
|
-
type: string;
|
|
2397
|
-
};
|
|
2398
|
-
title: {
|
|
2399
|
-
type: string;
|
|
2400
|
-
};
|
|
2401
|
-
description: {
|
|
2402
|
-
type: string;
|
|
2403
|
-
};
|
|
2404
|
-
status: {
|
|
2570
|
+
properties: {
|
|
2571
|
+
columns: {
|
|
2572
|
+
type: string;
|
|
2573
|
+
items: {
|
|
2405
2574
|
type: string;
|
|
2406
2575
|
};
|
|
2407
|
-
|
|
2576
|
+
description: string;
|
|
2577
|
+
};
|
|
2578
|
+
rows: {
|
|
2579
|
+
type: string;
|
|
2580
|
+
items: {
|
|
2408
2581
|
type: string;
|
|
2409
2582
|
};
|
|
2583
|
+
description: string;
|
|
2410
2584
|
};
|
|
2411
|
-
required: string[];
|
|
2412
2585
|
};
|
|
2586
|
+
required: string[];
|
|
2587
|
+
items?: undefined;
|
|
2413
2588
|
};
|
|
2589
|
+
count: {
|
|
2590
|
+
type: string;
|
|
2591
|
+
};
|
|
2592
|
+
offset: {
|
|
2593
|
+
type: string;
|
|
2594
|
+
};
|
|
2595
|
+
repo?: undefined;
|
|
2414
2596
|
objective?: undefined;
|
|
2415
2597
|
answer?: undefined;
|
|
2416
2598
|
model?: undefined;
|
|
@@ -2440,6 +2622,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2440
2622
|
archivedToMemory?: undefined;
|
|
2441
2623
|
action?: undefined;
|
|
2442
2624
|
createdCount?: undefined;
|
|
2625
|
+
updatedCount?: undefined;
|
|
2443
2626
|
taskCodes?: undefined;
|
|
2444
2627
|
};
|
|
2445
2628
|
required: string[];
|
|
@@ -2530,57 +2713,48 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2530
2713
|
search?: undefined;
|
|
2531
2714
|
action?: undefined;
|
|
2532
2715
|
tasks?: undefined;
|
|
2716
|
+
updates?: undefined;
|
|
2533
2717
|
};
|
|
2534
2718
|
required: string[];
|
|
2535
2719
|
};
|
|
2536
2720
|
outputSchema: {
|
|
2537
2721
|
type: string;
|
|
2538
2722
|
properties: {
|
|
2539
|
-
|
|
2540
|
-
type: string;
|
|
2541
|
-
};
|
|
2542
|
-
count: {
|
|
2543
|
-
type: string;
|
|
2544
|
-
};
|
|
2545
|
-
offset: {
|
|
2723
|
+
schema: {
|
|
2546
2724
|
type: string;
|
|
2725
|
+
enum: string[];
|
|
2547
2726
|
};
|
|
2548
|
-
|
|
2727
|
+
query: {
|
|
2549
2728
|
type: string;
|
|
2550
2729
|
};
|
|
2551
2730
|
tasks: {
|
|
2552
2731
|
type: string;
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
type: string;
|
|
2558
|
-
};
|
|
2559
|
-
repo: {
|
|
2560
|
-
type: string;
|
|
2561
|
-
};
|
|
2562
|
-
task_code: {
|
|
2563
|
-
type: string;
|
|
2564
|
-
};
|
|
2565
|
-
phase: {
|
|
2566
|
-
type: string;
|
|
2567
|
-
};
|
|
2568
|
-
title: {
|
|
2569
|
-
type: string;
|
|
2570
|
-
};
|
|
2571
|
-
description: {
|
|
2572
|
-
type: string;
|
|
2573
|
-
};
|
|
2574
|
-
status: {
|
|
2732
|
+
properties: {
|
|
2733
|
+
columns: {
|
|
2734
|
+
type: string;
|
|
2735
|
+
items: {
|
|
2575
2736
|
type: string;
|
|
2576
2737
|
};
|
|
2577
|
-
|
|
2738
|
+
description: string;
|
|
2739
|
+
};
|
|
2740
|
+
rows: {
|
|
2741
|
+
type: string;
|
|
2742
|
+
items: {
|
|
2578
2743
|
type: string;
|
|
2579
2744
|
};
|
|
2745
|
+
description: string;
|
|
2580
2746
|
};
|
|
2581
|
-
required: string[];
|
|
2582
2747
|
};
|
|
2748
|
+
required: string[];
|
|
2749
|
+
items?: undefined;
|
|
2750
|
+
};
|
|
2751
|
+
count: {
|
|
2752
|
+
type: string;
|
|
2753
|
+
};
|
|
2754
|
+
offset: {
|
|
2755
|
+
type: string;
|
|
2583
2756
|
};
|
|
2757
|
+
repo?: undefined;
|
|
2584
2758
|
objective?: undefined;
|
|
2585
2759
|
answer?: undefined;
|
|
2586
2760
|
model?: undefined;
|
|
@@ -2598,7 +2772,6 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2598
2772
|
error?: undefined;
|
|
2599
2773
|
message?: undefined;
|
|
2600
2774
|
updatedFields?: undefined;
|
|
2601
|
-
query?: undefined;
|
|
2602
2775
|
recapContext?: undefined;
|
|
2603
2776
|
results?: undefined;
|
|
2604
2777
|
summary?: undefined;
|
|
@@ -2610,6 +2783,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2610
2783
|
archivedToMemory?: undefined;
|
|
2611
2784
|
action?: undefined;
|
|
2612
2785
|
createdCount?: undefined;
|
|
2786
|
+
updatedCount?: undefined;
|
|
2613
2787
|
taskCodes?: undefined;
|
|
2614
2788
|
};
|
|
2615
2789
|
required: string[];
|
|
@@ -2710,6 +2884,22 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2710
2884
|
minItems: number;
|
|
2711
2885
|
description: string;
|
|
2712
2886
|
};
|
|
2887
|
+
updates: {
|
|
2888
|
+
type: string;
|
|
2889
|
+
properties: {
|
|
2890
|
+
status: {
|
|
2891
|
+
type: string;
|
|
2892
|
+
enum: string[];
|
|
2893
|
+
};
|
|
2894
|
+
comment: {
|
|
2895
|
+
type: string;
|
|
2896
|
+
};
|
|
2897
|
+
est_tokens: {
|
|
2898
|
+
type: string;
|
|
2899
|
+
minimum: number;
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2713
2903
|
objective?: undefined;
|
|
2714
2904
|
current_file_path?: undefined;
|
|
2715
2905
|
include_summary?: undefined;
|
|
@@ -2776,6 +2966,9 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2776
2966
|
deletedCount: {
|
|
2777
2967
|
type: string;
|
|
2778
2968
|
};
|
|
2969
|
+
updatedCount: {
|
|
2970
|
+
type: string;
|
|
2971
|
+
};
|
|
2779
2972
|
taskCodes: {
|
|
2780
2973
|
type: string;
|
|
2781
2974
|
items: {
|
|
@@ -2815,7 +3008,7 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2815
3008
|
memories?: undefined;
|
|
2816
3009
|
tasks?: undefined;
|
|
2817
3010
|
archivedToMemory?: undefined;
|
|
2818
|
-
|
|
3011
|
+
schema?: undefined;
|
|
2819
3012
|
};
|
|
2820
3013
|
required: string[];
|
|
2821
3014
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/mcp/tools/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,iBAAiB;;;;;iBAK5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;EAA6H,CAAC;AAG3J,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAc5B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiB9B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAY7B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;iBAIlC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;iBAI5B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;iBAGjC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;iBAGhC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;iBASjC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;EAAoF,CAAC;AAClH,eAAO,MAAM,kBAAkB,aAA2B,CAAC;AAE3D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;iBAgB3B,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;iBAEtC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsB5B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;iBAOzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;iBAM3B,CAAC;AAEH,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/mcp/tools/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,iBAAiB;;;;;iBAK5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;EAA6H,CAAC;AAG3J,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAc5B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiB9B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAY7B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;iBAIlC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;iBAI5B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;iBAGjC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;iBAGhC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;iBASjC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;EAAoF,CAAC;AAClH,eAAO,MAAM,kBAAkB,aAA2B,CAAC;AAE3D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;iBAgB3B,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;iBAEtC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsB5B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;iBAOzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;iBAM3B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA4BhC,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;iBAI3B,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAi2B5B,CAAC"}
|