|
26 | 26 | }, |
27 | 27 | { |
28 | 28 | "name": "archive_failed_messages", |
29 | | - "description": "Use this tool to dismiss multiple failed messages at once that do not need to be retried. This operation changes system state. Good for questions like: \u0027archive these messages\u0027, \u0027dismiss these failures\u0027, or \u0027archive messages msg-1, msg-2, msg-3\u0027. Prefer ArchiveFailureGroup when all messages share the same failure cause \u2014 use this tool when you have a specific set of message IDs to archive.", |
| 29 | + "description": "Use this tool to dismiss multiple failed messages at once that do not need to be retried. This operation changes system state. It may affect many messages. Good for questions like: \u0027archive these messages\u0027, \u0027dismiss these failures\u0027, or \u0027archive messages msg-1, msg-2, msg-3\u0027. Prefer ArchiveFailureGroup when all messages share the same failure cause \u2014 use this tool when you have a specific set of message IDs to archive.", |
30 | 30 | "inputSchema": { |
31 | 31 | "type": "object", |
32 | 32 | "properties": { |
|
54 | 54 | }, |
55 | 55 | { |
56 | 56 | "name": "archive_failure_group", |
57 | | - "description": "Use this tool to dismiss an entire failure group \u2014 all messages that failed with the same exception type and stack trace. This operation changes system state. Good for questions like: \u0027archive this failure group\u0027, \u0027dismiss all NullReferenceException failures\u0027, or \u0027archive the whole group\u0027. This is the most efficient way to archive many related failures at once. You need a group ID, which you can get from GetFailureGroups. Returns InProgress if an archive operation is already running for this group.", |
| 57 | + "description": "Use this tool to dismiss an entire failure group \u2014 all messages that failed with the same exception type and stack trace. This operation changes system state. It may affect many messages. Good for questions like: \u0027archive this failure group\u0027, \u0027dismiss all NullReferenceException failures\u0027, or \u0027archive the whole group\u0027. This is the most efficient way to archive many related failures at once. You need a failure group ID, which you can get from GetFailureGroups. Returns InProgress if an archive operation is already running for this group.", |
58 | 58 | "inputSchema": { |
59 | 59 | "type": "object", |
60 | 60 | "properties": { |
|
317 | 317 | }, |
318 | 318 | { |
319 | 319 | "name": "retry_all_failed_messages", |
320 | | - "description": "Use this tool to retry every unresolved failed message across all queues and endpoints. This operation changes system state. Good for questions like: \u0027retry everything\u0027, \u0027reprocess all failures\u0027, or \u0027retry all failed messages\u0027. It affects all unresolved failed messages across the instance. This is a broad operation \u2014 prefer RetryFailedMessagesByQueue, RetryAllFailedMessagesByEndpoint, or RetryFailureGroup when you can scope the retry more narrowly.", |
| 320 | + "description": "Use this tool to retry every unresolved failed message across all queues and endpoints. This operation changes system state. It may affect many messages. Good for questions like: \u0027retry everything\u0027, \u0027reprocess all failures\u0027, or \u0027retry all failed messages\u0027. It affects all unresolved failed messages across the instance. This is a broad operation \u2014 prefer RetryFailedMessagesByQueue, RetryAllFailedMessagesByEndpoint, or RetryFailureGroup when you can scope the retry more narrowly.", |
321 | 321 | "inputSchema": { |
322 | 322 | "type": "object", |
323 | 323 | "properties": {} |
|
334 | 334 | }, |
335 | 335 | { |
336 | 336 | "name": "retry_all_failed_messages_by_endpoint", |
337 | | - "description": "Use this tool to retry all failed messages for a specific NServiceBus endpoint. This operation changes system state. Good for questions like: \u0027retry all failures in the Sales endpoint\u0027, \u0027the bug in Shipping is fixed, retry its failures\u0027, or \u0027reprocess all errors for this endpoint\u0027. Useful when a bug in one endpoint has been fixed and all its failures should be reprocessed.", |
| 337 | + "description": "Use this tool to retry all failed messages for a specific NServiceBus endpoint. This operation changes system state. It may affect many messages. Good for questions like: \u0027retry all failures in the Sales endpoint\u0027, \u0027the bug in Shipping is fixed, retry its failures\u0027, or \u0027reprocess all errors for this endpoint\u0027. Useful when a bug in one endpoint has been fixed and all its failures should be reprocessed.", |
338 | 338 | "inputSchema": { |
339 | 339 | "type": "object", |
340 | 340 | "properties": { |
|
384 | 384 | }, |
385 | 385 | { |
386 | 386 | "name": "retry_failed_messages", |
387 | | - "description": "Use this tool to reprocess multiple specific failed messages at once. This operation changes system state. Good for questions like: \u0027retry these messages\u0027, \u0027reprocess messages msg-1, msg-2, msg-3\u0027, or \u0027retry this batch\u0027. Prefer RetryFailureGroup when all messages share the same failure cause \u2014 use this tool when you have a specific set of message IDs to retry.", |
| 387 | + "description": "Use this tool to reprocess multiple specific failed messages at once. This operation changes system state. It may affect many messages. Good for questions like: \u0027retry these messages\u0027, \u0027reprocess messages msg-1, msg-2, msg-3\u0027, or \u0027retry this batch\u0027. Prefer RetryFailureGroup when all messages share the same failure cause \u2014 use this tool when you have a specific set of message IDs to retry.", |
388 | 388 | "inputSchema": { |
389 | 389 | "type": "object", |
390 | 390 | "properties": { |
|
412 | 412 | }, |
413 | 413 | { |
414 | 414 | "name": "retry_failed_messages_by_queue", |
415 | | - "description": "Use this tool to retry all unresolved failed messages from a specific queue. This operation changes system state. Good for questions like: \u0027retry all failures in the Sales queue\u0027, \u0027reprocess everything from this queue\u0027, or \u0027the queue consumer is back, retry its failures\u0027. Useful when a queue\u0027s consumer was down or misconfigured and is now fixed. Only retries messages with unresolved status.", |
| 415 | + "description": "Use this tool to retry all unresolved failed messages from a specific queue. This operation changes system state. It may affect many messages. Good for questions like: \u0027retry all failures in the Sales queue\u0027, \u0027reprocess everything from this queue\u0027, or \u0027the queue consumer is back, retry its failures\u0027. Useful when a queue\u0027s consumer was down or misconfigured and is now fixed. Only retries messages with unresolved status.", |
416 | 416 | "inputSchema": { |
417 | 417 | "type": "object", |
418 | 418 | "properties": { |
|
437 | 437 | }, |
438 | 438 | { |
439 | 439 | "name": "retry_failure_group", |
440 | | - "description": "Use this tool to retry all failed messages that share the same exception type and stack trace. This operation changes system state. Good for questions like: \u0027retry this failure group\u0027, \u0027the bug causing these NullReferenceExceptions is fixed, retry them\u0027, or \u0027retry all messages in this group\u0027. This is the most targeted way to retry related failures after fixing a specific bug. You need a group ID, which you can get from GetFailureGroups. Returns InProgress if a retry is already running for this group.", |
| 440 | + "description": "Use this tool to retry all failed messages that share the same exception type and stack trace. This operation changes system state. It may affect many messages. Good for questions like: \u0027retry this failure group\u0027, \u0027the bug causing these NullReferenceExceptions is fixed, retry them\u0027, or \u0027retry all messages in this group\u0027. This is the most targeted way to retry related failures after fixing a specific bug. You need a failure group ID, which you can get from GetFailureGroups. Returns InProgress if a retry is already running for this group.", |
441 | 441 | "inputSchema": { |
442 | 442 | "type": "object", |
443 | 443 | "properties": { |
|
487 | 487 | }, |
488 | 488 | { |
489 | 489 | "name": "unarchive_failed_messages", |
490 | | - "description": "Use this tool to restore multiple previously archived failed messages back to the unresolved list. This operation changes system state. Good for questions like: \u0027unarchive these messages\u0027, \u0027restore these failures\u0027, or \u0027unarchive messages msg-1, msg-2, msg-3\u0027. Prefer UnarchiveFailureGroup when restoring an entire group \u2014 use this tool when you have a specific set of message IDs.", |
| 490 | + "description": "Use this tool to restore multiple previously archived failed messages back to the unresolved list. This operation changes system state. It may affect many messages. Good for questions like: \u0027unarchive these messages\u0027, \u0027restore these failures\u0027, or \u0027unarchive messages msg-1, msg-2, msg-3\u0027. Prefer UnarchiveFailureGroup when restoring an entire group \u2014 use this tool when you have a specific set of message IDs.", |
491 | 491 | "inputSchema": { |
492 | 492 | "type": "object", |
493 | 493 | "properties": { |
|
515 | 515 | }, |
516 | 516 | { |
517 | 517 | "name": "unarchive_failure_group", |
518 | | - "description": "Use this tool to restore an entire archived failure group back to the unresolved list. This operation changes system state. Good for questions like: \u0027unarchive this failure group\u0027, \u0027restore all archived NullReferenceException failures\u0027, or \u0027unarchive the whole group\u0027. All messages that were archived together under this group will become available for retry again. You need a group ID, which you can get from GetFailureGroups. Returns InProgress if an unarchive operation is already running for this group.", |
| 518 | + "description": "Use this tool to restore an entire archived failure group back to the unresolved list. This operation changes system state. It may affect many messages. Good for questions like: \u0027unarchive this failure group\u0027, \u0027restore all archived NullReferenceException failures\u0027, or \u0027unarchive the whole group\u0027. All messages that were archived together under this group will become available for retry again. You need a failure group ID, which you can get from GetFailureGroups. Returns InProgress if an unarchive operation is already running for this group.", |
519 | 519 | "inputSchema": { |
520 | 520 | "type": "object", |
521 | 521 | "properties": { |
|
0 commit comments