← 返回 Skills 市场
815
总下载
1
收藏
3
当前安装
1
版本数
在 OpenClaw 中安装
/install dexscreener
功能描述
Query DexScreener market data - search pairs, inspect liquidity/volume, check boosted tokens, and fetch token orders.
使用说明 (SKILL.md)
DexScreener
Query DexScreener using the local CLI script.
Quick Start
# Search pairs
node {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query "solana" --limit 5
# Get pair details
node {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain "solana" --pair "\x3Cpair_address>"
# Top boosted tokens
node {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10
After Install - Suggested Setup
1. Add to daily market scan
Use in morning/evening briefs:
dexscreener search_pairs + top_boosted_tokens
2. Track specific tokens
node {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses "\x3Ctoken1>,\x3Ctoken2>" --limit 10
3. Check order/boost status for candidates
node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain "solana" --token "\x3Ctoken_address>" --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 20
Commands
Search and Pair Lookup
node {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query "SOL/USDC" --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain "solana" --pair "\x3Cpair_address>"
node {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses "\x3Ctoken1>,\x3Ctoken2>" --limit 10
Profiles and Boosts
node {baseDir}/scripts/dexscreener-cli.mjs latest_token_profiles --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10
Token Orders
node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain "solana" --token "\x3Ctoken_address>" --limit 10
Output Features
Typical payloads include:
- Pair metadata (chain, dex, pair address, symbols)
- Price and price change fields
- Liquidity and volume fields
- Boost/profile/order metadata
Default output is JSON for easy piping and automation.
API
Uses DexScreener public API endpoints (read-only):
- Base URL:
https://api.dexscreener.com - CLI supports override via
DEXSCREENER_BASE_URL
Security and Permissions
No API key required.
What this skill does:
- Makes HTTPS GET requests to DexScreener API
- Reads public market/pair/profile/boost/order data
What this skill does not do:
- No wallet connections
- No transactions or trading
- No credential handling
- No autonomous invocation (
disable-model-invocation: true)
安全使用建议
This skill is a simple, read-only CLI wrapper for the public DexScreener API and appears coherent. Before installing: ensure you have a trusted node runtime and are comfortable allowing the skill to make outbound HTTPS requests. Note that you (or an admin) can override the API base URL via DEXSCREENER_BASE_URL — only set this to a trusted endpoint, because pointing it at an attacker-controlled server would cause the CLI to fetch arbitrary data. No API keys or wallet access are required. If you need higher assurance, run the provided script in a sandbox and inspect network traffic to confirm it only queries the expected api.dexscreener.com endpoints.
功能分析
Type: OpenClaw Skill
Name: dexscreener
Version: 1.0.0
The skill bundle is benign. It provides a CLI to query the public DexScreener API for market data. The `SKILL.md` explicitly sets `disable-model-invocation: true`, preventing the AI agent from autonomously executing the skill, which is a strong defense against prompt injection. The `dexscreener-cli.mjs` script uses `encodeURIComponent` for all user-supplied URL path components, preventing URL injection, and only performs HTTPS GET requests to the specified API. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The `DEXSCREENER_BASE_URL` environment variable allows overriding the API endpoint, but this is a configuration option, not an inherent vulnerability or malicious act by the skill itself, as the default is the legitimate DexScreener API.
能力评估
Purpose & Capability
Name/description match the code and instructions: the script issues read-only HTTP GETs to DexScreener endpoints. Required binary (node) and examples in SKILL.md are appropriate for the stated purpose.
Instruction Scope
SKILL.md instructs running the included Node script against DexScreener public API endpoints. The instructions do not ask for unrelated file reads, credentials, or data exfiltration. The script only constructs API URLs, performs fetch GETs, and writes JSON to stdout.
Install Mechanism
No install spec is present (instruction-only plus a local CLI script), so nothing is downloaded or written during installation. This is low-risk and consistent with the skill's purpose.
Credentials
No required environment variables or credentials are declared. The code does honor optional environment variables (DEXSCREENER_BASE_URL and DEXSCREENER_TIMEOUT_MS) which are reasonable for testing/override purposes and do not involve secrets.
Persistence & Privilege
The skill does not request persistent or elevated privileges; always is false and disable-model-invocation is true (no autonomous invocation). It does not modify other skills or system configs.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install dexscreener - 安装完成后,直接呼叫该 Skill 的名称或使用
/dexscreener触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the dexscreener skill.
- Enables querying DexScreener market data via CLI: search pairs, get details, and check liquidity/volume.
- Supports fetching boosted tokens, token profiles, and token orders.
- Output is JSON by default for easy scripting and automation.
- No API key required; uses public DexScreener API endpoints.
- Skill must be invoked directly by users (does not run automatically).
元数据
常见问题
Dexscreener API 是什么?
Query DexScreener market data - search pairs, inspect liquidity/volume, check boosted tokens, and fetch token orders. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 815 次。
如何安装 Dexscreener API?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install dexscreener」即可一键安装,无需额外配置。
Dexscreener API 是免费的吗?
是的,Dexscreener API 完全免费(开源免费),可自由下载、安装和使用。
Dexscreener API 支持哪些平台?
Dexscreener API 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Dexscreener API?
由 Ben(@brs999)开发并维护,当前版本 v1.0.0。
推荐 Skills