AI Agent Hub
Back to skills
Multi-Platform Rebate Assistant icon

Multi-Platform Rebate Assistant

Life Service Updated 2026.08.30

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

Please install @user_c4d672ca/pdd-rebate using https://skillhub.cn/install/skillhub.md

About this skill

Problem

Rebate workflows often expose too many steps to users: link conversion, authorization, search, and withdrawal are easy to confuse. This skill keeps the user-facing path simple by routing requests into three fixed scenarios: S01 for authorization and tutorials, S02 for link-based rebates, and S03 for product search. Users can send a Taobao, JD, or Pinduoduo link, or describe what they want to buy, and the skill maps the request to the right backend flow.

How It Works

The core entrypoint is rebate_assistant_router.js, which routes based on input:
- If the message contains tutorial, withdrawal, or balance-related terms, it enters S01 and runs fixed actions such as start_auth, withdraw_prepare, and account_balance.
- If the message contains an http:// or https:// product link, it enters S02, recognizes the platform, and generates a rebate link.
- If the user expresses a shopping intent without a link, it enters S03, outputs product_search_intent and search_request, then the user can bring a search-result link back into S02.

Boundaries

  • Script stdout must be returned as-is; do not add explanations or invent rebate codes.
  • It currently handles Taobao, JD, and Pinduoduo product links only.
  • If authorization is missing or an API fails, the skill must not assume a rebate has been generated.
  • S03 converts purchase intent into a search request; it does not complete the rebate payout directly.

Use Cases

  • Send a Taobao, JD, or Pinduoduo product link to recognize the platform and generate a rebate link.
  • On first use, review WeChat authorization, withdrawal tutorial, and account balance flow.
  • Without a product link, describe brand, model, category, budget, or gifting context to build a search request.
  • Before confirming a withdrawal, check the available balance and trigger the required confirmation step.

Best For

  • Price-comparison users who want to turn e-commerce product links into rebate entries quickly
  • New users who need to check WeChat authorization, withdrawal rules, and account balance
  • Shopping-assistant users who describe brand, model, or budget to locate products
  • Developers who need to consume the S03 search request for a downstream product-search API