Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

gate-info-research门信息研究

Agent Skill

gate-info-research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

979

周安装

40

GitHub Stars

26

下载量

314
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gate-info-research(门信息研究)
来源仓库:https://github.com/gate/gate-skills
仓库路径:skills/gate-info-research
安装命令:
npx skills add https://github.com/gate/gate-skills --skill gate-info-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gate/gate-skills --skill gate-info-research

简介

gate-info-research 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无额外功能说明,建议进一步查阅来源仓库获取详细文档和使用示例。

SKILL.md

gate-info-research

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 → Also read info-news-runtime-rules.md for gate-info and gate-news shared rules (tool degradation, report standards, security, routing).

  • 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.

CLI and playbook contract

  1. Every CLI command in this skill MUST exist under gate-cli v0.5.2. Do not invent +coin-overview / +market-overview / other aggregate shortcuts. If a shortcut ships in a later CLI, it will be opt-in via the playbook's cli_future_shortcut field, not by editing this file.
  2. Call gate-cli info … / gate-cli news … only as listed in playbooks/gate-info-research.yaml. This primary skill does not call Gate MCP tools when preflight route is CLI (MCP is for legacy wrapper skills only).
  3. Always pass --format json on data-collection commands. Never mix JSON and pretty output in the same pipeline.
  4. If a required slot (e.g. symbol for single_coin) cannot be parsed with high confidence, ask the user to clarify. Never guess a ticker from a project name.
  5. Cross-domain allowed: gate-info-research MAY call gate-cli news … when the research_plus_news playbook fires. It MUST NOT take over user queries whose primary intent is news / events / community; those route to gate-news-intel.
  6. Final user-facing reports may use the user’s locale; this SKILL.md stays English for discovery and indexing (see repository CLAUDE.md rule 1).

Step 0 — Preflight

Follow the shared contract in skills/_shared/preflight.md verbatim. Summary:

  1. Run gate-cli preflight --format json; parse .route, .status, .user_message.
  2. Branch: CLI → continue; MCP_FALLBACK → emit __FALLBACK__ and halt; BLOCK → echo user_message and halt.
  3. When status == "ready_with_migration_warning", remember it — Step 3 appends one migrate hint at the end of the report.

Do NOT run the first data-collection command until Step 0 returns route == "CLI".



Step 1 — Intent routing

Map the user's query to exactly one playbook id. Read the playbook definitions from playbooks/gate-info-research.yaml. The mapping below is authoritative.

Playbook idWhen to pickRequired slotsLegacy skill it covers
single_coin"analyze SOL", "how is BTC", "is ETH worth watching", no explicit extra dimension.symbolgate-info-coinanalysis
market_overview"market right now", "how is the broad market", "which sectors are hot", no specific coin.gate-info-marketoverview
multi_coin"compare BTC and ETH", "BTC vs SOL vs ARB", 2–20 tickers.symbolsgate-info-coincompare
trend"give me a technical analysis of BTC", "SOL RSI / MACD", "BTC price direction / TA view".symbolgate-info-trendanalysis
macro"impact of NFP on BTC", "CPI impact on markets", "Fed rate decision and crypto".gate-info-macroimpact
research_plus_news"analyze SOL and also check recent news and sentiment", "analysis plus sentiment / news".symbolmulti-legacy fan-out

Slot extraction rules

  • symbol is the ticker (BTC, ETH, SOL). If the user gives a project name ("Solana", "Arbitrum"), confirm or ask.
  • symbols is a list; strip duplicates; keep display casing consistent.
  • time_range is the user's broad news-context window. PER-COMMAND ENUM narrowing — the super-set is 1h / 24h / 7d / 30d, but individual commands accept narrower sets. Before forwarding a user-supplied time_range to any command, clamp it against that command's arg_enums in the playbook (CLAUDE.md rule 9): search-news accepts 1h / 24h / 7d / 30d, search-ugc accepts 1h / 24h / 7d / 30d / all, get-social-sentiment and get-latest-events accept ONLY 1h / 24h / 7d (CLI rejects 30d with INVALID_ARGUMENTS). For longer windows on get-latest-events, switch to --start-time / --end-time (unix-ms).
  • period (the analysis window consumed by markettrend get-technical-analysis --period and get-kline --period). Server enum: 1h / 4h / 24h / 3d / 5d / 7d / 10d / all. Default 3d. Legacy aliases 1d → use 24h; 1w → use 7d. Do NOT pass 1d or 1w — CLI returns INTEL_RESULT_ERROR: invalid period.
  • timeframe has two variants:

