AI Agent Hub
Back to skills
Cake Uncle Order Query icon

Cake Uncle Order Query

Business Operations Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Install @user_c70e116b/dgss-order into the current AI assistant according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem to Solve

In customer support or operations, users may say “check my order”, “cake order”, or provide an order ID, but the product name still requires an internal order lookup. This skill turns that lookup into a reusable workflow: extract order_id from natural language, call the internal cake order system, and return a human-readable result.

How It Works and Where It Fits

The main flow is straightforward:
- identify the order number from input such as “order 43” or “order ID 88”;
- call GET https://trade.dangaoss.cn/cake_api/ck_orders?order_id={order_id};
- check whether the response code is 200;
- on success, return the cake product name in data; on failure, return the error message in msg.

It fits internal order confirmation, lightweight support answers, or an operations query entry point. If the user says “cake order” but provides no order number, the assistant should ask for the ID. The provided notes say the endpoint currently requires no authentication and is in test mode, so it should not be exposed to untrusted surfaces. The order number must be a valid number, and when the API returns a non-200 code, the response should surface the service-provided msg instead of guessing a product.

Use Cases

  • When support receives a query about order 43, use the order ID to return the matching cake product name.
  • When operations verifies a cake order, enter the order ID to get the product name from the data field.
  • When testing the internal order flow, call the API with a valid numeric order ID and check code and msg.
  • When the user asks for a cake order but provides no order ID, ask for the order ID before querying.

Best For

  • Support agents handling cake order questions who need to confirm which cake was purchased for an order.
  • Operations staff checking order product details who need to retrieve the cake name by order ID.
  • Engineers testing an internal order API who need to verify order ID lookup and error messaging.