@vheins/local-memory-mcp 0.5.21 → 0.5.23
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/e2e.test.js +13 -9
- package/dist/mcp/tests/e2e.test.js.map +1 -1
- package/dist/mcp/tests/router.test.js +4 -5
- 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 +4 -4
- 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/tests/v2-features.test.js +2 -2
- package/dist/mcp/tests/v2-features.test.js.map +1 -1
- package/dist/mcp/tools/memory.recap.d.ts.map +1 -1
- package/dist/mcp/tools/memory.recap.js +48 -80
- package/dist/mcp/tools/memory.recap.js.map +1 -1
- package/dist/mcp/tools/memory.search.d.ts.map +1 -1
- package/dist/mcp/tools/memory.search.js +58 -40
- package/dist/mcp/tools/memory.search.js.map +1 -1
- package/dist/mcp/tools/schemas.d.ts +377 -234
- package/dist/mcp/tools/schemas.d.ts.map +1 -1
- package/dist/mcp/tools/schemas.js +157 -93
- package/dist/mcp/tools/schemas.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 +79 -17
- 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
|
@@ -87,6 +87,7 @@ export declare const MemorySearchSchema: z.ZodObject<{
|
|
|
87
87
|
}>>>;
|
|
88
88
|
minImportance: z.ZodOptional<z.ZodNumber>;
|
|
89
89
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
90
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
90
91
|
includeRecap: z.ZodDefault<z.ZodBoolean>;
|
|
91
92
|
current_file_path: z.ZodOptional<z.ZodString>;
|
|
92
93
|
include_archived: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -273,6 +274,14 @@ export declare const TaskDeleteSchema: z.ZodObject<{
|
|
|
273
274
|
repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
274
275
|
id: z.ZodString;
|
|
275
276
|
}, z.core.$strip>;
|
|
277
|
+
export declare const TaskActiveSchema: z.ZodObject<{
|
|
278
|
+
repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
279
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
280
|
+
pending: "pending";
|
|
281
|
+
in_progress: "in_progress";
|
|
282
|
+
}>>;
|
|
283
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
284
|
+
}, z.core.$strip>;
|
|
276
285
|
export declare const TOOL_DEFINITIONS: ({
|
|
277
286
|
name: string;
|
|
278
287
|
title: string;
|
|
@@ -356,11 +365,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
356
365
|
types?: undefined;
|
|
357
366
|
minImportance?: undefined;
|
|
358
367
|
limit?: undefined;
|
|
368
|
+
offset?: undefined;
|
|
359
369
|
includeRecap?: undefined;
|
|
360
370
|
include_archived?: undefined;
|
|
361
371
|
signals?: undefined;
|
|
362
372
|
ids?: undefined;
|
|
363
|
-
offset?: undefined;
|
|
364
373
|
parent_id?: undefined;
|
|
365
374
|
depends_on?: undefined;
|
|
366
375
|
est_tokens?: undefined;
|
|
@@ -407,20 +416,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
407
416
|
error?: undefined;
|
|
408
417
|
message?: undefined;
|
|
409
418
|
updatedFields?: undefined;
|
|
419
|
+
schema?: undefined;
|
|
410
420
|
query?: undefined;
|
|
411
|
-
|
|
421
|
+
count?: undefined;
|
|
422
|
+
total?: undefined;
|
|
423
|
+
offset?: undefined;
|
|
424
|
+
limit?: undefined;
|
|
412
425
|
results?: undefined;
|
|
413
426
|
summary?: undefined;
|
|
414
427
|
signalCount?: undefined;
|
|
415
428
|
deletedCount?: undefined;
|
|
416
429
|
ids?: undefined;
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
offset?: undefined;
|
|
420
|
-
memories?: undefined;
|
|
421
|
-
tasks?: undefined;
|
|
430
|
+
stats?: undefined;
|
|
431
|
+
top?: undefined;
|
|
422
432
|
archivedToMemory?: undefined;
|
|
423
|
-
|
|
433
|
+
tasks?: undefined;
|
|
424
434
|
action?: undefined;
|
|
425
435
|
createdCount?: undefined;
|
|
426
436
|
updatedCount?: undefined;
|
|
@@ -513,11 +523,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
513
523
|
types?: undefined;
|
|
514
524
|
minImportance?: undefined;
|
|
515
525
|
limit?: undefined;
|
|
526
|
+
offset?: undefined;
|
|
516
527
|
includeRecap?: undefined;
|
|
517
528
|
include_archived?: undefined;
|
|
518
529
|
signals?: undefined;
|
|
519
530
|
ids?: undefined;
|
|
520
|
-
offset?: undefined;
|
|
521
531
|
parent_id?: undefined;
|
|
522
532
|
depends_on?: undefined;
|
|
523
533
|
est_tokens?: undefined;
|
|
@@ -562,20 +572,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
562
572
|
error?: undefined;
|
|
563
573
|
message?: undefined;
|
|
564
574
|
updatedFields?: undefined;
|
|
575
|
+
schema?: undefined;
|
|
565
576
|
query?: undefined;
|
|
566
|
-
|
|
577
|
+
count?: undefined;
|
|
578
|
+
total?: undefined;
|
|
579
|
+
offset?: undefined;
|
|
580
|
+
limit?: undefined;
|
|
567
581
|
results?: undefined;
|
|
568
582
|
summary?: undefined;
|
|
569
583
|
signalCount?: undefined;
|
|
570
584
|
deletedCount?: undefined;
|
|
571
585
|
ids?: undefined;
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
offset?: undefined;
|
|
575
|
-
memories?: undefined;
|
|
576
|
-
tasks?: undefined;
|
|
586
|
+
stats?: undefined;
|
|
587
|
+
top?: undefined;
|
|
577
588
|
archivedToMemory?: undefined;
|
|
578
|
-
|
|
589
|
+
tasks?: undefined;
|
|
579
590
|
action?: undefined;
|
|
580
591
|
createdCount?: undefined;
|
|
581
592
|
updatedCount?: undefined;
|
|
@@ -697,11 +708,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
697
708
|
types?: undefined;
|
|
698
709
|
minImportance?: undefined;
|
|
699
710
|
limit?: undefined;
|
|
711
|
+
offset?: undefined;
|
|
700
712
|
includeRecap?: undefined;
|
|
701
713
|
include_archived?: undefined;
|
|
702
714
|
signals?: undefined;
|
|
703
715
|
ids?: undefined;
|
|
704
|
-
offset?: undefined;
|
|
705
716
|
parent_id?: undefined;
|
|
706
717
|
depends_on?: undefined;
|
|
707
718
|
est_tokens?: undefined;
|
|
@@ -748,20 +759,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
748
759
|
status?: undefined;
|
|
749
760
|
priority?: undefined;
|
|
750
761
|
updatedFields?: undefined;
|
|
762
|
+
schema?: undefined;
|
|
751
763
|
query?: undefined;
|
|
752
|
-
|
|
764
|
+
count?: undefined;
|
|
765
|
+
total?: undefined;
|
|
766
|
+
offset?: undefined;
|
|
767
|
+
limit?: undefined;
|
|
753
768
|
results?: undefined;
|
|
754
769
|
summary?: undefined;
|
|
755
770
|
signalCount?: undefined;
|
|
756
771
|
deletedCount?: undefined;
|
|
757
772
|
ids?: undefined;
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
offset?: undefined;
|
|
761
|
-
memories?: undefined;
|
|
762
|
-
tasks?: undefined;
|
|
773
|
+
stats?: undefined;
|
|
774
|
+
top?: undefined;
|
|
763
775
|
archivedToMemory?: undefined;
|
|
764
|
-
|
|
776
|
+
tasks?: undefined;
|
|
765
777
|
action?: undefined;
|
|
766
778
|
createdCount?: undefined;
|
|
767
779
|
updatedCount?: undefined;
|
|
@@ -831,11 +843,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
831
843
|
types?: undefined;
|
|
832
844
|
minImportance?: undefined;
|
|
833
845
|
limit?: undefined;
|
|
846
|
+
offset?: undefined;
|
|
834
847
|
includeRecap?: undefined;
|
|
835
848
|
include_archived?: undefined;
|
|
836
849
|
signals?: undefined;
|
|
837
850
|
ids?: undefined;
|
|
838
|
-
offset?: undefined;
|
|
839
851
|
parent_id?: undefined;
|
|
840
852
|
depends_on?: undefined;
|
|
841
853
|
est_tokens?: undefined;
|
|
@@ -874,20 +886,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
874
886
|
error?: undefined;
|
|
875
887
|
message?: undefined;
|
|
876
888
|
updatedFields?: undefined;
|
|
889
|
+
schema?: undefined;
|
|
877
890
|
query?: undefined;
|
|
878
|
-
|
|
891
|
+
count?: undefined;
|
|
892
|
+
total?: undefined;
|
|
893
|
+
offset?: undefined;
|
|
894
|
+
limit?: undefined;
|
|
879
895
|
results?: undefined;
|
|
880
896
|
summary?: undefined;
|
|
881
897
|
signalCount?: undefined;
|
|
882
898
|
deletedCount?: undefined;
|
|
883
899
|
ids?: undefined;
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
offset?: undefined;
|
|
887
|
-
memories?: undefined;
|
|
888
|
-
tasks?: undefined;
|
|
900
|
+
stats?: undefined;
|
|
901
|
+
top?: undefined;
|
|
889
902
|
archivedToMemory?: undefined;
|
|
890
|
-
|
|
903
|
+
tasks?: undefined;
|
|
891
904
|
action?: undefined;
|
|
892
905
|
createdCount?: undefined;
|
|
893
906
|
updatedCount?: undefined;
|
|
@@ -996,11 +1009,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
996
1009
|
types?: undefined;
|
|
997
1010
|
minImportance?: undefined;
|
|
998
1011
|
limit?: undefined;
|
|
1012
|
+
offset?: undefined;
|
|
999
1013
|
includeRecap?: undefined;
|
|
1000
1014
|
include_archived?: undefined;
|
|
1001
1015
|
signals?: undefined;
|
|
1002
1016
|
ids?: undefined;
|
|
1003
|
-
offset?: undefined;
|
|
1004
1017
|
parent_id?: undefined;
|
|
1005
1018
|
depends_on?: undefined;
|
|
1006
1019
|
est_tokens?: undefined;
|
|
@@ -1044,20 +1057,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1044
1057
|
type?: undefined;
|
|
1045
1058
|
error?: undefined;
|
|
1046
1059
|
message?: undefined;
|
|
1060
|
+
schema?: undefined;
|
|
1047
1061
|
query?: undefined;
|
|
1048
|
-
|
|
1062
|
+
count?: undefined;
|
|
1063
|
+
total?: undefined;
|
|
1064
|
+
offset?: undefined;
|
|
1065
|
+
limit?: undefined;
|
|
1049
1066
|
results?: undefined;
|
|
1050
1067
|
summary?: undefined;
|
|
1051
1068
|
signalCount?: undefined;
|
|
1052
1069
|
deletedCount?: undefined;
|
|
1053
1070
|
ids?: undefined;
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
offset?: undefined;
|
|
1057
|
-
memories?: undefined;
|
|
1058
|
-
tasks?: undefined;
|
|
1071
|
+
stats?: undefined;
|
|
1072
|
+
top?: undefined;
|
|
1059
1073
|
archivedToMemory?: undefined;
|
|
1060
|
-
|
|
1074
|
+
tasks?: undefined;
|
|
1061
1075
|
action?: undefined;
|
|
1062
1076
|
createdCount?: undefined;
|
|
1063
1077
|
updatedCount?: undefined;
|
|
@@ -1117,6 +1131,12 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1117
1131
|
default: number;
|
|
1118
1132
|
description?: undefined;
|
|
1119
1133
|
};
|
|
1134
|
+
offset: {
|
|
1135
|
+
type: string;
|
|
1136
|
+
minimum: number;
|
|
1137
|
+
default: number;
|
|
1138
|
+
description?: undefined;
|
|
1139
|
+
};
|
|
1120
1140
|
includeRecap: {
|
|
1121
1141
|
type: string;
|
|
1122
1142
|
default: boolean;
|
|
@@ -1178,7 +1198,6 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1178
1198
|
completed_at?: undefined;
|
|
1179
1199
|
signals?: undefined;
|
|
1180
1200
|
ids?: undefined;
|
|
1181
|
-
offset?: undefined;
|
|
1182
1201
|
parent_id?: undefined;
|
|
1183
1202
|
depends_on?: undefined;
|
|
1184
1203
|
est_tokens?: undefined;
|
|
@@ -1193,35 +1212,46 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1193
1212
|
outputSchema: {
|
|
1194
1213
|
type: string;
|
|
1195
1214
|
properties: {
|
|
1215
|
+
schema: {
|
|
1216
|
+
type: string;
|
|
1217
|
+
enum: string[];
|
|
1218
|
+
};
|
|
1196
1219
|
query: {
|
|
1197
1220
|
type: string;
|
|
1198
1221
|
};
|
|
1199
|
-
|
|
1222
|
+
count: {
|
|
1223
|
+
type: string;
|
|
1224
|
+
description: string;
|
|
1225
|
+
};
|
|
1226
|
+
total: {
|
|
1227
|
+
type: string;
|
|
1228
|
+
description: string;
|
|
1229
|
+
};
|
|
1230
|
+
offset: {
|
|
1231
|
+
type: string;
|
|
1232
|
+
};
|
|
1233
|
+
limit: {
|
|
1200
1234
|
type: string;
|
|
1201
1235
|
};
|
|
1202
1236
|
results: {
|
|
1203
1237
|
type: string;
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
type: string;
|
|
1209
|
-
};
|
|
1210
|
-
type: {
|
|
1211
|
-
type: string;
|
|
1212
|
-
};
|
|
1213
|
-
title: {
|
|
1214
|
-
type: string;
|
|
1215
|
-
};
|
|
1216
|
-
content: {
|
|
1238
|
+
properties: {
|
|
1239
|
+
columns: {
|
|
1240
|
+
type: string;
|
|
1241
|
+
items: {
|
|
1217
1242
|
type: string;
|
|
1218
1243
|
};
|
|
1219
|
-
|
|
1244
|
+
description: string;
|
|
1245
|
+
};
|
|
1246
|
+
rows: {
|
|
1247
|
+
type: string;
|
|
1248
|
+
items: {
|
|
1220
1249
|
type: string;
|
|
1221
1250
|
};
|
|
1251
|
+
description: string;
|
|
1222
1252
|
};
|
|
1223
|
-
required: string[];
|
|
1224
1253
|
};
|
|
1254
|
+
required: string[];
|
|
1225
1255
|
};
|
|
1226
1256
|
repo?: undefined;
|
|
1227
1257
|
objective?: undefined;
|
|
@@ -1245,13 +1275,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1245
1275
|
signalCount?: undefined;
|
|
1246
1276
|
deletedCount?: undefined;
|
|
1247
1277
|
ids?: undefined;
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
offset?: undefined;
|
|
1251
|
-
memories?: undefined;
|
|
1252
|
-
tasks?: undefined;
|
|
1278
|
+
stats?: undefined;
|
|
1279
|
+
top?: undefined;
|
|
1253
1280
|
archivedToMemory?: undefined;
|
|
1254
|
-
|
|
1281
|
+
tasks?: undefined;
|
|
1255
1282
|
action?: undefined;
|
|
1256
1283
|
createdCount?: undefined;
|
|
1257
1284
|
updatedCount?: undefined;
|
|
@@ -1322,10 +1349,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1322
1349
|
types?: undefined;
|
|
1323
1350
|
minImportance?: undefined;
|
|
1324
1351
|
limit?: undefined;
|
|
1352
|
+
offset?: undefined;
|
|
1325
1353
|
includeRecap?: undefined;
|
|
1326
1354
|
include_archived?: undefined;
|
|
1327
1355
|
ids?: undefined;
|
|
1328
|
-
offset?: undefined;
|
|
1329
1356
|
parent_id?: undefined;
|
|
1330
1357
|
depends_on?: undefined;
|
|
1331
1358
|
est_tokens?: undefined;
|
|
@@ -1368,18 +1395,19 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1368
1395
|
error?: undefined;
|
|
1369
1396
|
message?: undefined;
|
|
1370
1397
|
updatedFields?: undefined;
|
|
1398
|
+
schema?: undefined;
|
|
1371
1399
|
query?: undefined;
|
|
1372
|
-
recapContext?: undefined;
|
|
1373
|
-
results?: undefined;
|
|
1374
|
-
deletedCount?: undefined;
|
|
1375
|
-
ids?: undefined;
|
|
1376
1400
|
count?: undefined;
|
|
1377
1401
|
total?: undefined;
|
|
1378
1402
|
offset?: undefined;
|
|
1379
|
-
memories?: undefined;
|
|
1380
|
-
tasks?: undefined;
|
|
1381
|
-
archivedToMemory?: undefined;
|
|
1382
1403
|
limit?: undefined;
|
|
1404
|
+
results?: undefined;
|
|
1405
|
+
deletedCount?: undefined;
|
|
1406
|
+
ids?: undefined;
|
|
1407
|
+
stats?: undefined;
|
|
1408
|
+
top?: undefined;
|
|
1409
|
+
archivedToMemory?: undefined;
|
|
1410
|
+
tasks?: undefined;
|
|
1383
1411
|
action?: undefined;
|
|
1384
1412
|
createdCount?: undefined;
|
|
1385
1413
|
updatedCount?: undefined;
|
|
@@ -1442,11 +1470,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1442
1470
|
types?: undefined;
|
|
1443
1471
|
minImportance?: undefined;
|
|
1444
1472
|
limit?: undefined;
|
|
1473
|
+
offset?: undefined;
|
|
1445
1474
|
includeRecap?: undefined;
|
|
1446
1475
|
include_archived?: undefined;
|
|
1447
1476
|
signals?: undefined;
|
|
1448
1477
|
ids?: undefined;
|
|
1449
|
-
offset?: undefined;
|
|
1450
1478
|
parent_id?: undefined;
|
|
1451
1479
|
depends_on?: undefined;
|
|
1452
1480
|
est_tokens?: undefined;
|
|
@@ -1485,20 +1513,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1485
1513
|
error?: undefined;
|
|
1486
1514
|
message?: undefined;
|
|
1487
1515
|
updatedFields?: undefined;
|
|
1516
|
+
schema?: undefined;
|
|
1488
1517
|
query?: undefined;
|
|
1489
|
-
|
|
1518
|
+
count?: undefined;
|
|
1519
|
+
total?: undefined;
|
|
1520
|
+
offset?: undefined;
|
|
1521
|
+
limit?: undefined;
|
|
1490
1522
|
results?: undefined;
|
|
1491
1523
|
summary?: undefined;
|
|
1492
1524
|
signalCount?: undefined;
|
|
1493
1525
|
deletedCount?: undefined;
|
|
1494
1526
|
ids?: undefined;
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
offset?: undefined;
|
|
1498
|
-
memories?: undefined;
|
|
1499
|
-
tasks?: undefined;
|
|
1527
|
+
stats?: undefined;
|
|
1528
|
+
top?: undefined;
|
|
1500
1529
|
archivedToMemory?: undefined;
|
|
1501
|
-
|
|
1530
|
+
tasks?: undefined;
|
|
1502
1531
|
action?: undefined;
|
|
1503
1532
|
createdCount?: undefined;
|
|
1504
1533
|
updatedCount?: undefined;
|
|
@@ -1569,10 +1598,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1569
1598
|
types?: undefined;
|
|
1570
1599
|
minImportance?: undefined;
|
|
1571
1600
|
limit?: undefined;
|
|
1601
|
+
offset?: undefined;
|
|
1572
1602
|
includeRecap?: undefined;
|
|
1573
1603
|
include_archived?: undefined;
|
|
1574
1604
|
signals?: undefined;
|
|
1575
|
-
offset?: undefined;
|
|
1576
1605
|
parent_id?: undefined;
|
|
1577
1606
|
depends_on?: undefined;
|
|
1578
1607
|
est_tokens?: undefined;
|
|
@@ -1618,18 +1647,19 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1618
1647
|
error?: undefined;
|
|
1619
1648
|
message?: undefined;
|
|
1620
1649
|
updatedFields?: undefined;
|
|
1650
|
+
schema?: undefined;
|
|
1621
1651
|
query?: undefined;
|
|
1622
|
-
recapContext?: undefined;
|
|
1623
|
-
results?: undefined;
|
|
1624
|
-
summary?: undefined;
|
|
1625
|
-
signalCount?: undefined;
|
|
1626
1652
|
count?: undefined;
|
|
1627
1653
|
total?: undefined;
|
|
1628
1654
|
offset?: undefined;
|
|
1629
|
-
memories?: undefined;
|
|
1630
|
-
tasks?: undefined;
|
|
1631
|
-
archivedToMemory?: undefined;
|
|
1632
1655
|
limit?: undefined;
|
|
1656
|
+
results?: undefined;
|
|
1657
|
+
summary?: undefined;
|
|
1658
|
+
signalCount?: undefined;
|
|
1659
|
+
stats?: undefined;
|
|
1660
|
+
top?: undefined;
|
|
1661
|
+
archivedToMemory?: undefined;
|
|
1662
|
+
tasks?: undefined;
|
|
1633
1663
|
action?: undefined;
|
|
1634
1664
|
createdCount?: undefined;
|
|
1635
1665
|
updatedCount?: undefined;
|
|
@@ -1721,74 +1751,56 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1721
1751
|
outputSchema: {
|
|
1722
1752
|
type: string;
|
|
1723
1753
|
properties: {
|
|
1754
|
+
schema: {
|
|
1755
|
+
type: string;
|
|
1756
|
+
enum: string[];
|
|
1757
|
+
};
|
|
1724
1758
|
repo: {
|
|
1725
1759
|
type: string;
|
|
1726
1760
|
};
|
|
1727
1761
|
count: {
|
|
1728
1762
|
type: string;
|
|
1763
|
+
description: string;
|
|
1729
1764
|
};
|
|
1730
1765
|
total: {
|
|
1731
1766
|
type: string;
|
|
1767
|
+
description: string;
|
|
1732
1768
|
};
|
|
1733
1769
|
offset: {
|
|
1734
1770
|
type: string;
|
|
1735
1771
|
};
|
|
1736
|
-
|
|
1772
|
+
limit: {
|
|
1737
1773
|
type: string;
|
|
1738
1774
|
};
|
|
1739
|
-
|
|
1775
|
+
stats: {
|
|
1740
1776
|
type: string;
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
type: string;
|
|
1746
|
-
};
|
|
1747
|
-
id: {
|
|
1748
|
-
type: string;
|
|
1749
|
-
};
|
|
1750
|
-
type: {
|
|
1751
|
-
type: string;
|
|
1752
|
-
};
|
|
1753
|
-
importance: {
|
|
1754
|
-
type: string;
|
|
1755
|
-
};
|
|
1756
|
-
preview: {
|
|
1757
|
-
type: string;
|
|
1758
|
-
};
|
|
1759
|
-
created_at: {
|
|
1760
|
-
type: string;
|
|
1761
|
-
};
|
|
1777
|
+
properties: {
|
|
1778
|
+
by_type: {
|
|
1779
|
+
type: string;
|
|
1780
|
+
description: string;
|
|
1762
1781
|
};
|
|
1763
|
-
required: string[];
|
|
1764
1782
|
};
|
|
1783
|
+
required: string[];
|
|
1765
1784
|
};
|
|
1766
|
-
|
|
1785
|
+
top: {
|
|
1767
1786
|
type: string;
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
type: string;
|
|
1773
|
-
};
|
|
1774
|
-
task_code: {
|
|
1775
|
-
type: string;
|
|
1776
|
-
};
|
|
1777
|
-
title: {
|
|
1778
|
-
type: string;
|
|
1779
|
-
};
|
|
1780
|
-
status: {
|
|
1787
|
+
properties: {
|
|
1788
|
+
columns: {
|
|
1789
|
+
type: string;
|
|
1790
|
+
items: {
|
|
1781
1791
|
type: string;
|
|
1782
1792
|
};
|
|
1783
|
-
|
|
1793
|
+
description: string;
|
|
1794
|
+
};
|
|
1795
|
+
rows: {
|
|
1796
|
+
type: string;
|
|
1797
|
+
items: {
|
|
1784
1798
|
type: string;
|
|
1785
1799
|
};
|
|
1786
|
-
|
|
1787
|
-
phase?: undefined;
|
|
1788
|
-
description?: undefined;
|
|
1800
|
+
description: string;
|
|
1789
1801
|
};
|
|
1790
|
-
required: string[];
|
|
1791
1802
|
};
|
|
1803
|
+
required: string[];
|
|
1792
1804
|
};
|
|
1793
1805
|
objective?: undefined;
|
|
1794
1806
|
answer?: undefined;
|
|
@@ -1808,13 +1820,13 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1808
1820
|
message?: undefined;
|
|
1809
1821
|
updatedFields?: undefined;
|
|
1810
1822
|
query?: undefined;
|
|
1811
|
-
recapContext?: undefined;
|
|
1812
1823
|
results?: undefined;
|
|
1824
|
+
summary?: undefined;
|
|
1813
1825
|
signalCount?: undefined;
|
|
1814
1826
|
deletedCount?: undefined;
|
|
1815
1827
|
ids?: undefined;
|
|
1816
1828
|
archivedToMemory?: undefined;
|
|
1817
|
-
|
|
1829
|
+
tasks?: undefined;
|
|
1818
1830
|
action?: undefined;
|
|
1819
1831
|
createdCount?: undefined;
|
|
1820
1832
|
updatedCount?: undefined;
|
|
@@ -1930,11 +1942,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1930
1942
|
types?: undefined;
|
|
1931
1943
|
minImportance?: undefined;
|
|
1932
1944
|
limit?: undefined;
|
|
1945
|
+
offset?: undefined;
|
|
1933
1946
|
includeRecap?: undefined;
|
|
1934
1947
|
include_archived?: undefined;
|
|
1935
1948
|
signals?: undefined;
|
|
1936
1949
|
ids?: undefined;
|
|
1937
|
-
offset?: undefined;
|
|
1938
1950
|
comment?: undefined;
|
|
1939
1951
|
search?: undefined;
|
|
1940
1952
|
action?: undefined;
|
|
@@ -1980,20 +1992,21 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
1980
1992
|
error?: undefined;
|
|
1981
1993
|
message?: undefined;
|
|
1982
1994
|
updatedFields?: undefined;
|
|
1995
|
+
schema?: undefined;
|
|
1983
1996
|
query?: undefined;
|
|
1984
|
-
|
|
1997
|
+
count?: undefined;
|
|
1998
|
+
total?: undefined;
|
|
1999
|
+
offset?: undefined;
|
|
2000
|
+
limit?: undefined;
|
|
1985
2001
|
results?: undefined;
|
|
1986
2002
|
summary?: undefined;
|
|
1987
2003
|
signalCount?: undefined;
|
|
1988
2004
|
deletedCount?: undefined;
|
|
1989
2005
|
ids?: undefined;
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
offset?: undefined;
|
|
1993
|
-
memories?: undefined;
|
|
1994
|
-
tasks?: undefined;
|
|
2006
|
+
stats?: undefined;
|
|
2007
|
+
top?: undefined;
|
|
1995
2008
|
archivedToMemory?: undefined;
|
|
1996
|
-
|
|
2009
|
+
tasks?: undefined;
|
|
1997
2010
|
action?: undefined;
|
|
1998
2011
|
createdCount?: undefined;
|
|
1999
2012
|
updatedCount?: undefined;
|
|
@@ -2120,11 +2133,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2120
2133
|
types?: undefined;
|
|
2121
2134
|
minImportance?: undefined;
|
|
2122
2135
|
limit?: undefined;
|
|
2136
|
+
offset?: undefined;
|
|
2123
2137
|
includeRecap?: undefined;
|
|
2124
2138
|
include_archived?: undefined;
|
|
2125
2139
|
signals?: undefined;
|
|
2126
2140
|
ids?: undefined;
|
|
2127
|
-
offset?: undefined;
|
|
2128
2141
|
search?: undefined;
|
|
2129
2142
|
action?: undefined;
|
|
2130
2143
|
tasks?: undefined;
|
|
@@ -2169,19 +2182,20 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2169
2182
|
type?: undefined;
|
|
2170
2183
|
error?: undefined;
|
|
2171
2184
|
message?: undefined;
|
|
2185
|
+
schema?: undefined;
|
|
2172
2186
|
query?: undefined;
|
|
2173
|
-
|
|
2187
|
+
count?: undefined;
|
|
2188
|
+
total?: undefined;
|
|
2189
|
+
offset?: undefined;
|
|
2190
|
+
limit?: undefined;
|
|
2174
2191
|
results?: undefined;
|
|
2175
2192
|
summary?: undefined;
|
|
2176
2193
|
signalCount?: undefined;
|
|
2177
2194
|
deletedCount?: undefined;
|
|
2178
2195
|
ids?: undefined;
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
offset?: undefined;
|
|
2182
|
-
memories?: undefined;
|
|
2196
|
+
stats?: undefined;
|
|
2197
|
+
top?: undefined;
|
|
2183
2198
|
tasks?: undefined;
|
|
2184
|
-
limit?: undefined;
|
|
2185
2199
|
action?: undefined;
|
|
2186
2200
|
createdCount?: undefined;
|
|
2187
2201
|
updatedCount?: undefined;
|
|
@@ -2247,11 +2261,11 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2247
2261
|
types?: undefined;
|
|
2248
2262
|
minImportance?: undefined;
|
|
2249
2263
|
limit?: undefined;
|
|
2264
|
+
offset?: undefined;
|
|
2250
2265
|
includeRecap?: undefined;
|
|
2251
2266
|
include_archived?: undefined;
|
|
2252
2267
|
signals?: undefined;
|
|
2253
2268
|
ids?: undefined;
|
|
2254
|
-
offset?: undefined;
|
|
2255
2269
|
parent_id?: undefined;
|
|
2256
2270
|
depends_on?: undefined;
|
|
2257
2271
|
est_tokens?: undefined;
|
|
@@ -2290,20 +2304,170 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2290
2304
|
error?: undefined;
|
|
2291
2305
|
message?: undefined;
|
|
2292
2306
|
updatedFields?: undefined;
|
|
2307
|
+
schema?: undefined;
|
|
2293
2308
|
query?: undefined;
|
|
2294
|
-
|
|
2309
|
+
count?: undefined;
|
|
2310
|
+
total?: undefined;
|
|
2311
|
+
offset?: undefined;
|
|
2312
|
+
limit?: undefined;
|
|
2295
2313
|
results?: undefined;
|
|
2296
2314
|
summary?: undefined;
|
|
2297
2315
|
signalCount?: undefined;
|
|
2298
2316
|
deletedCount?: undefined;
|
|
2299
2317
|
ids?: undefined;
|
|
2300
|
-
|
|
2301
|
-
|
|
2318
|
+
stats?: undefined;
|
|
2319
|
+
top?: undefined;
|
|
2320
|
+
archivedToMemory?: undefined;
|
|
2321
|
+
tasks?: undefined;
|
|
2322
|
+
action?: undefined;
|
|
2323
|
+
createdCount?: undefined;
|
|
2324
|
+
updatedCount?: undefined;
|
|
2325
|
+
taskCodes?: undefined;
|
|
2326
|
+
};
|
|
2327
|
+
required: string[];
|
|
2328
|
+
};
|
|
2329
|
+
execution?: undefined;
|
|
2330
|
+
} | {
|
|
2331
|
+
name: string;
|
|
2332
|
+
title: string;
|
|
2333
|
+
description: string;
|
|
2334
|
+
annotations: {
|
|
2335
|
+
readOnlyHint: boolean;
|
|
2336
|
+
idempotentHint: boolean;
|
|
2337
|
+
openWorldHint: boolean;
|
|
2338
|
+
destructiveHint?: undefined;
|
|
2339
|
+
};
|
|
2340
|
+
inputSchema: {
|
|
2341
|
+
type: string;
|
|
2342
|
+
properties: {
|
|
2343
|
+
repo: {
|
|
2344
|
+
type: string;
|
|
2345
|
+
description: string;
|
|
2346
|
+
};
|
|
2347
|
+
status: {
|
|
2348
|
+
type: string;
|
|
2349
|
+
enum: string[];
|
|
2350
|
+
description: string;
|
|
2351
|
+
default?: undefined;
|
|
2352
|
+
};
|
|
2353
|
+
limit: {
|
|
2354
|
+
type: string;
|
|
2355
|
+
minimum: number;
|
|
2356
|
+
maximum: number;
|
|
2357
|
+
default: number;
|
|
2358
|
+
description: string;
|
|
2359
|
+
};
|
|
2360
|
+
objective?: undefined;
|
|
2361
|
+
current_file_path?: undefined;
|
|
2362
|
+
include_summary?: undefined;
|
|
2363
|
+
include_tasks?: undefined;
|
|
2364
|
+
use_tools?: undefined;
|
|
2365
|
+
max_iterations?: undefined;
|
|
2366
|
+
max_tokens?: undefined;
|
|
2367
|
+
task_code?: undefined;
|
|
2368
|
+
phase?: undefined;
|
|
2369
|
+
title?: undefined;
|
|
2370
|
+
description?: undefined;
|
|
2371
|
+
priority?: undefined;
|
|
2372
|
+
agent?: undefined;
|
|
2373
|
+
role?: undefined;
|
|
2374
|
+
doc_path?: undefined;
|
|
2375
|
+
type?: undefined;
|
|
2376
|
+
content?: undefined;
|
|
2377
|
+
importance?: undefined;
|
|
2378
|
+
model?: undefined;
|
|
2379
|
+
scope?: undefined;
|
|
2380
|
+
tags?: undefined;
|
|
2381
|
+
metadata?: undefined;
|
|
2382
|
+
is_global?: undefined;
|
|
2383
|
+
ttlDays?: undefined;
|
|
2384
|
+
supersedes?: undefined;
|
|
2385
|
+
memory_id?: undefined;
|
|
2386
|
+
application_context?: undefined;
|
|
2387
|
+
id?: undefined;
|
|
2388
|
+
completed_at?: undefined;
|
|
2389
|
+
query?: undefined;
|
|
2390
|
+
prompt?: undefined;
|
|
2391
|
+
current_tags?: undefined;
|
|
2392
|
+
types?: undefined;
|
|
2393
|
+
minImportance?: undefined;
|
|
2302
2394
|
offset?: undefined;
|
|
2303
|
-
|
|
2395
|
+
includeRecap?: undefined;
|
|
2396
|
+
include_archived?: undefined;
|
|
2397
|
+
signals?: undefined;
|
|
2398
|
+
ids?: undefined;
|
|
2399
|
+
parent_id?: undefined;
|
|
2400
|
+
depends_on?: undefined;
|
|
2401
|
+
est_tokens?: undefined;
|
|
2402
|
+
comment?: undefined;
|
|
2403
|
+
search?: undefined;
|
|
2404
|
+
action?: undefined;
|
|
2304
2405
|
tasks?: undefined;
|
|
2305
|
-
|
|
2406
|
+
updates?: undefined;
|
|
2407
|
+
};
|
|
2408
|
+
required: string[];
|
|
2409
|
+
};
|
|
2410
|
+
outputSchema: {
|
|
2411
|
+
type: string;
|
|
2412
|
+
properties: {
|
|
2413
|
+
schema: {
|
|
2414
|
+
type: string;
|
|
2415
|
+
enum: string[];
|
|
2416
|
+
};
|
|
2417
|
+
tasks: {
|
|
2418
|
+
type: string;
|
|
2419
|
+
properties: {
|
|
2420
|
+
columns: {
|
|
2421
|
+
type: string;
|
|
2422
|
+
items: {
|
|
2423
|
+
type: string;
|
|
2424
|
+
};
|
|
2425
|
+
description: string;
|
|
2426
|
+
};
|
|
2427
|
+
rows: {
|
|
2428
|
+
type: string;
|
|
2429
|
+
items: {
|
|
2430
|
+
type: string;
|
|
2431
|
+
};
|
|
2432
|
+
description: string;
|
|
2433
|
+
};
|
|
2434
|
+
};
|
|
2435
|
+
required: string[];
|
|
2436
|
+
};
|
|
2437
|
+
count: {
|
|
2438
|
+
type: string;
|
|
2439
|
+
description?: undefined;
|
|
2440
|
+
};
|
|
2441
|
+
repo?: undefined;
|
|
2442
|
+
objective?: undefined;
|
|
2443
|
+
answer?: undefined;
|
|
2444
|
+
model?: undefined;
|
|
2445
|
+
stopReason?: undefined;
|
|
2446
|
+
iterations?: undefined;
|
|
2447
|
+
toolCalls?: undefined;
|
|
2448
|
+
task_code?: undefined;
|
|
2449
|
+
phase?: undefined;
|
|
2450
|
+
title?: undefined;
|
|
2451
|
+
status?: undefined;
|
|
2452
|
+
priority?: undefined;
|
|
2453
|
+
success?: undefined;
|
|
2454
|
+
id?: undefined;
|
|
2455
|
+
type?: undefined;
|
|
2456
|
+
error?: undefined;
|
|
2457
|
+
message?: undefined;
|
|
2458
|
+
updatedFields?: undefined;
|
|
2459
|
+
query?: undefined;
|
|
2460
|
+
total?: undefined;
|
|
2461
|
+
offset?: undefined;
|
|
2306
2462
|
limit?: undefined;
|
|
2463
|
+
results?: undefined;
|
|
2464
|
+
summary?: undefined;
|
|
2465
|
+
signalCount?: undefined;
|
|
2466
|
+
deletedCount?: undefined;
|
|
2467
|
+
ids?: undefined;
|
|
2468
|
+
stats?: undefined;
|
|
2469
|
+
top?: undefined;
|
|
2470
|
+
archivedToMemory?: undefined;
|
|
2307
2471
|
action?: undefined;
|
|
2308
2472
|
createdCount?: undefined;
|
|
2309
2473
|
updatedCount?: undefined;
|
|
@@ -2406,51 +2570,38 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2406
2570
|
outputSchema: {
|
|
2407
2571
|
type: string;
|
|
2408
2572
|
properties: {
|
|
2409
|
-
|
|
2410
|
-
type: string;
|
|
2411
|
-
};
|
|
2412
|
-
count: {
|
|
2413
|
-
type: string;
|
|
2414
|
-
};
|
|
2415
|
-
offset: {
|
|
2416
|
-
type: string;
|
|
2417
|
-
};
|
|
2418
|
-
limit: {
|
|
2573
|
+
schema: {
|
|
2419
2574
|
type: string;
|
|
2575
|
+
enum: string[];
|
|
2420
2576
|
};
|
|
2421
2577
|
tasks: {
|
|
2422
2578
|
type: string;
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
type: string;
|
|
2428
|
-
};
|
|
2429
|
-
repo: {
|
|
2430
|
-
type: string;
|
|
2431
|
-
};
|
|
2432
|
-
task_code: {
|
|
2433
|
-
type: string;
|
|
2434
|
-
};
|
|
2435
|
-
phase: {
|
|
2436
|
-
type: string;
|
|
2437
|
-
};
|
|
2438
|
-
title: {
|
|
2439
|
-
type: string;
|
|
2440
|
-
};
|
|
2441
|
-
description: {
|
|
2442
|
-
type: string;
|
|
2443
|
-
};
|
|
2444
|
-
status: {
|
|
2579
|
+
properties: {
|
|
2580
|
+
columns: {
|
|
2581
|
+
type: string;
|
|
2582
|
+
items: {
|
|
2445
2583
|
type: string;
|
|
2446
2584
|
};
|
|
2447
|
-
|
|
2585
|
+
description: string;
|
|
2586
|
+
};
|
|
2587
|
+
rows: {
|
|
2588
|
+
type: string;
|
|
2589
|
+
items: {
|
|
2448
2590
|
type: string;
|
|
2449
2591
|
};
|
|
2592
|
+
description: string;
|
|
2450
2593
|
};
|
|
2451
|
-
required: string[];
|
|
2452
2594
|
};
|
|
2595
|
+
required: string[];
|
|
2596
|
+
};
|
|
2597
|
+
count: {
|
|
2598
|
+
type: string;
|
|
2599
|
+
description?: undefined;
|
|
2453
2600
|
};
|
|
2601
|
+
offset: {
|
|
2602
|
+
type: string;
|
|
2603
|
+
};
|
|
2604
|
+
repo?: undefined;
|
|
2454
2605
|
objective?: undefined;
|
|
2455
2606
|
answer?: undefined;
|
|
2456
2607
|
model?: undefined;
|
|
@@ -2469,14 +2620,15 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2469
2620
|
message?: undefined;
|
|
2470
2621
|
updatedFields?: undefined;
|
|
2471
2622
|
query?: undefined;
|
|
2472
|
-
|
|
2623
|
+
total?: undefined;
|
|
2624
|
+
limit?: undefined;
|
|
2473
2625
|
results?: undefined;
|
|
2474
2626
|
summary?: undefined;
|
|
2475
2627
|
signalCount?: undefined;
|
|
2476
2628
|
deletedCount?: undefined;
|
|
2477
2629
|
ids?: undefined;
|
|
2478
|
-
|
|
2479
|
-
|
|
2630
|
+
stats?: undefined;
|
|
2631
|
+
top?: undefined;
|
|
2480
2632
|
archivedToMemory?: undefined;
|
|
2481
2633
|
action?: undefined;
|
|
2482
2634
|
createdCount?: undefined;
|
|
@@ -2578,51 +2730,41 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2578
2730
|
outputSchema: {
|
|
2579
2731
|
type: string;
|
|
2580
2732
|
properties: {
|
|
2581
|
-
|
|
2582
|
-
type: string;
|
|
2583
|
-
};
|
|
2584
|
-
count: {
|
|
2585
|
-
type: string;
|
|
2586
|
-
};
|
|
2587
|
-
offset: {
|
|
2733
|
+
schema: {
|
|
2588
2734
|
type: string;
|
|
2735
|
+
enum: string[];
|
|
2589
2736
|
};
|
|
2590
|
-
|
|
2737
|
+
query: {
|
|
2591
2738
|
type: string;
|
|
2592
2739
|
};
|
|
2593
2740
|
tasks: {
|
|
2594
2741
|
type: string;
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
type: string;
|
|
2600
|
-
};
|
|
2601
|
-
repo: {
|
|
2602
|
-
type: string;
|
|
2603
|
-
};
|
|
2604
|
-
task_code: {
|
|
2605
|
-
type: string;
|
|
2606
|
-
};
|
|
2607
|
-
phase: {
|
|
2608
|
-
type: string;
|
|
2609
|
-
};
|
|
2610
|
-
title: {
|
|
2611
|
-
type: string;
|
|
2612
|
-
};
|
|
2613
|
-
description: {
|
|
2614
|
-
type: string;
|
|
2615
|
-
};
|
|
2616
|
-
status: {
|
|
2742
|
+
properties: {
|
|
2743
|
+
columns: {
|
|
2744
|
+
type: string;
|
|
2745
|
+
items: {
|
|
2617
2746
|
type: string;
|
|
2618
2747
|
};
|
|
2619
|
-
|
|
2748
|
+
description: string;
|
|
2749
|
+
};
|
|
2750
|
+
rows: {
|
|
2751
|
+
type: string;
|
|
2752
|
+
items: {
|
|
2620
2753
|
type: string;
|
|
2621
2754
|
};
|
|
2755
|
+
description: string;
|
|
2622
2756
|
};
|
|
2623
|
-
required: string[];
|
|
2624
2757
|
};
|
|
2758
|
+
required: string[];
|
|
2625
2759
|
};
|
|
2760
|
+
count: {
|
|
2761
|
+
type: string;
|
|
2762
|
+
description?: undefined;
|
|
2763
|
+
};
|
|
2764
|
+
offset: {
|
|
2765
|
+
type: string;
|
|
2766
|
+
};
|
|
2767
|
+
repo?: undefined;
|
|
2626
2768
|
objective?: undefined;
|
|
2627
2769
|
answer?: undefined;
|
|
2628
2770
|
model?: undefined;
|
|
@@ -2640,15 +2782,15 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2640
2782
|
error?: undefined;
|
|
2641
2783
|
message?: undefined;
|
|
2642
2784
|
updatedFields?: undefined;
|
|
2643
|
-
|
|
2644
|
-
|
|
2785
|
+
total?: undefined;
|
|
2786
|
+
limit?: undefined;
|
|
2645
2787
|
results?: undefined;
|
|
2646
2788
|
summary?: undefined;
|
|
2647
2789
|
signalCount?: undefined;
|
|
2648
2790
|
deletedCount?: undefined;
|
|
2649
2791
|
ids?: undefined;
|
|
2650
|
-
|
|
2651
|
-
|
|
2792
|
+
stats?: undefined;
|
|
2793
|
+
top?: undefined;
|
|
2652
2794
|
archivedToMemory?: undefined;
|
|
2653
2795
|
action?: undefined;
|
|
2654
2796
|
createdCount?: undefined;
|
|
@@ -2805,10 +2947,10 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2805
2947
|
types?: undefined;
|
|
2806
2948
|
minImportance?: undefined;
|
|
2807
2949
|
limit?: undefined;
|
|
2950
|
+
offset?: undefined;
|
|
2808
2951
|
includeRecap?: undefined;
|
|
2809
2952
|
include_archived?: undefined;
|
|
2810
2953
|
signals?: undefined;
|
|
2811
|
-
offset?: undefined;
|
|
2812
2954
|
parent_id?: undefined;
|
|
2813
2955
|
depends_on?: undefined;
|
|
2814
2956
|
est_tokens?: undefined;
|
|
@@ -2866,18 +3008,19 @@ export declare const TOOL_DEFINITIONS: ({
|
|
|
2866
3008
|
error?: undefined;
|
|
2867
3009
|
message?: undefined;
|
|
2868
3010
|
updatedFields?: undefined;
|
|
3011
|
+
schema?: undefined;
|
|
2869
3012
|
query?: undefined;
|
|
2870
|
-
recapContext?: undefined;
|
|
2871
|
-
results?: undefined;
|
|
2872
|
-
summary?: undefined;
|
|
2873
|
-
signalCount?: undefined;
|
|
2874
3013
|
count?: undefined;
|
|
2875
3014
|
total?: undefined;
|
|
2876
3015
|
offset?: undefined;
|
|
2877
|
-
memories?: undefined;
|
|
2878
|
-
tasks?: undefined;
|
|
2879
|
-
archivedToMemory?: undefined;
|
|
2880
3016
|
limit?: undefined;
|
|
3017
|
+
results?: undefined;
|
|
3018
|
+
summary?: undefined;
|
|
3019
|
+
signalCount?: undefined;
|
|
3020
|
+
stats?: undefined;
|
|
3021
|
+
top?: undefined;
|
|
3022
|
+
archivedToMemory?: undefined;
|
|
3023
|
+
tasks?: undefined;
|
|
2881
3024
|
};
|
|
2882
3025
|
required: string[];
|
|
2883
3026
|
};
|