Relay events and notifications context
/plugin marketplace add violetio/violet-ai-plugins/plugin install v-relay@violetThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Relay handles events, notifications, and data feeds across the Violet platform. It's the central nervous system for asynchronous communication.
| Topic Pattern | Purpose |
|---|---|
orders.order.* | Order lifecycle events |
products.product.* | Product update events |
merchants.merchant.* | Merchant account events |
fulfillment.* | Fulfillment tracking events |
inventory.* | Stock level changes |
{
"event_type": "order.created",
"event_id": "uuid",
"timestamp": "2024-01-01T00:00:00Z",
"version": "1.0",
"payload": {
"order_id": 12345,
"app_id": 67890
},
"metadata": {
"source": "OrderService",
"correlation_id": "uuid"
}
}
| Repo | Purpose |
|---|---|
FeedManagementService | Feed generation and delivery |
NotificationService | Notification routing |
EventBridge | Event processing infrastructure |