airdrop-monitor-cn
空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-airdrop-monitor-cn
Repository
Skill path: skills/dll-create/airdrop-monitor-cn
空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install airdrop-monitor-cn into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding airdrop-monitor-cn to shared team environments
- Use airdrop-monitor-cn for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: airdrop-monitor-cn
description: 空投任务与公告监控助手。监控项目公告页/文档页的内容变化,提取截止时间线索,识别高风险关键词与可疑链接,输出可执行的每日行动清单。用于把“刷空投”变成可重复的监控流程(本地运行 + 可选计费)。
---
# Airdrop Monitor CN (实战版)
## 1) 准备配置
创建监控配置(可直接复制 `config.example.json`):
```json
{
"projects": [
{
"name": "ExampleProject",
"sources": [
{"name": "Official Announcement", "url": "https://example.com/announcements"},
{"name": "Docs", "url": "https://example.com/docs"}
]
}
]
}
```
## 2) 本地运行(无计费)
```bash
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 计费(可选)
```bash
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`,用户充值后重试。
快速自检:
```bash
python verify_billing.py --user-id discord_123456 --amount 0.001
```
## 4) 定时执行(建议)
每 15 分钟跑一次(示例):
```bash
*/15 * * * * cd /path/to/skills/airdrop-monitor-cn && /path/to/.venv/bin/python app.py --config config.prod.json >> monitor.log 2>&1
```
## 5) 风险边界
- 不承诺收益
- 不提供投资建议
- 不索要私钥或助记词
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "dll-create",
"slug": "airdrop-monitor-cn",
"displayName": "Airdrop Monitor CN",
"latest": {
"version": "0.1.3",
"publishedAt": 1772639417640,
"commit": "https://github.com/openclaw/skills/commit/7feb5589b6a232f06f944fd917a69938a3e5fe7e"
},
"history": []
}
```