← 返回 Skills 市场
dll-create

Airdrop Monitor CN

作者 dll-create · GitHub ↗ · v0.1.3
cross-platform ✓ 安全检测通过
321
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install airdrop-monitor-cn
功能描述
空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。
使用说明 (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) 风险边界

  • 不承诺收益
  • 不提供投资建议
  • 不索要私钥或助记词
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install airdrop-monitor-cn
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /airdrop-monitor-cn 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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
元数据
Slug airdrop-monitor-cn
版本 0.1.3
许可证
累计安装 0
当前安装数 0
历史版本数 4
常见问题

Airdrop Monitor CN 是什么?

空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 321 次。

如何安装 Airdrop Monitor CN?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install airdrop-monitor-cn」即可一键安装,无需额外配置。

Airdrop Monitor CN 是免费的吗?

是的,Airdrop Monitor CN 完全免费(开源免费),可自由下载、安装和使用。

Airdrop Monitor CN 支持哪些平台?

Airdrop Monitor CN 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Airdrop Monitor CN?

由 dll-create(@dll-create)开发并维护,当前版本 v0.1.3。

💬 留言讨论