End-to-end order processing workflow for VNOM system. Use when users upload PDF order forms from customers or request order processing. Handles PDF extraction, customer/item validation, stock checking, discount application, order creation, reorder monitoring, and email response generation.
Complete workflow for processing customer orders from PDF forms through order creation and customer response.
This skill orchestrates the complete order processing workflow:
When user uploads a PDF order form, read the PDF extraction skill:
view references/pdf-order-extraction.md
This extracts customer details and order items from the PDF.
After extraction, read the validation skill:
view references/order-validation.md
This validates customer exists and all items are found in VNOM. If validation fails, stop processing and explain the error clearly.
After successful validation, read the stock checking skill:
view references/stock-availability.md
This checks if sufficient stock exists and applies exception rules for Education segment.
After confirming stock availability, read the discount policy skill:
view references/discount-policy.md
This determines the discount based on customer segment.
Use the VNOM MCP create_order function with:
Create one order per item in the order form.
After creating all orders, read the reorder check skill:
view references/reorder-check.md
This identifies if any items now need restocking.
Finally, read the response generation skill:
view references/response-generation.md
This creates a professional email response for the customer.
If any step fails:
User uploads PDF and says something like:
The skill handles the complete workflow automatically.