← Back to Skills Marketplace
dll-create

Airdrop Monitor CN

by dll-create · GitHub ↗ · v0.1.3
cross-platform ✓ Security Clean
321
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install airdrop-monitor-cn
Description
空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。
README (SKILL.md)

Airdrop Monitor CN (实战版)

1) 准备配置

创建监控配置(可直接复制 config.example.json):

{
  "projects": [
    {
      "name": "ExampleProject",
      "sources": [
        {"name": "Official Announcement", "url": "https://example.com/announcements"},
        {"name": "Docs", "url": "https://example.com/docs"}
      ]
    }
  ]
}

2) 本地运行(无计费)

cd skills/airdrop-monitor-cn
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.py --config config.example.json

输出内容包含:

  • 变化来源(哪些页面内容变了)
  • 截止时间线索(自动从文本中提取)
  • 风险提示(助记词/私钥/可疑链接)
  • 今日 Top 动作(可直接执行)

3) 启用 SkillPay 计费(可选)

export SKILL_BILLING_API_KEY="sk_xxx"
export SKILL_ID="39bf8448-ceba-4764-8f73-b58ed00e4f57"
export SKILL_PRICE_USDT="0.001"   # 可选:每次调用扣费
python app.py --config config.example.json --channel discord --raw-user-id 123456

余额不足时返回 payment_url,用户充值后重试。

快速自检:

python verify_billing.py --user-id discord_123456 --amount 0.001

4) 定时执行(建议)

每 15 分钟跑一次(示例):

*/15 * * * * cd /path/to/skills/airdrop-monitor-cn && /path/to/.venv/bin/python app.py --config config.prod.json >> monitor.log 2>&1

5) 风险边界

  • 不承诺收益
  • 不提供投资建议
  • 不索要私钥或助记词
Usage Guidance
This skill appears to do what it says: it fetches configured announcement/docs URLs, looks for deadlines and risky keywords, and optionally charges via SkillPay. Before installing or providing keys: 1) Run it locally in a virtualenv or container and inspect the code (you already have the source). 2) Do not expose real private keys or wallets in the monitored pages; the tool only flags such keywords but does not require them. 3) If you enable billing, verify the billing endpoint (skillpay.me) is trustworthy and keep SKILL_BILLING_API_KEY secret (do not hardcode or share). 4) Be aware the skill performs outbound HTTP requests to target URLs and the billing API and writes a local .state file containing page hashes — store that state where you expect. 5) If you are concerned about network calls, run it in a restricted network environment or review logs from an initial dry run. Overall the package is internally consistent and proportionate to its stated purpose.
Capability Analysis
Type: OpenClaw Skill Name: airdrop-monitor-cn Version: 0.1.3 The airdrop-monitor-cn skill is a legitimate tool designed to monitor cryptocurrency project announcements for updates and deadlines. The code in app.py and monitor.py performs its stated functions—fetching URLs, hashing content to detect changes, and using regex to extract dates—while including proactive security features like detecting punycode domains and sensitive keywords (e.g., 'private key'). The billing integration with skillpay.me in billing.py is transparently documented and optional, and no evidence of malicious execution or data exfiltration was found.
Capability Assessment
Purpose & Capability
Name/description match the implementation: monitor.py fetches announcement/docs URLs, extracts deadline patterns, detects crypto-related risk keywords, and builds a daily action list. Optional billing support in billing.py aligns with the "可选计费" claim.
Instruction Scope
SKILL.md instructs only to run the included Python code, create a config JSON, and optionally set billing env vars. Runtime actions are limited to HTTP GETs of the configured URLs, local state file writes (.state/airdrop-monitor-state.json), and calls to the billing API when billing env vars are present. The instructions do not request unrelated system files or secrets.
Install Mechanism
There is no external install script or archive download. The package is instruction + source files and requires only the widely used 'requests' package per requirements.txt, so installation risk is low.
Credentials
No required env vars for basic monitoring. Optional env vars (SKILL_BILLING_API_KEY, SKILL_ID, SKILL_PRICE_USDT) are reasonable for an optional paid flow. Note: billing.py interacts with https://skillpay.me — verify that this billing endpoint is legitimate before supplying an API key.
Persistence & Privilege
always:false and the skill is user-invocable. The only persistent artifact is a local state file (.state/airdrop-monitor-state.json) storing page hashes; the skill does not modify other skills or system-wide settings. As with any networked code, autonomous invocation (default) allows it to make outbound HTTP requests when run.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install airdrop-monitor-cn
  3. After installation, invoke the skill by name or use /airdrop-monitor-cn
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.3
清理发布包:移除测试与本地环境文件(.venv/.tmp-test/.state/__pycache__),保留最小可运行商用文件集。
v0.1.2
实战化升级:新增可运行监控引擎(变化检测/截止线索/风险识别)、CLI入口、配置模板、SkillPay自检脚本与价格参数支持。
v0.1.1
Add SkillPay Python integration template (charge-before-execute, payment link fallback, env-safe config)
v0.1.0
Initial release: airdrop announcement monitoring, task-change alerts, deadline warnings, and risk checks
Metadata
Slug airdrop-monitor-cn
Version 0.1.3
License
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Airdrop Monitor CN?

空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。 It is an AI Agent Skill for Claude Code / OpenClaw, with 321 downloads so far.

How do I install Airdrop Monitor CN?

Run "/install airdrop-monitor-cn" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Airdrop Monitor CN free?

Yes, Airdrop Monitor CN is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Airdrop Monitor CN support?

Airdrop Monitor CN is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Airdrop Monitor CN?

It is built and maintained by dll-create (@dll-create); the current version is v0.1.3.

💬 Comments