← Back to Skills Marketplace
gate-exchange

Gate Exchange LaunchPool Skill

by Gate · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
139
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install gate-exchange-launchpool
Description
Gate LaunchPool staking and airdrop skill. Use when the user asks to browse LaunchPool, stake or redeem, or check airdrop rewards. Triggers on 'LaunchPool',...
README (SKILL.md)

Gate LaunchPool Suite

General Rules

⚠️ STOP — You MUST read and strictly follow the shared runtime rules before proceeding. Do NOT select or call any tool until all rules are read. These rules have the highest priority. → Read gate-runtime-rules.md

  • Only call MCP tools explicitly listed in this skill. Tools not documented here must NOT be called, even if they exist in the MCP server.

MCP Dependencies

Required MCP Servers

MCP Server Status
Gate (main) ✅ Required

MCP Tools Used

Query Operations (Read-only)

  • cex_launch_list_launch_pool_pledge_records
  • cex_launch_list_launch_pool_projects
  • cex_launch_list_launch_pool_reward_records

Execution Operations (Write)

  • cex_launch_create_launch_pool_order
  • cex_launch_redeem_launch_pool

Authentication

Installation Check

  • Required: Gate (main)
  • Install: Run installer skill for your IDE
    • Cursor: gate-mcp-cursor-installer
    • Codex: gate-mcp-codex-installer
    • Claude: gate-mcp-claude-installer
    • OpenClaw: gate-mcp-openclaw-installer

MCP Mode

Read and strictly follow references/mcp.md, then execute this skill's LaunchPool workflow.

  • SKILL.md keeps routing and product semantics.
  • references/mcp.md is the authoritative MCP execution layer for project/record queries, stake-redeem confirmation gates, and result verification.

Module overview

Module Description Trigger keywords
Projects Browse LaunchPool project list, filter by status/APR/coin/pool type projects, activities, events, ongoing, ended, warming up, APY, APR, which LaunchPool
Stake Stake tokens to a LaunchPool project stake, participate, join, pledge, contribute, put in
Redeem Early redeem staked assets from a project redeem, withdraw, unstake, take out, exit, pull out
Pledge Records Query staking/redemption participation history pledge records, participation history, staking records, my LaunchPool history
Reward Records Query airdrop reward distribution history airdrop, rewards, earnings, reward records, airdrop history, LaunchPool income

Domain Knowledge

LaunchPool concepts

Concept Description
LaunchPool A platform feature where users stake existing tokens to earn new token airdrops. Projects have a fixed staking period.
Project (pid) A LaunchPool campaign for a specific new token. Has start/end time, total reward pool, and staking rules.
Reward Pool (rid) Within a project, different reward pools exist for different staking coins (e.g. USDT pool, BTC pool). Each has its own estimated APR.
Staking Period The duration during which users can stake and earn rewards. After the period ends, rewards are distributed.
Estimated APR rate_year — the estimated Annual Percentage Rate (simple, no compounding) for a reward pool. Users may say "APY" colloquially; always display as "Estimated APR" in output.
Newbie Pool Special pool with lower entry requirements or bonus rewards for new users (limit_rule=1).
Normal Pool Standard staking pool open to all users (limit_rule=0).
Status (project_state) Project lifecycle: Warming up (2) → In progress (1) → Ended (3). The request param status also supports 0 (All) and 4 (In progress + Warming up).
Personal Limit Maximum/minimum staking amount per user per reward pool (personal_max_amount / personal_min_amount).
Transaction Config Tiered participation conditions based on the user's 60-day total trading volume (in USD). Each tier defines a transaction_amount threshold and a corresponding mortgage_limit (personal staking cap, unit follows the reward pool's staking coin). If the user's trading volume is below the lowest tier, the staking limit is 0 (not eligible to participate). The transaction_config array is optional — only some reward pools have it.

Timestamp formatting

The create_timest and reward_timest fields in pledge/reward records are pre-formatted strings from the API (e.g. "2026-03-16 09:32:22"). Display them as-is in the data row and put (UTC) in the table header instead of appending to each value.

Project time fields (start_timest, end_timest) are internal data — do NOT display them to the user.

Reward records time params: The reward records API requires start_time/end_time as integer unix timestamps, which are error-prone to calculate. Follow the Timestamp strategy in references/records.md (Strategy 1: skip time params for recent queries; Strategy 2: use anchor table for historical ranges). Do NOT attempt to mentally compute unix timestamps without the anchor table.

Number formatting

Category Precision Examples
Amounts (staking, redeem, rewards) 8 decimals, trailing zeros removed 1.23 not 1.23000000
Rate fields (Estimated APR) 2 decimals, trailing zeros retained 5.20% not 5.2%

Routing rules