- get-kline --timeframe enum: 1m / 5m / 15m / 1h / 4h / 1d (required, no default). - get-market-snapshot --timeframe and get-indicator-history --timeframe enum: 15m / 1h / 4h / 1d (get-market-snapshot default 1h; get-indicator-history required). 1m / 5m are NOT valid on these two.

  • indicators (for trend) defaults to rsi,macd,ma30,ma200lowercase only. Uppercase (RSI, MACD) passes CLI validation but the server returns empty rows silently. Unsupported windows (ma20, ma50) also return empty rows — use the server-populated set: rsi, macd, macd_difference, ma7, ma30, ma120, ma200, ema7, ema30, ema200, boll_upper_band, boll_middle_band, boll_lower_band. See skills/gate-info-research/references/cli-reference.md (section get-indicator-history) for the full field list.
  • If a required slot is missing, STOP and ask the user.

Cross-skill routing at Step 1

User signalRoute to
"is this coin / contract / address safe", "honeypot / blacklist / has risk" (safety-first).gate-info-risk (primary; ship round 1).
"who is this address", "smart money", "whale", "DeFi TVL", "protocol metrics", "exchange reserves".gate-info-web3 (primary)
"why did BTC crash", "latest news", "community view", "Reddit", "YouTube".gate-news-intel (primary)

Step 2 — Data collection

Execute the chosen playbook. Each command MUST include --format json. Commands in the same parallel_group run concurrently; the agent waits for the group before entering the next group or synthesis.

2.A single_coin

CommandRequired argsNotes
gate-cli info coin get-coin-info--query {symbol} --scope fullFundamentals, sector, tokenomics, investors.
gate-cli info marketsnapshot get-market-snapshot--symbol {symbol} --scope fullPrice, 24h / 7d change, OI, funding, sentiment bundle.
gate-cli info markettrend get-technical-analysis--symbol {symbol}Multi-timeframe bull / bear / neutral.
gate-cli news feed search-news *(optional)*--coin {symbol} --limit 5 --sort-by importance --time-range 24hTop 5 news.
gate-cli news feed get-social-sentiment *(optional)*--coin {symbol} --time-range 24hSocial polarity + mention volume.

2.B market_overview

CommandRequired args
gate-cli info marketsnapshot get-market-overview(no flags)
gate-cli info coin get-coin-rankings--ranking-type popular --limit 20
gate-cli info coin get-coin-rankings--ranking-type top_gainers --time-range 24h --limit 10
gate-cli info coin get-coin-rankings--ranking-type top_losers --time-range 24h --limit 10

2.C multi_coin

Run once:

  • gate-cli info marketsnapshot batch-market-snapshot --symbols {s1} --symbols {s2} … --scope full (the --symbols flag is a repeatable stringArray).

Then run per symbol in parallel:

  • gate-cli info coin get-coin-info --query {symbol} --scope basic
  • gate-cli info markettrend get-technical-analysis --symbol {symbol} *(optional)*

2.D trend

  • gate-cli info markettrend get-technical-analysis --symbol {symbol} --period {period|3d}
  • gate-cli info markettrend get-kline --symbol {symbol} --timeframe {timeframe|1d} --size 120 --with-indicators true
  • gate-cli info markettrend get-indicator-history --symbol {symbol} --timeframe {timeframe|1d} --indicators rsi --indicators macd --indicators ma30 --indicators ma200 --limit 120

2.E macro

  • gate-cli info macro get-macro-summary
  • gate-cli info macro get-economic-calendar --start-date {today} --end-date {today+14d} --importance high
  • gate-cli info macro get-macro-indicator --indicator {indicator|CPI} --country {country|US} --mode series --size 12 *(optional)*
  • If the user names a coin, also: gate-cli info marketsnapshot get-market-snapshot --symbol {symbol} --scope basic.

2.F research_plus_news

Run everything from single_coin plus (parallel):

  • gate-cli news feed search-news --coin {symbol} --limit 10 --sort-by importance --time-range {time_range|24h}
  • gate-cli news feed get-social-sentiment --coin {symbol} --time-range {time_range|24h} — clamp time_range to 1h / 24h / 7d before sending
  • gate-cli news feed search-ugc --coin {symbol} --time-range {time_range|7d} --platform all --limit 20 *(optional)*
  • gate-cli news events get-latest-events --coin {symbol} --time-range {time_range|7d} --limit 15 *(optional)* — clamp time_range to 1h / 24h / 7d before sending

Failure policy

  • If a required command fails or returns an error payload, abort the playbook and surface the user-actionable CLI error.
  • If an optional command fails, continue and mark the corresponding section as no data in Step 3.
  • Never fabricate numbers; never fill a missing dimension with inferred values.

Step 3 — Synthesis

Aggregate the JSON payloads into the fixed 6-section report. Section order is mandatory and matches the product requirements spec.

