원클릭으로
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.