Intent Example phrases Route to
Browse projects "Show LaunchPool projects", "What LaunchPool events are ongoing?", "Highest APR LaunchPool", "Any USDT LaunchPool?", "Newbie pool projects" Read references/launch-projects.md
Stake "Stake 500 USDT to LaunchPool BTC project", "I want to participate in LaunchPool", "Put 1000 USDT into LaunchPool" Read references/stake-redeem.md (Stake section)
Redeem "Redeem my LaunchPool BTC stake", "Withdraw from LaunchPool", "Unstake my USDT from LaunchPool" Read references/stake-redeem.md (Redeem section)
Pledge records "My LaunchPool participation last month", "Show my LaunchPool staking records", "Check my BTC LaunchPool pledge history" Read references/records.md (Part 1: Pledge Records)
Reward records "My LaunchPool airdrop rewards", "Check LaunchPool earnings this month", "Show my BTC LaunchPool airdrop" Read references/records.md (Part 2: Reward Records)
Unclear "LaunchPool", "launch pool" Clarify: projects / stake / redeem / pledge records / reward records, then route

Execution

1. Intent and parameters

  • Determine module (Projects / Stake / Redeem / Pledge Records / Reward Records).
  • Stake intent: If the user wants to stake tokens, route to references/stake-redeem.md Stake section. Requires project identification + amount + user confirmation.
  • Redeem intent: If the user wants to redeem, route to references/stake-redeem.md Redeem section. Requires project identification + amount + user confirmation.
  • Extract parameters: coin, pid, rid, amount, status, sort_type, limit_rule, page, start_time, end_time.
  • Missing: if user says "LaunchPool" without specifying intent, ask which operation or show projects by default.

2. Tool selection

Module MCP tool Required params Optional params
Projects cex_launch_list_launch_pool_projects page, page_size status, sort_type, mortgage_coin, search_coin, limit_rule
Stake cex_launch_create_launch_pool_order body (JSON: pid, rid, amount)
Redeem cex_launch_redeem_launch_pool body (JSON: pid, rid, amount)
Pledge Records cex_launch_list_launch_pool_pledge_records coin, type, start_time, end_time, page, page_size
Reward Records cex_launch_list_launch_pool_reward_records page, page_size coin, status, start_time, end_time
  • Stake: First call cex_launch_list_launch_pool_projects to identify the target project pid and reward pool rid, then show preview, wait for confirmation, then call cex_launch_create_launch_pool_order.
  • Redeem: Show preview of the redemption, wait for confirmation, then call cex_launch_redeem_launch_pool.

3. Format response

  • Use the Response Template and field names from the reference file for the chosen module.
  • Projects: show name, project_state, total_amount, days, and per reward pool: coin, rate_year, already_buy_total_amount, personal_max_amount/personal_min_amount, transaction_config. Do NOT display start_timest/end_timest, pid, or rid.
  • Stake/Redeem: show order preview first, then confirmation result. Stake returns flow_id; Redeem returns success boolean.
  • Pledge Records: show create_timest, reward_coin, coin, amount, type (1=Stake, 2=Redeem). Note: API does not return project name.
  • Reward Records: show reward_timest, coin (reward coin), valid_mortgage_amount, amount_base, amount_ext. Note: API does not return project name.

Report template

After each operation, output a short standardized result consistent with the reference (e.g. project list table, stake confirmation, redeem confirmation, pledge record list, reward record list). Use the exact response fields from the API (see references) so the user sees correct field names and values.

Language adaptation: Always respond in the same language as the user's input. The Response Templates in reference files define the structure and fields to display, not the literal output language. Translate all display labels to match the user's language.

Do NOT translate (keep as-is regardless of language):

  • Product name: LaunchPool
  • Currency symbols from API: USDT, GT, BTC, DOGE, etc.
  • Project names from API name field (e.g. "DOGE", "USDT-rudy")
  • Technical IDs and their values: pid, rid, flow_id (internal use only, do NOT display to user)
  • Timestamp format including the (UTC) suffix
  • API error labels: INVALID_PARAM_VALUE, INSUFFICIENT_BALANCE, INVALID_CREDENTIALS, PROJECT_NOT_FOUND
  • Numeric values, percentages, and the unit USD in trading volume thresholds

All other display labels should be translated to match the user's language.

Error Handling

API error labels

The API returns structured errors with a label field. Map them as follows:

API label User-facing message
INVALID_PARAM_VALUE "Invalid request parameters. Please check your input and try again."
INVALID_CREDENTIALS "Please log in to access LaunchPool features."
INSUFFICIENT_BALANCE "Insufficient balance. Please top up first."
PROJECT_NOT_FOUND "The specified LaunchPool project was not found."

Empty result handling

Scenario Action
Empty project list "No LaunchPool projects match your criteria. Try different filters or check back later."
Empty pledge records "You have no LaunchPool participation records. Browse active projects to get started."
Empty reward records "No airdrop rewards found. Rewards are typically distributed after the staking period ends."
Compliance restriction "Due to compliance restrictions, LaunchPool is not available in your region."
Stake limit exceeded "This project has a personal staking limit. Please reduce your amount."
API error / 401 "Unable to fetch LaunchPool data. Please try again later." or "Please log in to access LaunchPool features."

Safety rules