Report template

## {subject} — Research report

### 1. Executive summary
- Core view (neutral framing: **stronger / softer / needs monitoring**; not investment advice)
- Up to 3 supporting data points
- Up to 2 main risk observations

### 2. Fundamentals and market position
{Positioning, sector, valuation (MC / FDV), funding / investors, unlocks. Sources: `info coin get-coin-info`.}

### 3. Market and trend
**Snapshot**
| Field | Value | Read |
|------|------|------|
| Price | ... | ... |
| 24h / 7d change | ... | ... |
| Funding | ... | ... |
| Sentiment / fear-greed | ... | ... |

**Technicals**
- Short term (1h / 4h): {bull / bear / neutral}
- Medium term (1d / 1w): {bull / bear / neutral}
- Key support / resistance: ...

Sources: `get-market-snapshot`, `get-technical-analysis`, `get-kline`, `get-indicator-history`, `get-market-overview`, `get-coin-rankings`, `batch-market-snapshot`, `get-macro-summary`, `get-economic-calendar`, `get-macro-indicator` as applicable to the chosen playbook.

### 4. Recent news and market tone
- **Factual events** (from `news feed search-news` / `news events get-latest-events`): ...
- **Community tone** (from `news feed get-social-sentiment` / `news feed search-ugc`): ...

Keep facts and community tone in separate subsections. If no news commands ran, mark **no data** for this section.

### 5. Risk notes
- Data-backed risk bullets (e.g. elevated RSI, near-term unlock, extreme funding, related incidents)
- Cite the originating command for each item

### 6. What to watch next
- Macro / unlock / protocol events in the next 7–14 days
- Technical triggers (e.g. “if price loses X, bias turns weaker”)

> This report is based on public data and tool output; it is not investment advice.

Decision thresholds (applied inside section 3 and 5)

ConditionFlag in report
RSI > 70 (latest row of get-indicator-history)"RSI overbought — elevated short-term pullback risk"
RSI < 30"RSI oversold — potential bounce"
24h volume > 2× 7d avg volume"Significant volume surge"
24h volume < 0.5× 7d avg volume"Notable volume decline"
funding_rate > 0.05% (from get-market-snapshot)"High funding rate — long crowding"
funding_rate < -0.05%"Negative funding rate — short crowding"
Fear & Greed > 75"Extreme Greed — exercise caution"
Fear & Greed < 25"Extreme Fear — potential opportunity"
Upcoming token unlock within 30 days > 5% of circulating supply (from get-coin-info)"Large upcoming token unlock — potential sell pressure"

Migrate hint (only if Step 0 status was ready_with_migration_warning)

At the very end of the final user-facing report, append verbatim the single migration blockquote line defined under Migration hint in skills/_shared/report-style.md (the line that begins with ⚙️ and references gate-cli migrate --dry-run). Do not paraphrase.


Cross-skill routing + Safety rules

Routing

Follow the shared matrix in skills/_shared/routing.md. Research-skill-specific follow-ups:

Follow-up intentTarget
"is it safe", "honeypot", "blacklist", "compliance"gate-info-risk (primary)
"trace this address", "smart money", "whale"gate-info-web3 (primary)
"why did it crash", "community take"gate-news-intel (primary)
"only need the technical read"Re-enter trend playbook
"only need the latest news feed"Re-enter research_plus_news with time_range 24h

Safety rules

Follow the shared contract in skills/_shared/report-style.md. Research-specific reminders:

  1. No buy / sell advice — strongest allowed phrasing is stronger / softer / needs monitoring (neutral).
  2. No specific price targets.
  3. Every section cites at least one command id from Step 2 (sources are named in the playbook's report_sections[*].source_commands).
  4. Missing data → mark no data; never fabricate.

References

FileLoad when...
skills/gate-info-research/references/scenarios.mdUnsure which playbook id to pick. Each row maps a concrete prompt to a playbook + expected behavior.
skills/gate-info-research/references/cli-reference.mdYou need a full flag table (types / required / defaults) for any gate-cli info or gate-cli news command this skill uses.
skills/gate-info-research/references/troubleshooting.mdA command failed, a slot is ambiguous, or a report-integrity rule might be about to break.
skills/_shared/preflight.mdStep 0 contract (verbatim snippet + 5-status matrix).
skills/_shared/routing.mdCross-skill routing matrix.
skills/_shared/report-style.mdSafety + report-format rules shared across all primaries.
skills/_shared/update-workflow.mdSkill update check/apply workflow.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.63%
按下载量换算115

Claude

28.33%
按下载量换算89

Cursor

20.97%
按下载量换算66

Gemini CLI

8.98%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/gate/gate-skills --skill gate-info-research 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills