$npx -y skills add gate/gate-skills --skill gate-exchange-newcoinNew listing DD and event radar via gate-cli (info/news/cex): listings, fundamentals, risk, sentiment, tape, LaunchPool calendar; optional first spot/Alpha order after Action Draft + Y/N. Use this skill whenever the user asks about new listings, pre-listing research, launchpool, r
| 1 | # New Coin Due Diligence and Event Radar (New Coin Radar) |
| 2 | |
| 3 | ## General Rules |
| 4 | |
| 5 | ⚠️ STOP — You MUST read and strictly follow the shared runtime rules before proceeding. |
| 6 | Do NOT select or call any tool until all rules are read. These rules have the highest priority. |
| 7 | → Read `./references/gate-runtime-rules.md` |
| 8 | - **Only use the `gate-cli` commands explicitly listed in this skill.** Commands not documented here must NOT be run for these workflows, even if other interfaces expose them. |
| 9 | |
| 10 | --- |
| 11 | |
| 12 | ## Skill Dependencies |
| 13 | |
| 14 | - **Before any `gate-cli` invocation:** ensure `gate-cli` is installed. Let `GATE_CLI_BIN="${GATE_OPENCLAW_SKILLS_BIN:-$HOME/.openclaw/skills/bin}/gate-cli"`. If **`[ ! -x "$GATE_CLI_BIN" ]`** (and `command -v gate-cli` also fails if you rely on `PATH`), **run** [`setup.sh`](./setup.sh) (e.g. `sh ./setup.sh` from this skill directory), then re-check. |
| 15 | - **No MCP servers** are required for this skill; execution is **`gate-cli` only** (see published mapping: [gate-cli](https://github.com/gate/gate-cli)). |
| 16 | |
| 17 | ### gate-cli commands used (deduplicated minimal set) |
| 18 | |
| 19 | **Query operations (read-only)** |
| 20 | |
| 21 | - `gate-cli info coin get-coin-info` |
| 22 | - `gate-cli info compliance check-token-security` |
| 23 | - `gate-cli info onchain get-address-info` (when the user supplies an explicit on-chain address and chain context) |
| 24 | - `gate-cli news feed get-exchange-announcements` |
| 25 | - `gate-cli news events get-latest-events` |
| 26 | - `gate-cli news feed search-news` |
| 27 | - `gate-cli news feed get-social-sentiment` |
| 28 | - `gate-cli cex launch projects` |
| 29 | - `gate-cli cex spot market ticker` |
| 30 | - `gate-cli cex spot market orderbook` |
| 31 | |
| 32 | **Execution operations (write; API credentials required)** |
| 33 | |
| 34 | - `gate-cli cex spot order buy` / `gate-cli cex spot order sell` |
| 35 | - `gate-cli cex alpha order place` (for Alpha market workflows; prefer `gate-cli cex alpha order quote` first when available per [`gate-cli` Alpha docs](https://github.com/gate/gate-cli)) |
| 36 | |
| 37 | ### Authentication |
| 38 | |
| 39 | - **Interactive file setup:** when **`GATE_API_KEY`** and **`GATE_API_SECRET`** are **not** both set on the host, run **`gate-cli config init`** to complete the wizard (see [gate-cli](https://github.com/gate/gate-cli)). |
| 40 | - **Env / flags:** **`gate-cli config init`** is **not** required when credentials are already supplied — e.g. **both** **`GATE_API_KEY`** and **`GATE_API_SECRET`** set — never ask the user to paste secrets into chat. |
| 41 | - **Permissions:** Read flows use public `info` / `news` CLI paths; **`cex` market reads** typically do not require keys; **order placement** requires **`Spot:Write`** (spot) and appropriate Alpha permissions for **`cex alpha`** writes. |
| 42 | - **Portal:** create or rotate keys outside the chat: https://www.gate.com/myaccount/profile/api-key/manage |
| 43 | |
| 44 | ### Installation check |
| 45 | |
| 46 | - **Required:** `gate-cli` (install via [`setup.sh`](./setup.sh) when missing). |
| 47 | - **Sanity check:** Confirm `gate-cli --version` before relying on scripted flows. |
| 48 | |
| 49 | ## Execution mode |
| 50 | |
| 51 | **Read and strictly follow** [`references/gate-cli.md`](./references/gate-cli.md), then execute routing, signal detection (S1–S5), and confirmation gates in th |