Confirmation required

  • Stake and Redeem are write operations. Before calling cex_launch_create_launch_pool_order or cex_launch_redeem_launch_pool, MUST show an order preview and wait for explicit user confirmation.
  • Preview format: project name, staking coin, amount, estimated APR (for stake), staking period.
  • Ask user to reply "confirm" to proceed or "cancel" to abort.
  • Only call the API after receiving explicit confirmation.

Compliance

  • When the API returns a compliance or region restriction error, display a friendly message: "Due to compliance restrictions, LaunchPool is not available in your region." Do NOT retry.
Usage Guidance
This skill appears to do what it claims (project browsing, stake, redeem, and record queries) and is instruction-only (no code to run locally), which keeps the attack surface small. Before installing or enabling write actions, confirm these points: 1) Credential handling — the SKILL.md requires a Gate API key with Launch:Write permissions, but the registry metadata lists no required env var; check how your agent/MCP connector will store and scope that API key (prefer least privilege and short-lived keys if possible). 2) Confirm the MCP server endpoint(s) and trustworthiness of the MCP integration (the skill will call Gate MCP tools to perform actions). 3) The skill reads an external runtime rules file on GitHub; review that file if you want to audit additional runtime constraints. 4) The skill enforces a preview→confirm flow for writes — do not bypass confirmation. If you need higher assurance, request the publisher/repo provenance or require the skill to declare its credential input mechanism explicitly (e.g., primaryEnv) before enabling it.
Capability Analysis
Type: OpenClaw Skill Name: gate-exchange-launchpool Version: 1.0.1 The Gate Exchange LaunchPool skill bundle is a legitimate integration for managing cryptocurrency staking and airdrops. It implements robust safety protocols, specifically requiring explicit user confirmation ('Preview-Confirm' flow) before executing any write operations like staking or redeeming tokens (found in SKILL.md and references/stake-redeem.md). The instructions are highly detailed, focusing on data formatting, error handling for compliance/insufficient balances, and strict adherence to specific MCP tools, with no evidence of data exfiltration, unauthorized network calls, or malicious prompt injection.
Capability Assessment
Purpose & Capability
Name/description (Gate LaunchPool staking, airdrops, browse/stake/redeem/records) align with the documented MCP tools and workflows. All declared MCP tool calls (list projects, create order, redeem, pledge/reward records) are coherent with the stated capabilities.
Instruction Scope
SKILL.md contains detailed, narrow runtime instructions that stay within LaunchPool functionality: intent resolution, parameter parsing, specific MCP tool calls, preview-confirm UX for write ops, and clear pagination/timestamp rules. It does reference an external runtime rules file on GitHub (gate-runtime-rules.md) and several included reference docs, but it does not instruct reading arbitrary local files or exfiltrating data outside the Gate MCP endpoints.
Install Mechanism
Instruction-only skill with no install spec and no bundled code — minimal disk/exec footprint. This reduces installation risk.
Credentials
SKILL.md explicitly states "API Key Required: Yes" and that write operations need Launch:Write permissions, but the registry metadata lists no required environment variables or primary credential. That mismatch should be resolved: stake/redeem operations legitimately require a Gate API key (scoped to necessary permissions), but the skill metadata does not declare how credentials are provided. Verify how your agent/MCP connector supplies and scopes the API key before enabling write operations.
Persistence & Privilege
No 'always: true'. The skill does not ask to modify other skills or agent-wide settings. Autonomous invocation is allowed (default) but that's expected; the skill requires explicit user confirmation before any write (stake/redeem) per its own SOP.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gate-exchange-launchpool
  3. After installation, invoke the skill by name or use /gate-exchange-launchpool
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Added new reference file `references/mcp.md` as the authoritative source for MCP execution, project/record queries, and stake-redeem confirmation. - Updated skill description to clarify core LaunchPool operations and trigger phrases. - Instructed to strictly follow `references/mcp.md` for MCP mode, with `SKILL.md` focused on routing and semantics. - No changes to module coverage, core workflow, or tool definitions. - General clarifications to text, trigger guidance, and internal document routing.
v1.0.0
Gate LaunchPool Suite skill initial release. - Supports browsing ongoing, upcoming, or past LaunchPool projects with various filter options. - Enables staking tokens to LaunchPool projects and redeeming staked assets. - Allows users to view personal participation (pledge) history and airdrop reward records. - Includes detailed routing and parameter extraction logic for handling requests. - Requires Gate API key with Launch:Write permission.
Metadata
Slug gate-exchange-launchpool
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Gate Exchange LaunchPool Skill?

Gate LaunchPool staking and airdrop skill. Use when the user asks to browse LaunchPool, stake or redeem, or check airdrop rewards. Triggers on 'LaunchPool',... It is an AI Agent Skill for Claude Code / OpenClaw, with 139 downloads so far.

How do I install Gate Exchange LaunchPool Skill?

Run "/install gate-exchange-launchpool" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gate Exchange LaunchPool Skill free?

Yes, Gate Exchange LaunchPool Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gate Exchange LaunchPool Skill support?

Gate Exchange LaunchPool Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gate Exchange LaunchPool Skill?

It is built and maintained by Gate (@gate-exchange); the current version is v1.0.1.

💬 Comments