@agentrix/shared 2.17.0 → 2.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -892,15 +892,15 @@ type SendMessageTarget = 'agent' | 'user';
892
892
  * - 'user': Broadcasts SDKAssistantMessage to users viewing the task
893
893
  */
894
894
  declare const SendTaskMessageRequestSchema: z.ZodObject<{
895
- message: z.ZodCustom<SDKUserMessage | SDKAssistantMessage, SDKUserMessage | SDKAssistantMessage>;
895
+ message: z.ZodCustom<SDKAssistantMessage | SDKUserMessage, SDKAssistantMessage | SDKUserMessage>;
896
896
  target: z.ZodEnum<{
897
- agent: "agent";
898
897
  user: "user";
898
+ agent: "agent";
899
899
  }>;
900
900
  fromTaskId: z.ZodOptional<z.ZodString>;
901
901
  senderType: z.ZodEnum<{
902
- human: "human";
903
902
  system: "system";
903
+ human: "human";
904
904
  agent: "agent";
905
905
  }>;
906
906
  senderId: z.ZodString;
@@ -1037,6 +1037,477 @@ declare const FindTaskByAgentResponseSchema: z.ZodObject<{
1037
1037
  }, z.core.$strip>;
1038
1038
  type FindTaskByAgentResponse = z.infer<typeof FindTaskByAgentResponseSchema>;
1039
1039
 
1040
+ declare const HiveListingTypeSchema: z.ZodEnum<{
1041
+ agent: "agent";
1042
+ skill: "skill";
1043
+ }>;
1044
+ type HiveListingType = z.infer<typeof HiveListingTypeSchema>;
1045
+ declare const HiveAuthorTypeSchema: z.ZodEnum<{
1046
+ user: "user";
1047
+ agent: "agent";
1048
+ }>;
1049
+ type HiveAuthorType = z.infer<typeof HiveAuthorTypeSchema>;
1050
+ declare const HiveListingStatusSchema: z.ZodEnum<{
1051
+ draft: "draft";
1052
+ suspended: "suspended";
1053
+ published: "published";
1054
+ unlisted: "unlisted";
1055
+ }>;
1056
+ type HiveListingStatus = z.infer<typeof HiveListingStatusSchema>;
1057
+ declare const HiveSortSchema: z.ZodEnum<{
1058
+ trending: "trending";
1059
+ newest: "newest";
1060
+ rating: "rating";
1061
+ installs: "installs";
1062
+ }>;
1063
+ type HiveSort = z.infer<typeof HiveSortSchema>;
1064
+ declare const HiveListingSchema: z.ZodObject<{
1065
+ id: z.ZodString;
1066
+ type: z.ZodEnum<{
1067
+ agent: "agent";
1068
+ skill: "skill";
1069
+ }>;
1070
+ name: z.ZodString;
1071
+ displayName: z.ZodString;
1072
+ description: z.ZodNullable<z.ZodString>;
1073
+ readme: z.ZodNullable<z.ZodString>;
1074
+ version: z.ZodString;
1075
+ avatar: z.ZodNullable<z.ZodString>;
1076
+ authorType: z.ZodEnum<{
1077
+ user: "user";
1078
+ agent: "agent";
1079
+ }>;
1080
+ authorId: z.ZodString;
1081
+ authorName: z.ZodString;
1082
+ authorAvatar: z.ZodNullable<z.ZodString>;
1083
+ gitRepoUrl: z.ZodString;
1084
+ repoDir: z.ZodString;
1085
+ sourceHiveListingId: z.ZodNullable<z.ZodString>;
1086
+ draftAgentId: z.ZodNullable<z.ZodString>;
1087
+ category: z.ZodNullable<z.ZodString>;
1088
+ tags: z.ZodArray<z.ZodString>;
1089
+ featured: z.ZodBoolean;
1090
+ installCount: z.ZodNumber;
1091
+ rating: z.ZodNumber;
1092
+ ratingCount: z.ZodNumber;
1093
+ status: z.ZodEnum<{
1094
+ draft: "draft";
1095
+ suspended: "suspended";
1096
+ published: "published";
1097
+ unlisted: "unlisted";
1098
+ }>;
1099
+ visibility: z.ZodString;
1100
+ createdAt: z.ZodString;
1101
+ updatedAt: z.ZodString;
1102
+ }, z.core.$strip>;
1103
+ type HiveListing = z.infer<typeof HiveListingSchema>;
1104
+ declare const PublishToHiveRequestSchema: z.ZodObject<{
1105
+ type: z.ZodEnum<{
1106
+ agent: "agent";
1107
+ skill: "skill";
1108
+ }>;
1109
+ draftAgentId: z.ZodOptional<z.ZodString>;
1110
+ sourceDir: z.ZodOptional<z.ZodString>;
1111
+ name: z.ZodOptional<z.ZodString>;
1112
+ displayName: z.ZodOptional<z.ZodString>;
1113
+ description: z.ZodOptional<z.ZodString>;
1114
+ readme: z.ZodOptional<z.ZodString>;
1115
+ category: z.ZodOptional<z.ZodString>;
1116
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1117
+ authorType: z.ZodEnum<{
1118
+ user: "user";
1119
+ agent: "agent";
1120
+ }>;
1121
+ authorId: z.ZodString;
1122
+ machineId: z.ZodOptional<z.ZodString>;
1123
+ cloudId: z.ZodOptional<z.ZodString>;
1124
+ }, z.core.$strip>;
1125
+ type PublishToHiveRequest = z.infer<typeof PublishToHiveRequestSchema>;
1126
+ declare const PublishToHiveResponseSchema: z.ZodObject<{
1127
+ taskId: z.ZodString;
1128
+ status: z.ZodString;
1129
+ }, z.core.$strip>;
1130
+ type PublishToHiveResponse = z.infer<typeof PublishToHiveResponseSchema>;
1131
+ declare const HiveListQuerySchema: z.ZodObject<{
1132
+ type: z.ZodOptional<z.ZodEnum<{
1133
+ agent: "agent";
1134
+ skill: "skill";
1135
+ }>>;
1136
+ category: z.ZodOptional<z.ZodString>;
1137
+ tags: z.ZodOptional<z.ZodString>;
1138
+ q: z.ZodOptional<z.ZodString>;
1139
+ sort: z.ZodDefault<z.ZodEnum<{
1140
+ trending: "trending";
1141
+ newest: "newest";
1142
+ rating: "rating";
1143
+ installs: "installs";
1144
+ }>>;
1145
+ authorId: z.ZodOptional<z.ZodString>;
1146
+ page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
1147
+ pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
1148
+ }, z.core.$strip>;
1149
+ type HiveListQuery = z.infer<typeof HiveListQuerySchema>;
1150
+ declare const HiveListResponseSchema: z.ZodObject<{
1151
+ listings: z.ZodArray<z.ZodObject<{
1152
+ id: z.ZodString;
1153
+ type: z.ZodEnum<{
1154
+ agent: "agent";
1155
+ skill: "skill";
1156
+ }>;
1157
+ name: z.ZodString;
1158
+ displayName: z.ZodString;
1159
+ description: z.ZodNullable<z.ZodString>;
1160
+ readme: z.ZodNullable<z.ZodString>;
1161
+ version: z.ZodString;
1162
+ avatar: z.ZodNullable<z.ZodString>;
1163
+ authorType: z.ZodEnum<{
1164
+ user: "user";
1165
+ agent: "agent";
1166
+ }>;
1167
+ authorId: z.ZodString;
1168
+ authorName: z.ZodString;
1169
+ authorAvatar: z.ZodNullable<z.ZodString>;
1170
+ gitRepoUrl: z.ZodString;
1171
+ repoDir: z.ZodString;
1172
+ sourceHiveListingId: z.ZodNullable<z.ZodString>;
1173
+ draftAgentId: z.ZodNullable<z.ZodString>;
1174
+ category: z.ZodNullable<z.ZodString>;
1175
+ tags: z.ZodArray<z.ZodString>;
1176
+ featured: z.ZodBoolean;
1177
+ installCount: z.ZodNumber;
1178
+ rating: z.ZodNumber;
1179
+ ratingCount: z.ZodNumber;
1180
+ status: z.ZodEnum<{
1181
+ draft: "draft";
1182
+ suspended: "suspended";
1183
+ published: "published";
1184
+ unlisted: "unlisted";
1185
+ }>;
1186
+ visibility: z.ZodString;
1187
+ createdAt: z.ZodString;
1188
+ updatedAt: z.ZodString;
1189
+ }, z.core.$strip>>;
1190
+ total: z.ZodNumber;
1191
+ page: z.ZodNumber;
1192
+ pageSize: z.ZodNumber;
1193
+ }, z.core.$strip>;
1194
+ type HiveListResponse = z.infer<typeof HiveListResponseSchema>;
1195
+ declare const UpdateHiveListingRequestSchema: z.ZodObject<{
1196
+ displayName: z.ZodOptional<z.ZodString>;
1197
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1198
+ readme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1199
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1200
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1201
+ avatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1202
+ visibility: z.ZodOptional<z.ZodEnum<{
1203
+ public: "public";
1204
+ private: "private";
1205
+ }>>;
1206
+ }, z.core.$strip>;
1207
+ type UpdateHiveListingRequest = z.infer<typeof UpdateHiveListingRequestSchema>;
1208
+ declare const UpdateHiveVersionRequestSchema: z.ZodObject<{
1209
+ version: z.ZodOptional<z.ZodString>;
1210
+ changelog: z.ZodOptional<z.ZodString>;
1211
+ sourceDir: z.ZodOptional<z.ZodString>;
1212
+ machineId: z.ZodOptional<z.ZodString>;
1213
+ cloudId: z.ZodOptional<z.ZodString>;
1214
+ }, z.core.$strip>;
1215
+ type UpdateHiveVersionRequest = z.infer<typeof UpdateHiveVersionRequestSchema>;
1216
+ declare const HiveInstallRequestSchema: z.ZodObject<{
1217
+ name: z.ZodOptional<z.ZodString>;
1218
+ machineId: z.ZodOptional<z.ZodString>;
1219
+ cloudId: z.ZodOptional<z.ZodString>;
1220
+ }, z.core.$strip>;
1221
+ type HiveInstallRequest = z.infer<typeof HiveInstallRequestSchema>;
1222
+ declare const HiveInstallSchema: z.ZodObject<{
1223
+ id: z.ZodString;
1224
+ hiveListingId: z.ZodString;
1225
+ userId: z.ZodString;
1226
+ machineId: z.ZodNullable<z.ZodString>;
1227
+ cloudId: z.ZodNullable<z.ZodString>;
1228
+ agentDir: z.ZodString;
1229
+ installedVersion: z.ZodString;
1230
+ draftAgentId: z.ZodNullable<z.ZodString>;
1231
+ createdAt: z.ZodString;
1232
+ updatedAt: z.ZodString;
1233
+ }, z.core.$strip>;
1234
+ type HiveInstall = z.infer<typeof HiveInstallSchema>;
1235
+ declare const HiveInstallResponseSchema: z.ZodObject<{
1236
+ taskId: z.ZodString;
1237
+ status: z.ZodString;
1238
+ draftAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1239
+ }, z.core.$strip>;
1240
+ type HiveInstallResponse = z.infer<typeof HiveInstallResponseSchema>;
1241
+ declare const RecordHiveInstallRequestSchema: z.ZodObject<{
1242
+ agentDir: z.ZodString;
1243
+ name: z.ZodOptional<z.ZodString>;
1244
+ machineId: z.ZodOptional<z.ZodString>;
1245
+ cloudId: z.ZodOptional<z.ZodString>;
1246
+ installedVersion: z.ZodOptional<z.ZodString>;
1247
+ }, z.core.$strip>;
1248
+ type RecordHiveInstallRequest = z.infer<typeof RecordHiveInstallRequestSchema>;
1249
+ declare const RecordHiveInstallResponseSchema: z.ZodObject<{
1250
+ install: z.ZodObject<{
1251
+ id: z.ZodString;
1252
+ hiveListingId: z.ZodString;
1253
+ userId: z.ZodString;
1254
+ machineId: z.ZodNullable<z.ZodString>;
1255
+ cloudId: z.ZodNullable<z.ZodString>;
1256
+ agentDir: z.ZodString;
1257
+ installedVersion: z.ZodString;
1258
+ draftAgentId: z.ZodNullable<z.ZodString>;
1259
+ createdAt: z.ZodString;
1260
+ updatedAt: z.ZodString;
1261
+ }, z.core.$strip>;
1262
+ draftAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1263
+ }, z.core.$strip>;
1264
+ type RecordHiveInstallResponse = z.infer<typeof RecordHiveInstallResponseSchema>;
1265
+ declare const HiveReviewSchema: z.ZodObject<{
1266
+ id: z.ZodString;
1267
+ hiveListingId: z.ZodString;
1268
+ authorType: z.ZodEnum<{
1269
+ user: "user";
1270
+ agent: "agent";
1271
+ }>;
1272
+ authorId: z.ZodString;
1273
+ authorName: z.ZodString;
1274
+ authorAvatar: z.ZodNullable<z.ZodString>;
1275
+ rating: z.ZodNumber;
1276
+ comment: z.ZodNullable<z.ZodString>;
1277
+ createdAt: z.ZodString;
1278
+ updatedAt: z.ZodString;
1279
+ }, z.core.$strip>;
1280
+ type HiveReview = z.infer<typeof HiveReviewSchema>;
1281
+ declare const CreateHiveReviewRequestSchema: z.ZodObject<{
1282
+ rating: z.ZodNumber;
1283
+ comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1284
+ }, z.core.$strip>;
1285
+ type CreateHiveReviewRequest = z.infer<typeof CreateHiveReviewRequestSchema>;
1286
+ declare const UpdateHiveReviewRequestSchema: z.ZodObject<{
1287
+ rating: z.ZodOptional<z.ZodNumber>;
1288
+ comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1289
+ }, z.core.$strip>;
1290
+ type UpdateHiveReviewRequest = z.infer<typeof UpdateHiveReviewRequestSchema>;
1291
+ declare const HiveReviewListResponseSchema: z.ZodObject<{
1292
+ reviews: z.ZodArray<z.ZodObject<{
1293
+ id: z.ZodString;
1294
+ hiveListingId: z.ZodString;
1295
+ authorType: z.ZodEnum<{
1296
+ user: "user";
1297
+ agent: "agent";
1298
+ }>;
1299
+ authorId: z.ZodString;
1300
+ authorName: z.ZodString;
1301
+ authorAvatar: z.ZodNullable<z.ZodString>;
1302
+ rating: z.ZodNumber;
1303
+ comment: z.ZodNullable<z.ZodString>;
1304
+ createdAt: z.ZodString;
1305
+ updatedAt: z.ZodString;
1306
+ }, z.core.$strip>>;
1307
+ total: z.ZodNumber;
1308
+ page: z.ZodNumber;
1309
+ pageSize: z.ZodNumber;
1310
+ }, z.core.$strip>;
1311
+ type HiveReviewListResponse = z.infer<typeof HiveReviewListResponseSchema>;
1312
+ declare const HiveCommentSchema: z.ZodObject<{
1313
+ id: z.ZodString;
1314
+ hiveListingId: z.ZodString;
1315
+ parentId: z.ZodNullable<z.ZodString>;
1316
+ authorType: z.ZodEnum<{
1317
+ user: "user";
1318
+ agent: "agent";
1319
+ }>;
1320
+ authorId: z.ZodString;
1321
+ authorName: z.ZodString;
1322
+ authorAvatar: z.ZodNullable<z.ZodString>;
1323
+ content: z.ZodString;
1324
+ createdAt: z.ZodString;
1325
+ updatedAt: z.ZodString;
1326
+ }, z.core.$strip>;
1327
+ type HiveComment = z.infer<typeof HiveCommentSchema>;
1328
+ declare const CreateHiveCommentRequestSchema: z.ZodObject<{
1329
+ content: z.ZodString;
1330
+ parentId: z.ZodOptional<z.ZodString>;
1331
+ }, z.core.$strip>;
1332
+ type CreateHiveCommentRequest = z.infer<typeof CreateHiveCommentRequestSchema>;
1333
+ declare const UpdateHiveCommentRequestSchema: z.ZodObject<{
1334
+ content: z.ZodString;
1335
+ }, z.core.$strip>;
1336
+ type UpdateHiveCommentRequest = z.infer<typeof UpdateHiveCommentRequestSchema>;
1337
+ declare const HiveCommentListResponseSchema: z.ZodObject<{
1338
+ comments: z.ZodArray<z.ZodObject<{
1339
+ id: z.ZodString;
1340
+ hiveListingId: z.ZodString;
1341
+ parentId: z.ZodNullable<z.ZodString>;
1342
+ authorType: z.ZodEnum<{
1343
+ user: "user";
1344
+ agent: "agent";
1345
+ }>;
1346
+ authorId: z.ZodString;
1347
+ authorName: z.ZodString;
1348
+ authorAvatar: z.ZodNullable<z.ZodString>;
1349
+ content: z.ZodString;
1350
+ createdAt: z.ZodString;
1351
+ updatedAt: z.ZodString;
1352
+ }, z.core.$strip>>;
1353
+ total: z.ZodNumber;
1354
+ page: z.ZodNumber;
1355
+ pageSize: z.ZodNumber;
1356
+ }, z.core.$strip>;
1357
+ type HiveCommentListResponse = z.infer<typeof HiveCommentListResponseSchema>;
1358
+ declare const HiveInstalledItemSchema: z.ZodObject<{
1359
+ install: z.ZodObject<{
1360
+ id: z.ZodString;
1361
+ hiveListingId: z.ZodString;
1362
+ userId: z.ZodString;
1363
+ machineId: z.ZodNullable<z.ZodString>;
1364
+ cloudId: z.ZodNullable<z.ZodString>;
1365
+ agentDir: z.ZodString;
1366
+ installedVersion: z.ZodString;
1367
+ draftAgentId: z.ZodNullable<z.ZodString>;
1368
+ createdAt: z.ZodString;
1369
+ updatedAt: z.ZodString;
1370
+ }, z.core.$strip>;
1371
+ listing: z.ZodObject<{
1372
+ id: z.ZodString;
1373
+ type: z.ZodEnum<{
1374
+ agent: "agent";
1375
+ skill: "skill";
1376
+ }>;
1377
+ name: z.ZodString;
1378
+ displayName: z.ZodString;
1379
+ description: z.ZodNullable<z.ZodString>;
1380
+ readme: z.ZodNullable<z.ZodString>;
1381
+ version: z.ZodString;
1382
+ avatar: z.ZodNullable<z.ZodString>;
1383
+ authorType: z.ZodEnum<{
1384
+ user: "user";
1385
+ agent: "agent";
1386
+ }>;
1387
+ authorId: z.ZodString;
1388
+ authorName: z.ZodString;
1389
+ authorAvatar: z.ZodNullable<z.ZodString>;
1390
+ gitRepoUrl: z.ZodString;
1391
+ repoDir: z.ZodString;
1392
+ sourceHiveListingId: z.ZodNullable<z.ZodString>;
1393
+ draftAgentId: z.ZodNullable<z.ZodString>;
1394
+ category: z.ZodNullable<z.ZodString>;
1395
+ tags: z.ZodArray<z.ZodString>;
1396
+ featured: z.ZodBoolean;
1397
+ installCount: z.ZodNumber;
1398
+ rating: z.ZodNumber;
1399
+ ratingCount: z.ZodNumber;
1400
+ status: z.ZodEnum<{
1401
+ draft: "draft";
1402
+ suspended: "suspended";
1403
+ published: "published";
1404
+ unlisted: "unlisted";
1405
+ }>;
1406
+ visibility: z.ZodString;
1407
+ createdAt: z.ZodString;
1408
+ updatedAt: z.ZodString;
1409
+ }, z.core.$strip>;
1410
+ }, z.core.$strip>;
1411
+ type HiveInstalledItem = z.infer<typeof HiveInstalledItemSchema>;
1412
+ declare const HiveInstalledResponseSchema: z.ZodObject<{
1413
+ items: z.ZodArray<z.ZodObject<{
1414
+ install: z.ZodObject<{
1415
+ id: z.ZodString;
1416
+ hiveListingId: z.ZodString;
1417
+ userId: z.ZodString;
1418
+ machineId: z.ZodNullable<z.ZodString>;
1419
+ cloudId: z.ZodNullable<z.ZodString>;
1420
+ agentDir: z.ZodString;
1421
+ installedVersion: z.ZodString;
1422
+ draftAgentId: z.ZodNullable<z.ZodString>;
1423
+ createdAt: z.ZodString;
1424
+ updatedAt: z.ZodString;
1425
+ }, z.core.$strip>;
1426
+ listing: z.ZodObject<{
1427
+ id: z.ZodString;
1428
+ type: z.ZodEnum<{
1429
+ agent: "agent";
1430
+ skill: "skill";
1431
+ }>;
1432
+ name: z.ZodString;
1433
+ displayName: z.ZodString;
1434
+ description: z.ZodNullable<z.ZodString>;
1435
+ readme: z.ZodNullable<z.ZodString>;
1436
+ version: z.ZodString;
1437
+ avatar: z.ZodNullable<z.ZodString>;
1438
+ authorType: z.ZodEnum<{
1439
+ user: "user";
1440
+ agent: "agent";
1441
+ }>;
1442
+ authorId: z.ZodString;
1443
+ authorName: z.ZodString;
1444
+ authorAvatar: z.ZodNullable<z.ZodString>;
1445
+ gitRepoUrl: z.ZodString;
1446
+ repoDir: z.ZodString;
1447
+ sourceHiveListingId: z.ZodNullable<z.ZodString>;
1448
+ draftAgentId: z.ZodNullable<z.ZodString>;
1449
+ category: z.ZodNullable<z.ZodString>;
1450
+ tags: z.ZodArray<z.ZodString>;
1451
+ featured: z.ZodBoolean;
1452
+ installCount: z.ZodNumber;
1453
+ rating: z.ZodNumber;
1454
+ ratingCount: z.ZodNumber;
1455
+ status: z.ZodEnum<{
1456
+ draft: "draft";
1457
+ suspended: "suspended";
1458
+ published: "published";
1459
+ unlisted: "unlisted";
1460
+ }>;
1461
+ visibility: z.ZodString;
1462
+ createdAt: z.ZodString;
1463
+ updatedAt: z.ZodString;
1464
+ }, z.core.$strip>;
1465
+ }, z.core.$strip>>;
1466
+ }, z.core.$strip>;
1467
+ type HiveInstalledResponse = z.infer<typeof HiveInstalledResponseSchema>;
1468
+ declare const HiveMyListingsResponseSchema: z.ZodObject<{
1469
+ listings: z.ZodArray<z.ZodObject<{
1470
+ id: z.ZodString;
1471
+ type: z.ZodEnum<{
1472
+ agent: "agent";
1473
+ skill: "skill";
1474
+ }>;
1475
+ name: z.ZodString;
1476
+ displayName: z.ZodString;
1477
+ description: z.ZodNullable<z.ZodString>;
1478
+ readme: z.ZodNullable<z.ZodString>;
1479
+ version: z.ZodString;
1480
+ avatar: z.ZodNullable<z.ZodString>;
1481
+ authorType: z.ZodEnum<{
1482
+ user: "user";
1483
+ agent: "agent";
1484
+ }>;
1485
+ authorId: z.ZodString;
1486
+ authorName: z.ZodString;
1487
+ authorAvatar: z.ZodNullable<z.ZodString>;
1488
+ gitRepoUrl: z.ZodString;
1489
+ repoDir: z.ZodString;
1490
+ sourceHiveListingId: z.ZodNullable<z.ZodString>;
1491
+ draftAgentId: z.ZodNullable<z.ZodString>;
1492
+ category: z.ZodNullable<z.ZodString>;
1493
+ tags: z.ZodArray<z.ZodString>;
1494
+ featured: z.ZodBoolean;
1495
+ installCount: z.ZodNumber;
1496
+ rating: z.ZodNumber;
1497
+ ratingCount: z.ZodNumber;
1498
+ status: z.ZodEnum<{
1499
+ draft: "draft";
1500
+ suspended: "suspended";
1501
+ published: "published";
1502
+ unlisted: "unlisted";
1503
+ }>;
1504
+ visibility: z.ZodString;
1505
+ createdAt: z.ZodString;
1506
+ updatedAt: z.ZodString;
1507
+ }, z.core.$strip>>;
1508
+ }, z.core.$strip>;
1509
+ type HiveMyListingsResponse = z.infer<typeof HiveMyListingsResponseSchema>;
1510
+
1040
1511
  /**
1041
1512
  * RPC (Remote Procedure Call) types and schemas for AgentrixContext
1042
1513
  *
@@ -1152,14 +1623,14 @@ declare const AskUserMessageSchema: z.ZodObject<{
1152
1623
  }, z.core.$strip>;
1153
1624
  type AskUserMessage = z.infer<typeof AskUserMessageSchema>;
1154
1625
  declare const AskUserResponseStatusSchema: z.ZodEnum<{
1155
- timeout: "timeout";
1156
1626
  answered: "answered";
1157
1627
  cancelled: "cancelled";
1628
+ timeout: "timeout";
1158
1629
  }>;
1159
1630
  declare const AskUserResponseReasonSchema: z.ZodEnum<{
1160
- system: "system";
1161
- user: "user";
1162
1631
  timeout: "timeout";
1632
+ user: "user";
1633
+ system: "system";
1163
1634
  }>;
1164
1635
  type AskUserResponseStatus = z.infer<typeof AskUserResponseStatusSchema>;
1165
1636
  type AskUserResponseReason = z.infer<typeof AskUserResponseReasonSchema>;
@@ -1175,14 +1646,14 @@ declare const AskUserResponseMessageSchema: z.ZodObject<{
1175
1646
  details: z.ZodOptional<z.ZodArray<z.ZodString>>;
1176
1647
  rememberAnswers: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
1177
1648
  status: z.ZodOptional<z.ZodEnum<{
1178
- timeout: "timeout";
1179
1649
  answered: "answered";
1180
1650
  cancelled: "cancelled";
1651
+ timeout: "timeout";
1181
1652
  }>>;
1182
1653
  reason: z.ZodOptional<z.ZodEnum<{
1183
- system: "system";
1184
- user: "user";
1185
1654
  timeout: "timeout";
1655
+ user: "user";
1656
+ system: "system";
1186
1657
  }>>;
1187
1658
  }, z.core.$strip>;
1188
1659
  type AskUserResponseMessage = z.infer<typeof AskUserResponseMessageSchema>;
@@ -1789,9 +2260,9 @@ declare const TaskMessageSchema: z.ZodObject<{
1789
2260
  taskId: z.ZodString;
1790
2261
  chatId: z.ZodOptional<z.ZodString>;
1791
2262
  from: z.ZodEnum<{
1792
- machine: "machine";
1793
2263
  app: "app";
1794
2264
  "api-server": "api-server";
2265
+ machine: "machine";
1795
2266
  worker: "worker";
1796
2267
  }>;
1797
2268
  opCode: z.ZodOptional<z.ZodString>;
@@ -1802,8 +2273,8 @@ declare const TaskMessageSchema: z.ZodObject<{
1802
2273
  encryptedMessage: z.ZodOptional<z.ZodString>;
1803
2274
  agentId: z.ZodOptional<z.ZodString>;
1804
2275
  senderType: z.ZodEnum<{
1805
- human: "human";
1806
2276
  system: "system";
2277
+ human: "human";
1807
2278
  agent: "agent";
1808
2279
  }>;
1809
2280
  senderId: z.ZodString;
@@ -1949,8 +2420,8 @@ declare const RtcSignalSchema: z.ZodObject<{
1949
2420
  machineId: z.ZodString;
1950
2421
  sessionId: z.ZodString;
1951
2422
  from: z.ZodEnum<{
1952
- machine: "machine";
1953
2423
  app: "app";
2424
+ machine: "machine";
1954
2425
  }>;
1955
2426
  signal: z.ZodAny;
1956
2427
  userId: z.ZodOptional<z.ZodString>;
@@ -2195,6 +2666,7 @@ type DeployAgentCompleteEventData = z.infer<typeof DeployAgentCompleteEventSchem
2195
2666
  declare const HivePublishEventSchema: z.ZodObject<{
2196
2667
  eventId: z.ZodString;
2197
2668
  taskId: z.ZodString;
2669
+ listingId: z.ZodString;
2198
2670
  userId: z.ZodString;
2199
2671
  machineId: z.ZodOptional<z.ZodString>;
2200
2672
  cloudId: z.ZodOptional<z.ZodString>;
@@ -2220,6 +2692,7 @@ type HivePublishEventData = z.infer<typeof HivePublishEventSchema>;
2220
2692
  declare const HivePublishCompleteEventSchema: z.ZodObject<{
2221
2693
  eventId: z.ZodString;
2222
2694
  taskId: z.ZodString;
2695
+ listingId: z.ZodOptional<z.ZodString>;
2223
2696
  success: z.ZodBoolean;
2224
2697
  error: z.ZodOptional<z.ZodString>;
2225
2698
  gitCommitHash: z.ZodOptional<z.ZodString>;
@@ -2957,6 +3430,42 @@ interface AgentrixContext {
2957
3430
  limit?: number;
2958
3431
  status?: 'all' | 'active' | 'completed';
2959
3432
  }): Promise<RecentTaskSummary[]>;
3433
+ /**
3434
+ * Ensure the Agentrix Hive source repository exists locally.
3435
+ *
3436
+ * This does not search Hive. Callers should inspect the returned directory
3437
+ * with normal file exploration tools and choose agents/skills from the repo.
3438
+ * Implementations should attempt git pull every time, but return the local
3439
+ * directory even when pull fails.
3440
+ */
3441
+ prepareHiveRepository(): Promise<{
3442
+ path: string;
3443
+ pullSucceeded: boolean;
3444
+ error?: string;
3445
+ }>;
3446
+ /**
3447
+ * Record an Agentrix Hive listing after the agent installs it locally.
3448
+ *
3449
+ * The caller reads the HiveListing ID from agentrix-hive-id.txt in the Hive
3450
+ * source directory and passes it explicitly.
3451
+ */
3452
+ recordHiveInstall(listingId: string, request: RecordHiveInstallRequest): Promise<RecordHiveInstallResponse>;
3453
+ /**
3454
+ * Publish an agent or skill to Agentrix Hive.
3455
+ */
3456
+ publishToHive(request: PublishToHiveRequest): Promise<PublishToHiveResponse>;
3457
+ /**
3458
+ * Publish a new version for an owned Agentrix Hive listing.
3459
+ */
3460
+ updateHiveListingVersion(listingId: string, request: UpdateHiveVersionRequest): Promise<HiveListing>;
3461
+ /**
3462
+ * Create a rating review for a Hive listing.
3463
+ */
3464
+ createHiveReview(listingId: string, request: CreateHiveReviewRequest): Promise<HiveReview>;
3465
+ /**
3466
+ * Create a discussion comment for a Hive listing.
3467
+ */
3468
+ createHiveComment(listingId: string, request: CreateHiveCommentRequest): Promise<HiveComment>;
2960
3469
  /**
2961
3470
  * Upload a file to the agent's storage
2962
3471
  */
@@ -3208,5 +3717,5 @@ declare class MissingAgentFileError extends AgentError {
3208
3717
  constructor(filePath: string);
3209
3718
  }
3210
3719
 
3211
- export { FillEventsRequestSchema as $, StopTaskRequestSchema as A, CancelTaskRequestSchema as C, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, stopTaskRequestSchema as F, StopTaskResponseSchema as G, PermissionResponseRequestSchema as I, permissionResponseRequestSchema as K, ListTasksRequestSchema as L, PermissionResponseResponseSchema as M, ProjectEntrySchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, TaskTodoSchema as T, ProjectDirectoryResponseSchema as U, QueryEventsRequestSchema as X, WorkerExecutionModeSchema as a, CreateMergeRequestSchema as a2, createMergeRequestSchema as a4, CreateMergeRequestResponseSchema as a5, ApprovePrRequestSchema as a7, ApprovePrResponseSchema as a9, GetTaskSessionResponseSchema as aA, ListSubTasksRequestSchema as aC, SubTaskSummarySchema as aE, ListSubTasksResponseSchema as aG, ListRecentTasksRequestSchema as aI, RecentTaskSummarySchema as aK, ListRecentTasksResponseSchema as aM, FindTaskByAgentRequestSchema as aO, FindTaskByAgentResponseSchema as aQ, AskUserOptionSchema as aS, AskUserQuestionSchema as aU, AskUserMessageSchema as aW, AskUserResponseStatusSchema as aY, AskUserResponseReasonSchema as aZ, CreateTaskShareSchema as ab, CreateTaskShareResponseSchema as ad, ArchiveTaskRequestSchema as af, ArchiveTaskResponseSchema as ah, UnarchiveTaskRequestSchema as aj, UnarchiveTaskResponseSchema as al, UpdateTaskTitleRequestSchema as an, UpdateTaskTitleResponseSchema as ap, SendTaskMessageRequestSchema as as, SendTaskMessageResponseSchema as au, ShowModalRequestSchema as aw, ShowModalResponseSchema as ay, StopTaskSchema as b$, AskUserResponseMessageSchema as b0, TaskAgentInfoSchema as b6, isAskUserMessage as b8, isAskUserResponseMessage as b9, WorkerAliveEventSchema as bA, WorkerExitSchema as bC, WorkerRunningSchema as bE, WorkerPermissionModeSchema as bG, WorkerStatusRequestSchema as bI, WorkerStatusValueSchema as bK, WorkerStatusSnapshotSchema as bM, ChatWorkersStatusRequestSchema as bO, ChatWorkersStatusResponseSchema as bQ, ListModelsEventSchema as bS, baseTaskSchema as bU, createTaskSchema as bV, resumeTaskSchema as bX, cancelTaskSchema as bZ, isCompanionHeartbeatMessage as ba, isCompanionReminderMessage as bb, isSubTaskAskUserMessage as bc, isSDKMessage as bd, isSDKUserMessage as be, createEventId as bf, EventAckSchema as bg, AppAliveEventSchema as bi, ApiServerAliveEventSchema as bk, MachineAliveEventSchema as bm, ShutdownMachineSchema as bo, WorkerInitializingSchema as bq, WorkerInitializedSchema as bs, WorkerPermissionModeValueSchema as bu, WorkerReadySchema as bw, ActiveAgentSchema as by, TaskUsageSummarySchema as c, TaskArtifactsStatsSchema as c1, PreviewProjectTypeSchema as c3, PreviewMethodSchema as c5, PreviewMetadataSchema as c7, TaskArtifactsSummarySchema as c8, WorkspaceFileRequestSchema as cB, WorkspaceFileResponseSchema as cD, UpdateTaskAgentSessionIdEventSchema as cF, TaskInfoUpdateEventDataSchema as cH, TaskSlashCommandSchema as cJ, TaskSlashCommandsUpdateEventDataSchema as cL, MergeRequestEventSchema as cN, TaskStoppedEventSchema as cP, SubTaskResultUpdatedEventSchema as cR, SubTaskAskUserEventSchema as cT, MergePullRequestEventSchema as cV, DeployAgentEventSchema as cY, DeployAgentCompleteEventSchema as c_, TaskMessageSchema as ca, TaskModelUsageSchema as cc, TaskUsageReportEventSchema as ce, ShowModalEventDataSchema as ch, ChangeTaskTitleEventSchema as cj, TaskStateChangeEventSchema as cl, CreditExhaustedEventSchema as cn, RtcIceServerSchema as cp, RtcIceServersRequestSchema as cr, RtcIceServersResponseSchema as ct, MachineRtcRequestSchema as cv, MachineRtcResponseSchema as cx, RtcSignalSchema as cz, HivePublishEventSchema as d0, HivePublishCompleteEventSchema as d2, HiveInstallEventSchema as d4, HiveInstallCompleteEventSchema as d6, AssociateRepoEventDataSchema as d8, UpdateAgentInfoEventSchema as d9, SeqSyncRequestEventDataSchema as dB, SeqSyncResponseEventDataSchema as dD, EventSchemaMap as dH, workerTaskEvents as dJ, RpcCallEventSchema as dK, MachineRpcCallEventSchema as dM, RpcResponseSchema as dO, setAgentContext as dS, getAgentContext as dT, SystemMessageSchema as de, DaemonGitlabOperationSchema as dg, DaemonGitlabRequestSchema as di, DaemonGitlabResponseSchema as dk, RepositoryInboxProviderSchema as dm, RepositoryInboxWebhookSchema as dn, CompanionHeartbeatRequestSchema as dq, CompanionHeartbeatResponseSchema as ds, CompanionInitRequestSchema as du, CompanionInitResponseSchema as dw, ResetTaskSessionSchema as dy, FRAMEWORK_TYPES as e0, AgentMetadataSchema as e1, ClaudeConfigSchema as e2, AgentError as e3, AgentNotFoundError as e4, AgentConfigValidationError as e5, FrameworkNotSupportedError as e6, AgentLoadError as e7, MissingAgentFileError as e8, StartTaskResponseSchema as f, TaskItemSchema as i, EnsureIssueRootTaskResponseSchema as k, normalizeWorkerExecutionMode as n, ListTasksResponseSchema as o, resumeTaskRequestSchema as r, startTaskSchema as s, ResumeTaskResponseSchema as t, workerExecutionModes as w, cancelTaskRequestSchema as x, CancelTaskResponseSchema as y };
3212
- export type { StopTaskRequest as B, StopTaskResponse as H, PermissionResponseRequest as J, PermissionResponseResponse as N, PreviewMetadata as P, ProjectEntry as Q, ProjectDirectoryResponse as V, WorkerExecutionMode as W, QueryEventsRequest as Y, TaskEvent as Z, QueryEventsResponse as _, AskUserResponseReason as a$, FillEventsRequest as a0, FillEventsResponse as a1, CreateMergeRequestRequest as a3, CreateMergeRequestResponse as a6, ApprovePrRequest as a8, GetTaskSessionResponse as aB, ListSubTasksRequest as aD, SubTaskSummary as aF, ListSubTasksResponse as aH, ListRecentTasksRequest as aJ, RecentTaskSummary as aL, ListRecentTasksResponse as aN, FindTaskByAgentRequest as aP, FindTaskByAgentResponse as aR, AskUserOption as aT, AskUserQuestion as aV, AskUserMessage as aX, AskUserResponseStatus as a_, ApprovePrResponse as aa, CreateTaskShareRequest as ac, CreateTaskShareResponse as ae, ArchiveTaskRequest as ag, ArchiveTaskResponse as ai, UnarchiveTaskRequest as ak, UnarchiveTaskResponse as am, UpdateTaskTitleRequest as ao, UpdateTaskTitleResponse as aq, SendMessageTarget as ar, SendTaskMessageRequest as at, SendTaskMessageResponse as av, ShowModalRequest as ax, ShowModalResponse as az, TaskTodo as b, AskUserResponseMessage as b1, CompanionHeartbeatMessage as b2, CompanionReminderMessage as b3, SubTaskAskUserMessage as b4, TaskMessagePayload as b5, TaskAgentInfo as b7, WorkerAliveEventData as bB, WorkerExitEventData as bD, WorkerRunningEventData as bF, WorkerPermissionModeEventData as bH, WorkerStatusRequestEventData as bJ, WorkerStatusValue as bL, WorkerStatusSnapshot as bN, ChatWorkersStatusRequestEventData as bP, ChatWorkersStatusResponseEventData as bR, ListModelsEventData as bT, CreateTaskEventData as bW, ResumeTaskEventData as bY, CancelTaskEventData as b_, EventAckData as bh, AppAliveEventData as bj, ApiServerAliveEventData as bl, MachineAliveEventData as bn, ShutdownMachineData as bp, WorkerInitializingEventData as br, WorkerInitializedEventData as bt, WorkerPermissionModeValue as bv, WorkerReadyEventData as bx, ActiveAgent as bz, DeployAgentCompleteEventData as c$, StopTaskEventData as c0, TaskArtifactsStats as c2, PreviewProjectType as c4, PreviewMethod as c6, TaskArtifactsSummary as c9, RtcSignalEventData as cA, WorkspaceFileRequestEventData as cC, WorkspaceFileResponseEventData as cE, UpdateTaskAgentSessionIdEventData as cG, TaskInfoUpdateEventData as cI, TaskSlashCommand as cK, TaskSlashCommandsUpdateEventData as cM, MergeRequestEventData as cO, TaskStoppedEventData as cQ, SubTaskResultUpdatedEventData as cS, SubTaskAskUserEventData as cU, MergePullRequestEventData as cW, MergePullRequestAck as cX, DeployAgentEventData as cZ, TaskMessageEventData as cb, TaskModelUsage as cd, TaskUsageReportEventData as cf, TaskState as cg, ShowModalEventData as ci, ChangeTaskTitleEventData as ck, TaskStateChangeEventData as cm, CreditExhaustedEventData as co, RtcIceServer as cq, RtcIceServersRequestEventData as cs, RtcIceServersResponseEventData as cu, MachineRtcRequestEventData as cw, MachineRtcResponseEventData as cy, TaskUsageSummary as d, HookFactory as d$, HivePublishEventData as d1, HivePublishCompleteEventData as d3, HiveInstallEventData as d5, HiveInstallCompleteEventData as d7, EventData as dA, SeqSyncRequestEventData as dC, SeqSyncResponseEventData as dE, EventMap as dF, EventName as dG, WorkerTaskEvent as dI, RpcCallEventData as dL, MachineRpcCallEventData as dN, RpcResponseData as dP, AgentContext as dQ, AgentrixContext as dR, FrameworkType as dU, AgentMetadata as dV, ClaudeAgentConfig as dW, AgentConfig as dX, ValidationResult as dY, LoadAgentOptions as dZ, RepositoryInitHookInput as d_, UpdateAgentInfoEventData as da, AssociateRepoEventData as db, SystemMessageType as dc, PrStateChangedData as dd, SystemMessageEventData as df, DaemonGitlabOperation as dh, DaemonGitlabRequestEventData as dj, DaemonGitlabResponseEventData as dl, RepositoryInboxWebhookEventData as dp, CompanionHeartbeatRequestData as dr, CompanionHeartbeatResponseData as dt, CompanionInitRequestData as dv, CompanionInitResponseData as dx, ResetTaskSessionEventData as dz, StartTaskRequest as e, StartTaskResponse as g, EnsureIssueRootTaskRequest as h, TaskItem as j, EnsureIssueRootTaskResponse as l, ListTasksRequest as m, ListTasksResponse as p, ResumeTaskRequest as q, ResumeTaskResponse as u, CancelTaskRequest as v, CancelTaskResponse as z };
3720
+ export { FillEventsRequestSchema as $, StopTaskRequestSchema as A, CancelTaskRequestSchema as C, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, stopTaskRequestSchema as F, StopTaskResponseSchema as G, PermissionResponseRequestSchema as I, permissionResponseRequestSchema as K, ListTasksRequestSchema as L, PermissionResponseResponseSchema as M, ProjectEntrySchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, TaskTodoSchema as T, ProjectDirectoryResponseSchema as U, QueryEventsRequestSchema as X, WorkerExecutionModeSchema as a, CreateMergeRequestSchema as a2, createMergeRequestSchema as a4, CreateMergeRequestResponseSchema as a5, ApprovePrRequestSchema as a7, ApprovePrResponseSchema as a9, GetTaskSessionResponseSchema as aA, ListSubTasksRequestSchema as aC, SubTaskSummarySchema as aE, ListSubTasksResponseSchema as aG, ListRecentTasksRequestSchema as aI, RecentTaskSummarySchema as aK, ListRecentTasksResponseSchema as aM, FindTaskByAgentRequestSchema as aO, FindTaskByAgentResponseSchema as aQ, HiveListingTypeSchema as aS, HiveAuthorTypeSchema as aU, HiveListingStatusSchema as aW, HiveSortSchema as aY, HiveListingSchema as a_, CreateTaskShareSchema as ab, CreateTaskShareResponseSchema as ad, ArchiveTaskRequestSchema as af, ArchiveTaskResponseSchema as ah, UnarchiveTaskRequestSchema as aj, UnarchiveTaskResponseSchema as al, UpdateTaskTitleRequestSchema as an, UpdateTaskTitleResponseSchema as ap, SendTaskMessageRequestSchema as as, SendTaskMessageResponseSchema as au, ShowModalRequestSchema as aw, ShowModalResponseSchema as ay, isAskUserResponseMessage as b$, PublishToHiveRequestSchema as b0, PublishToHiveResponseSchema as b2, HiveListQuerySchema as b4, HiveListResponseSchema as b6, UpdateHiveListingRequestSchema as b8, HiveCommentListResponseSchema as bA, HiveInstalledItemSchema as bC, HiveInstalledResponseSchema as bE, HiveMyListingsResponseSchema as bG, AskUserOptionSchema as bI, AskUserQuestionSchema as bK, AskUserMessageSchema as bM, AskUserResponseStatusSchema as bO, AskUserResponseReasonSchema as bP, AskUserResponseMessageSchema as bS, TaskAgentInfoSchema as bY, isAskUserMessage as b_, UpdateHiveVersionRequestSchema as ba, HiveInstallRequestSchema as bc, HiveInstallSchema as be, HiveInstallResponseSchema as bg, RecordHiveInstallRequestSchema as bi, RecordHiveInstallResponseSchema as bk, HiveReviewSchema as bm, CreateHiveReviewRequestSchema as bo, UpdateHiveReviewRequestSchema as bq, HiveReviewListResponseSchema as bs, HiveCommentSchema as bu, CreateHiveCommentRequestSchema as bw, UpdateHiveCommentRequestSchema as by, TaskUsageSummarySchema as c, isCompanionHeartbeatMessage as c0, isCompanionReminderMessage as c1, isSubTaskAskUserMessage as c2, isSDKMessage as c3, isSDKUserMessage as c4, createEventId as c5, EventAckSchema as c6, AppAliveEventSchema as c8, WorkerStatusValueSchema as cA, WorkerStatusSnapshotSchema as cC, ChatWorkersStatusRequestSchema as cE, ChatWorkersStatusResponseSchema as cG, ListModelsEventSchema as cI, baseTaskSchema as cK, createTaskSchema as cL, resumeTaskSchema as cN, cancelTaskSchema as cP, StopTaskSchema as cR, TaskArtifactsStatsSchema as cT, PreviewProjectTypeSchema as cV, PreviewMethodSchema as cX, PreviewMetadataSchema as cZ, TaskArtifactsSummarySchema as c_, ApiServerAliveEventSchema as ca, MachineAliveEventSchema as cc, ShutdownMachineSchema as ce, WorkerInitializingSchema as cg, WorkerInitializedSchema as ci, WorkerPermissionModeValueSchema as ck, WorkerReadySchema as cm, ActiveAgentSchema as co, WorkerAliveEventSchema as cq, WorkerExitSchema as cs, WorkerRunningSchema as cu, WorkerPermissionModeSchema as cw, WorkerStatusRequestSchema as cy, AssociateRepoEventDataSchema as d$, TaskMessageSchema as d0, TaskModelUsageSchema as d2, TaskUsageReportEventSchema as d4, ShowModalEventDataSchema as d7, ChangeTaskTitleEventSchema as d9, TaskSlashCommandSchema as dA, TaskSlashCommandsUpdateEventDataSchema as dC, MergeRequestEventSchema as dE, TaskStoppedEventSchema as dG, SubTaskResultUpdatedEventSchema as dI, SubTaskAskUserEventSchema as dK, MergePullRequestEventSchema as dM, DeployAgentEventSchema as dP, DeployAgentCompleteEventSchema as dR, HivePublishEventSchema as dT, HivePublishCompleteEventSchema as dV, HiveInstallEventSchema as dX, HiveInstallCompleteEventSchema as dZ, TaskStateChangeEventSchema as db, CreditExhaustedEventSchema as dd, RtcIceServerSchema as df, RtcIceServersRequestSchema as dh, RtcIceServersResponseSchema as dj, MachineRtcRequestSchema as dl, MachineRtcResponseSchema as dn, RtcSignalSchema as dq, WorkspaceFileRequestSchema as ds, WorkspaceFileResponseSchema as du, UpdateTaskAgentSessionIdEventSchema as dw, TaskInfoUpdateEventDataSchema as dy, UpdateAgentInfoEventSchema as e0, SystemMessageSchema as e5, DaemonGitlabOperationSchema as e7, DaemonGitlabRequestSchema as e9, RpcCallEventSchema as eA, MachineRpcCallEventSchema as eC, RpcResponseSchema as eE, setAgentContext as eI, getAgentContext as eJ, FRAMEWORK_TYPES as eS, AgentMetadataSchema as eT, ClaudeConfigSchema as eU, AgentError as eV, AgentNotFoundError as eW, AgentConfigValidationError as eX, FrameworkNotSupportedError as eY, AgentLoadError as eZ, MissingAgentFileError as e_, DaemonGitlabResponseSchema as eb, RepositoryInboxProviderSchema as ed, RepositoryInboxWebhookSchema as ee, CompanionHeartbeatRequestSchema as eg, CompanionHeartbeatResponseSchema as ei, CompanionInitRequestSchema as ek, CompanionInitResponseSchema as em, ResetTaskSessionSchema as eo, SeqSyncRequestEventDataSchema as er, SeqSyncResponseEventDataSchema as et, EventSchemaMap as ex, workerTaskEvents as ez, StartTaskResponseSchema as f, TaskItemSchema as i, EnsureIssueRootTaskResponseSchema as k, normalizeWorkerExecutionMode as n, ListTasksResponseSchema as o, resumeTaskRequestSchema as r, startTaskSchema as s, ResumeTaskResponseSchema as t, workerExecutionModes as w, cancelTaskRequestSchema as x, CancelTaskResponseSchema as y };
3721
+ export type { StopTaskRequest as B, StopTaskResponse as H, PermissionResponseRequest as J, PermissionResponseResponse as N, PreviewMetadata as P, ProjectEntry as Q, ProjectDirectoryResponse as V, WorkerExecutionMode as W, QueryEventsRequest as Y, TaskEvent as Z, QueryEventsResponse as _, HiveListing as a$, FillEventsRequest as a0, FillEventsResponse as a1, CreateMergeRequestRequest as a3, CreateMergeRequestResponse as a6, ApprovePrRequest as a8, GetTaskSessionResponse as aB, ListSubTasksRequest as aD, SubTaskSummary as aF, ListSubTasksResponse as aH, ListRecentTasksRequest as aJ, RecentTaskSummary as aL, ListRecentTasksResponse as aN, FindTaskByAgentRequest as aP, FindTaskByAgentResponse as aR, HiveListingType as aT, HiveAuthorType as aV, HiveListingStatus as aX, HiveSort as aZ, ApprovePrResponse as aa, CreateTaskShareRequest as ac, CreateTaskShareResponse as ae, ArchiveTaskRequest as ag, ArchiveTaskResponse as ai, UnarchiveTaskRequest as ak, UnarchiveTaskResponse as am, UpdateTaskTitleRequest as ao, UpdateTaskTitleResponse as aq, SendMessageTarget as ar, SendTaskMessageRequest as at, SendTaskMessageResponse as av, ShowModalRequest as ax, ShowModalResponse as az, TaskTodo as b, PublishToHiveRequest as b1, PublishToHiveResponse as b3, HiveListQuery as b5, HiveListResponse as b7, UpdateHiveListingRequest as b9, HiveCommentListResponse as bB, HiveInstalledItem as bD, HiveInstalledResponse as bF, HiveMyListingsResponse as bH, AskUserOption as bJ, AskUserQuestion as bL, AskUserMessage as bN, AskUserResponseStatus as bQ, AskUserResponseReason as bR, AskUserResponseMessage as bT, CompanionHeartbeatMessage as bU, CompanionReminderMessage as bV, SubTaskAskUserMessage as bW, TaskMessagePayload as bX, TaskAgentInfo as bZ, UpdateHiveVersionRequest as bb, HiveInstallRequest as bd, HiveInstall as bf, HiveInstallResponse as bh, RecordHiveInstallRequest as bj, RecordHiveInstallResponse as bl, HiveReview as bn, CreateHiveReviewRequest as bp, UpdateHiveReviewRequest as br, HiveReviewListResponse as bt, HiveComment as bv, CreateHiveCommentRequest as bx, UpdateHiveCommentRequest as bz, TaskArtifactsSummary as c$, EventAckData as c7, AppAliveEventData as c9, WorkerStatusValue as cB, WorkerStatusSnapshot as cD, ChatWorkersStatusRequestEventData as cF, ChatWorkersStatusResponseEventData as cH, ListModelsEventData as cJ, CreateTaskEventData as cM, ResumeTaskEventData as cO, CancelTaskEventData as cQ, StopTaskEventData as cS, TaskArtifactsStats as cU, PreviewProjectType as cW, PreviewMethod as cY, ApiServerAliveEventData as cb, MachineAliveEventData as cd, ShutdownMachineData as cf, WorkerInitializingEventData as ch, WorkerInitializedEventData as cj, WorkerPermissionModeValue as cl, WorkerReadyEventData as cn, ActiveAgent as cp, WorkerAliveEventData as cr, WorkerExitEventData as ct, WorkerRunningEventData as cv, WorkerPermissionModeEventData as cx, WorkerStatusRequestEventData as cz, TaskUsageSummary as d, TaskMessageEventData as d1, TaskModelUsage as d3, TaskUsageReportEventData as d5, TaskState as d6, ShowModalEventData as d8, TaskSlashCommand as dB, TaskSlashCommandsUpdateEventData as dD, MergeRequestEventData as dF, TaskStoppedEventData as dH, SubTaskResultUpdatedEventData as dJ, SubTaskAskUserEventData as dL, MergePullRequestEventData as dN, MergePullRequestAck as dO, DeployAgentEventData as dQ, DeployAgentCompleteEventData as dS, HivePublishEventData as dU, HivePublishCompleteEventData as dW, HiveInstallEventData as dY, HiveInstallCompleteEventData as d_, ChangeTaskTitleEventData as da, TaskStateChangeEventData as dc, CreditExhaustedEventData as de, RtcIceServer as dg, RtcIceServersRequestEventData as di, RtcIceServersResponseEventData as dk, MachineRtcRequestEventData as dm, MachineRtcResponseEventData as dp, RtcSignalEventData as dr, WorkspaceFileRequestEventData as dt, WorkspaceFileResponseEventData as dv, UpdateTaskAgentSessionIdEventData as dx, TaskInfoUpdateEventData as dz, StartTaskRequest as e, UpdateAgentInfoEventData as e1, AssociateRepoEventData as e2, SystemMessageType as e3, PrStateChangedData as e4, SystemMessageEventData as e6, DaemonGitlabOperation as e8, RpcCallEventData as eB, MachineRpcCallEventData as eD, RpcResponseData as eF, AgentContext as eG, AgentrixContext as eH, FrameworkType as eK, AgentMetadata as eL, ClaudeAgentConfig as eM, AgentConfig as eN, ValidationResult as eO, LoadAgentOptions as eP, RepositoryInitHookInput as eQ, HookFactory as eR, DaemonGitlabRequestEventData as ea, DaemonGitlabResponseEventData as ec, RepositoryInboxWebhookEventData as ef, CompanionHeartbeatRequestData as eh, CompanionHeartbeatResponseData as ej, CompanionInitRequestData as el, CompanionInitResponseData as en, ResetTaskSessionEventData as ep, EventData as eq, SeqSyncRequestEventData as es, SeqSyncResponseEventData as eu, EventMap as ev, EventName as ew, WorkerTaskEvent as ey, StartTaskResponse as g, EnsureIssueRootTaskRequest as h, TaskItem as j, EnsureIssueRootTaskResponse as l, ListTasksRequest as m, ListTasksResponse as p, ResumeTaskRequest as q, ResumeTaskResponse as u, CancelTaskRequest as v, CancelTaskResponse as z };