Gate Exchange welfare center new user task skill with MCP tools integration. Use this skill whenever user asks about welfare benefits, new user rewards, how to claim rewards, or available tasks. Trigger phrases include: what welfare, how to claim rewards, new user benefits, new user tasks, what tasks can I do, claim reward. CRITICAL: Must use real MCP data, never provide fake reward information. All documentation in English.
Read and follow gate-runtime-rules.md first.
Welfare center new user task entry Skill (version 2026.3.18-6, with MCP tools integration). When users ask about benefits/rewards/tasks, first determine if they are new users. Show all new user onboarding task details for new users, guide existing users to official website or App.
Trigger Scenarios: Execute this Skill when users mention welfare benefits, new user rewards, task claiming, reward claiming and other related keywords.
| User Intent | Keywords / Patterns | Routing |
|---|---|---|
| Query welfare / rewards / tasks (general) | "what welfare", "how to claim rewards", "what tasks can I do", "welfare", "rewards" | Execute this Skill → Determine user type first |
| Query new user benefits / rewards | "new user benefits", "how to claim new user rewards", "new user tasks", "new user benefits", "newbie rewards" | Execute this Skill → Determine user type first |
| Spot trading | "buy BTC", "sell ETH" | Route to gate-exchange-spot |
| Asset query | "how much USDT do I have", "check balance" | Route to gate-exchange-assets |
| Deposit | "how to deposit", "how to fund account" | Route to deposit related Skill |
Call MCP tool to query whether the current user is a new user.
| Step | MCP Tool | Parameters | Data Retrieved |
|---|---|---|---|
| 1 | cex_welfare_get_user_identity (User identity determination interface) | Automatically get current user identity | Returns code=0 (qualifies as new user) or error codes (1001=existing user, 1002=risk control, 1003=sub-account, 1004=agent, 1005=market maker, 1006=enterprise, 1008=not logged in) |
Enter corresponding branch based on returned result:
Trigger Condition: Step 1 determines user as existing user (cex_welfare_get_user_identity returns code=1001).
No additional MCP tool calls needed, directly output guidance text.
Output Template:
Please visit Gate web at https://www.gate.com/rewards_hub or open Gate App to view welfare tasks and rewards.
Trigger Condition: Step 1 determines user as new user (cex_welfare_get_user_identity returns code=0).
| Step | MCP Tool | Parameters | Data Retrieved |
|---|---|---|---|
| 2 | cex_welfare_get_beginner_task_list (Query beginner guidance task list) | Automatically get current user tasks | Get beginner guidance task list, including registration tasks (type=10) and guidance tasks (type=11), each task contains reward information, completion status and task description |
Important Note: Must use real task data obtained from MCP interface in Step 2, absolutely cannot fabricate or use template example data!
Based on the real task data returned from Step 2, output to users in the following format:
data.tasks array returned by cex_welfare_get_beginner_task_listtask_name, task_desc, reward_num, reward_unit, statusstatus=1 shows "Pending", status=2 shows "Completed"Data mapping rules:
task_name fieldtask_desc fieldreward_num fieldreward_unit fieldstatus field (1=Pending, 2=Completed)Please visit Gate web at https://www.gate.com/rewards_hub or open Gate App to view welfare tasks and rewards.
🎁 Your exclusive new user tasks are as follows. Complete tasks to claim corresponding rewards:
{for each task in task_list:}
📌 {task_name}
{task_desc}
💰 Reward: {reward_num} {reward_unit}
Status: {Display based on status field: 1=Pending, 2=Completed}
---
⚠️ Non-agent, non-institutional users and users with normal account status can complete tasks and claim rewards. Specific tasks and rewards are subject to final display on Gate official website/App.
Example Output:
🎁 Your exclusive new user tasks are as follows. Complete tasks to claim corresponding rewards:
{Generate dynamically based on actual task data returned from MCP interface, format:}
📌 {task_name}
{task_desc}
💰 Reward: {reward_num} {reward_unit}
Status: {Display based on status field: 1=Pending, 2=Completed}
{Repeat above format until all tasks are displayed}
---
⚠️ Non-agent, non-institutional users and users with normal account status can complete tasks and claim rewards. Specific tasks and rewards are subject to final display on Gate official website/App.
| Exception Type | Handling Method |
|---|---|
| Existing user (code=1001) | Execute existing user guidance: Prompt to visit https://www.gate.com/rewards_hub |
| Risk control user (code=1002) | Prompt: "Your account is temporarily unable to participate in new user activities, please contact customer service for details" |
| Sub-account (code=1003) | Prompt: "Sub-accounts cannot participate in new user activities, please log in with main account" |
| Agent user (code=1004) | Prompt: "Agent users cannot participate in new user activities" |
| Market maker (code=1005) | Prompt: "Market maker users cannot participate in new user activities" |
| Enterprise user (code=1006) | Prompt: "Enterprise users cannot participate in new user activities" |
| Not logged in (code=1008) | Prompt: "Please log in to your Gate account first before querying welfare tasks" |
| Unable to determine user type (interface timeout/exception) | Prompt: "Welfare information is temporarily unavailable, please try again later, or visit https://www.gate.com/rewards_hub directly" |
| New user task list is empty | Prompt: "No new user tasks available at the moment, please check later, or visit https://www.gate.com/rewards_hub for more benefits" |
| Interface returns other errors | Generic fallback: "Service is temporarily unavailable, please try again later" |
| User Follow-up Intent | Routing Target |
|---|---|
| User wants to complete "First Deposit" task | Route to deposit / funding Skill |
| User wants to complete "First Trade" task | Route to gate-exchange-spot |
| User wants to complete "Identity Verification" task | Show guidance text: Go to Gate web or open Gate App to complete KYC |
| User asks about asset balance | Route to gate-exchange-assets |
cex_welfare_get_beginner_task_list interface.