技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 180 · 3 current installs · 3 all-time installs
⭐ 0
安装量(当前) 3
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:2663629531/meme-risk-radar-skill
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's code, docs, and metadata contain several inconsistencies around billing environment variables and interfaces (different env var names and parameter names in code vs docs/tests), which makes its behaviour unclear and could cause unexpected exposure of billing API keys or broken billing flows.
目的
The skill's stated purpose (Binance Web3 meme token risk scanning) matches the code that calls Binance Web3 endpoints and produces risk reports. However the registry metadata declares no required env vars while SKILL.md documents several billing-related environment variables; the billing code looks for differently named env vars (e.g., build_billing_client checks SKILL_BILLING_API_KEY and SKILL_ID, while SKILL.md and other files reference SKIL…
说明范围
SKILL.md instructs running the bundled Python scripts (scan/audit/health). Those scripts perform only network calls (Binance Web3 API and the SkillPay billing endpoint) and local JSON output; they do not attempt to read unrelated system files or trading keys. This stays within the stated purpose. However the billing instructions direct the agent to read API keys from environment variables and call external billing endpoints; that external netw…
安装机制
No install specification is provided (instruction-only skill plus bundled Python scripts). Dependencies are minimal (requests in requirements.txt). No downloads from arbitrary URLs or archive extraction are present in the manifest.
证书
The skill expects billing credentials for pay-per-call behavior, which is proportionate to the monetization design, but the implementation is inconsistent about which env vars are required: SKILL.md documents SKILLPAY_APIKEY / SKILLPAY_BILLING_URL / SKILLPAY_PRICE_USDT, billing code's SkillPayBillingClient defaults to SKILLPAY_BILLING_URL, but build_billing_client requires SKILL_BILLING_API_KEY and SKILL_ID. Tests and other files also referenc…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Meme Risk Radar」。简介:Bilingual meme token risk radar for Binance Web3 data. Scan newly launched or f…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/2663629531/meme-risk-radar-skill/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: meme-risk-radar-skill
description: Bilingual meme token risk radar for Binance Web3 data. Scan newly launched or fast-rising meme tokens from Meme Rush, enrich with token audit and token info, produce a normalized risk report in Chinese or English, and support SkillPay billing hooks for paid scan and audit calls.
---
# Skill: meme-risk-radar-skill
## Purpose
Use this skill to turn Binance Web3 meme discovery data into a tradable risk workflow.
It is designed for users who want fast meme coverage, but need structured filtering before deciding whether to research further.
Default output supports both `zh` and `en`.
## Product Positioning
- Built for traders, researchers, alpha groups, and content operators who need faster meme token triage.
- Focus on `risk-first discovery`: find candidates first, then downgrade obvious traps before deeper research.
- Suitable for ClawHub-style paid usage because value is tied to each actionable scan, not to raw static content.
## Trust Posture
- Read-only by default. This skill does not place orders or request exchange trading keys.
- Secrets are read only from environment variables and are never hard-coded.
- Output is explainable: every score is backed by visible signals such as holder concentration, dev share, liquidity, audit hits, and tax flags.
- User-facing language must remain neutral. Never promise profits or "safe coins."
## Commands
Run from the skill root:
```bash
python3 scripts/meme_risk_radar.py scan --chain solana --stage new --limit 10 --lang zh
python3 scripts/meme_risk_radar.py scan --chain bsc --stage finalizing --limit 5 --lang en --min-liquidity 10000
python3 scripts/meme_risk_radar.py audit --chain bsc --contract 0x1234... --lang en
python3 scripts/meme_risk_radar.py health
```
## Output Contract
Each scan returns:
- `chain`
- `stage`
- `lang`
- `generated_at_utc`
- `tokens[]`
Each token entry contains:
- `symbol`
- `name`
- `contract_address`
- `score`
- `risk_level`
- `summary`
- `signals[]`
- `metrics`
- `audit`
- `links`
## Billing Hook (SkillPay)
- Bill only `scan` and `audit`.
- Read API key from `SKILLPAY_APIKEY`.
- Default price is read from `SKILLPAY_PRICE_USDT` (default `0.002`).
- Do not hard-code secrets.
## Suggested Monetization
- Entry offer: charge per `scan` and per `audit`, keep `health` free.
- Recommended starting price: `0.002 USDT` per call for public listing, then raise after usage data is stable.
- Best value narrative for users: "pay for a filtered shortlist, not for raw token noise."
- If later adding premium tiers, gate advanced filters, watchlists, exports, or alert delivery instead of the base explanation output.
## Required/Useful Env Vars
- `SKILLPAY_APIKEY` (required for paid mode)
- `SKILLPAY_BASE_URL` (optional, default `https://skillpay.me`)
- `SKILLPAY_CHARGE_URL` (optional override)
- `SKILLPAY_CHARGE_PATH` (optional, default `/charges`)
- `SKILLPAY_USER_REF` (optional, default `anonymous`)
- `SKILLPAY_PRICE_USDT` (optional, default `0.002`)
- `SKILLPAY_BILLING_MODE` (optional, `skillpay` or `noop`)
- `BINANCE_WEB3_BASE_URL` (optional, default `https://web3.binance.com`)
- `BINANCE_HTTP_TIMEOUT_SEC` (optional, default `12`)
## Notes
- This skill is a risk-filtering tool, not an execution tool.
- `LOW` risk never means safe. The report is a point-in-time snapshot.
- Keep user-facing language neutral. Do not give trading guarantees or profit promises.