← 返回 Skills 市场
1. 空投项目列表 (
2. 资格检查 (
3. 提醒管理 (
288
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install airdrop-shark
功能描述
Track potential airdrop eligibility, view project snapshots and values, and manage snapshot reminders without wallet connections or private keys.
使用说明 (SKILL.md)
AirdropAlert Skill - SKILL.md
🪂 空投提醒技能 - 追踪潜在空投资格,提醒快照和时间
基本信息
{
"name": "airdrop-shark",
"version": "0.1.0",
"description": "空投提醒技能 - 追踪潜在空投资格,提醒快照和时间",
"author": "@gztanht",
"license": "MIT"
}
命令系统
| 命令 | 描述 | 参数 |
|---|---|---|
airdrop |
查看所有空投项目 | --priority, --limit |
eligibility |
检查空投资格 | \x3Cproject>, --address |
reminder |
管理快照提醒 | add, list, remove |
功能说明
1. 空投项目列表 (airdrop.mjs)
显示所有潜在空投项目,包括:
- 项目名称和链
- 预期快照时间
- 预期价值范围
- 交互难度
- 优先级标记
参数:
--priority [high|medium|low]- 按优先级筛选--limit N- 限制显示数量
2. 资格检查 (eligibility.mjs)
检查用户地址是否符合特定项目的空投资格:
- 交易次数要求
- 使用链数量
- 交易量要求
- 最近活跃度
参数:
\x3Cproject>- 项目名称 (必需)--address \x3Caddr>- 要检查的地址 (可选,默认当前钱包)
3. 提醒管理 (reminder.mjs)
设置和管理快照时间提醒:
- 添加新提醒
- 查看所有提醒
- 删除已过期提醒
参数:
add --project \x3Cname> --date \x3CYYYY-MM-DD>- 添加提醒list- 查看提醒列表remove \x3Cid>- 删除提醒
数据源
- 社区整理的空投项目数据库
- 官方公告和项目文档
- 链上数据分析 (未来)
输出格式
空投列表输出
🪂 AirdropAlert - 潜在空投项目
优先级 项目 链 快照时间 预期价值 难度
─────────────────────────────────────────────────────────────────────
🔴 高 LayerZero 多链 2026-Q2 $2000-5000 中
🟡 中 Starknet Starknet 已完成 $500-2000 低
资格检查输出
✅ LayerZero 资格检查
地址:0x33f9...5ad9
状态:符合条件
要求:
- ✅ 跨链交易 > 5 次
- ✅ 使用 > 3 条不同链
- ✅ 总交易量 > $1000
预期空投:$2000-5000
定价策略
- 免费版: 5 次查询/天
- 赞助版: 0.5 USDT/USDC → 无限查询
安全注意事项
技能必须显示安全提示:
- 不要求用户提供私钥
- 不连接用户钱包 (只读地址检查)
- 提醒用户验证官方链接
- 建议用户小额测试
未来规划
- v0.2.0 - 链上数据自动检查
- v0.3.0 - Telegram/Discord 通知
- v1.0.0 - 自动化交互指南
🪂 AirdropAlert v0.1.0 - Never Miss an Airdrop
安全使用建议
This package appears coherent and self-contained, but note a few practical points before installing: (1) The eligibility checks are simulated and use example addresses — they do not query chain data or access your wallet; do NOT provide private keys or connect a wallet to this skill. (2) The skill stores reminders under a data/reminders.json file in the skill directory — review that file if you care about privacy or backups. (3) The repository/homepage references in README/package.json should be verified (follow the provided GitHub/ClawHub links) before trusting future releases that might add network access. (4) The package includes donation addresses; do not send funds unless you independently verify the author and repo. If you plan to run this, inspect the scripts locally or run in an isolated environment — future versions that add chain queries or notifications (Telegram/Discord) should be re-reviewed for network endpoints and required credentials.
功能分析
Type: OpenClaw Skill
Name: airdrop-shark
Version: 0.1.0
The AirdropAlert skill bundle is a legitimate tool for tracking cryptocurrency airdrop projects and managing snapshot reminders. The scripts (airdrop.mjs, eligibility.mjs, reminder.mjs) perform basic file I/O and console output without any network requests, external dependencies, or attempts to access sensitive system information. While the eligibility check currently uses mock data, the code is transparent, lacks obfuscation, and includes clear safety warnings for users regarding private keys and wallet security.
能力评估
Purpose & Capability
The name/description (tracking potential airdrops, eligibility checks, reminders) match the included scripts and config files. The skill does not request credentials or external secrets, which is appropriate. Minor mismatch: README/SKILL.md say the eligibility check can default to the "current wallet" but the code uses a hard-coded example address and does not access any wallet or local wallet files.
Instruction Scope
SKILL.md describes listing projects, eligibility checks, and reminder management; the scripts implement these features using local files only. The SKILL.md and README also reference external data sources ('official announcements', 'chain data') and an optional default wallet address, but the current implementation uses local config and simulated eligibility rather than fetching chain data or accessing wallets. This is a scope/implementation gap but not malicious.
Install Mechanism
No install spec or external downloads are used. The package contains only small, self-contained JS scripts with no external npm dependencies — low install risk.
Credentials
The skill declares no required environment variables, and the code does not read environment variables, secrets, or system config. The only 'sensitive' items are funding crypto addresses embedded for donations, which are public on-chain addresses and not credentials.
Persistence & Privilege
always is false and the skill does not request permanent system presence. It writes reminders to a local data/reminders.json inside the skill directory (creates a ./data folder) — limited, local persistence and not a system-wide privilege.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install airdrop-shark - 安装完成后,直接呼叫该 Skill 的名称或使用
/airdrop-shark触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
🪂 初始版本 - 空投项目数据库 + 资格检查 + 快照提醒
元数据
常见问题
Airdrop Shark 是什么?
Track potential airdrop eligibility, view project snapshots and values, and manage snapshot reminders without wallet connections or private keys. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 288 次。
如何安装 Airdrop Shark?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install airdrop-shark」即可一键安装,无需额外配置。
Airdrop Shark 是免费的吗?
是的,Airdrop Shark 完全免费(开源免费),可自由下载、安装和使用。
Airdrop Shark 支持哪些平台?
Airdrop Shark 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Airdrop Shark?
由 Haha Tan(@gztanht)开发并维护,当前版本 v0.1.0。
推荐 Skills