You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prompt: "How can I implement distributed tracing with OpenTelemetry across the order service saga, ensuring that trace contexts are properly propagated through Kafka events and database transactions while maintaining correlation IDs for debugging payment and fulfillment failures?",
199
-
projectPath: "simple_order_management_system"
200
-
},
197
+
// {
198
+
// prompt: "How can I implement distributed tracing with OpenTelemetry across the order service saga, ensuring that trace contexts are properly propagated through Kafka events and database transactions while maintaining correlation IDs for debugging payment and fulfillment failures?",
199
+
// projectPath: "simple_order_management_system"
200
+
// },
201
201
// {
202
202
// prompt: "I need to refactor the current synchronous order creation flow to support asynchronous batch processing with dead letter queues for failed orders, implementing circuit breaker patterns for the pricing service calls and adding retry mechanisms with exponential backoff for Kafka publishing failures.",
// prompt: "Refactor the customer creation flow to persist newly created customers in a SQL database instead of the in-memory customerStore map, implementing a repository layer with connection pooling, parameterized queries for security, and proper error handling for database failures while maintaining data validation and response consistency in the CustomerService.",
371
+
// projectPath: "order_management_system"
372
+
// },
373
+
{
374
+
prompt: "Change the delete endpoint in CustomerService so that instead of permanently removing the customer, it marks them as inactive by setting a deletedAt timestamp.",
375
+
projectPath: "order_management_system"
376
+
},
377
+
{
378
+
prompt: "Add a stockQuantity validation to the order creation flow so that when an order is successfully placed, the stock count of each ordered product is decremented in the product store.",
379
+
projectPath: "order_management_system"
380
+
},
369
381
{
370
-
prompt: "Refactor the customer creation flow to persist newly created customers in a SQL database instead of the in-memory customerStore map, implementing a repository layer with connection pooling, parameterized queries for security, and proper error handling for database failures while maintaining data validation and response consistency in the CustomerService.",
382
+
prompt: "Add a coupon code system where customers can apply a discount coupon during order creation. The coupon should validate against a coupon store and reduce the total order amount accordingly.",
0 commit comments