ワンクリックで
order-fulfillment
Processes customer orders through inventory check, customer validation, shipping calculation, and fulfillment decision.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Processes customer orders through inventory check, customer validation, shipping calculation, and fulfillment decision.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A structured offline process for diagnosing and resolving customer-reported service issues using internal data and automated tools.
Systematically identifies and classifies dangerous goods hazard classes using multi-source data and quantitative severity assessment.
Detects and investigates traffic spoofing violations in affiliate marketing to determine enforcement actions.
Establishes a multi-tiered review system for classifying, escalating, and moderating user-generated video content.
Detects and investigates referral abuse violations to determine risk severity and appropriate enforcement actions.
Conducts pre-flight airworthiness verification through multi-layered inspection of mechanical components, electrical systems, and maintenance records.
| name | order-fulfillment |
| description | Processes customer orders through inventory check, customer validation, shipping calculation, and fulfillment decision. |
| required_tools | ["check_inventory","validate_customer","calculate_shipping","make_fulfillment_decision"] |
| output_fields | ["expected_output"] |
Call check_inventory with product_id and quantity_requested. Record the returned inventory_status (in_stock, low_stock, out_of_stock, insufficient_stock, or product_not_found) for use in Step 4.
Call validate_customer with customer_id and order_total. Record the returned customer_status (approved, review_required, or blocked) for use in Step 4.
Call calculate_shipping with destination_zip, package_weight, and shipping_speed. Record the returned shipping_cost for use in Step 4.
Call make_fulfillment_decision with inventory_status (from Step 1), customer_status (from Step 2), shipping_cost (from Step 3), and order_priority. The tool returns the final decision which is the expected_output: one of fulfill_immediately, fulfill_delayed, backorder, reject, or manual_review.