CC earn-hunter
Automatically monitors OKX Flash Earn, Fixed Earn and Flexible Earn opportunities, sends push notifications, and guides subscription. 自动监控 OKX 闪赚、定期和活期赚币机会,推送通知并引导申购。Use when user says: 有闪赚通知我, 监控赚币, monitor earn, notify me about earn, 定时检查理财, 执行 earn-hunter 扫描, earn-hunter scan, 活期年化高了通知我, 监控活期.
Automatically monitors OKX Flash Earn, Fixed Earn and Flexible Earn opportunities, sends push notifications, and guides subscription.
As a process C 61/100 · Has gaps — weak spots: result and completion, inputs and preconditions
The same skill appears in 2 more places: ClawHub, ClawHub
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.
Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.
How to improve
- The SKILL.md body is over 5,000 tokens: move reference detail into references/ and load it when needed.
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 26
✓ No critical or high findings
Medium and low: 26
-
medium Dangerous commands
cmd-persistencereferences/scheduler-setup.md:57Persistence mechanism (cron / launchd / scheduled task / autorun registry) (documentation of a security skill)(crontab -l 2>/dev/null; echo "0 * * * * OKX_PROFILE=live ~/.okx/earn-hunter/scan.sh >> ~/.okx/earn-hunter/cron.log 2>&1") | crontab -
security skill -
medium Dangerous commands
cmd-persistenceSKILL.md:315Persistence mechanism (cron / launchd / scheduled task / autorun registry) (documentation of a security skill)(crontab -l 2>/dev/null; echo "0 * * * * PATH=$CRON_PATH OKX_PROFILE=live ~/.okx/earn-hunter/scan.sh >> ~/.okx/earn-hunter/cron.log 2>&1") | crontab -
security skill -
medium Dangerous commands
cmd-persistenceSKILL.md:339Persistence mechanism (cron / launchd / scheduled task / autorun registry) (documentation of a security skill)cat > ~/Library/LaunchAgents/com.okx.earn-hunter.plist << PLIST
security skill -
medium Dangerous commands
cmd-persistenceSKILL.md:372Persistence mechanism (cron / launchd / scheduled task / autorun registry) (documentation of a security skill)launchctl load ~/Library/LaunchAgents/com.okx.earn-hunter.plist
security skill -
low Exfiltration
exfil-webhook-urlreferences/notify-channels.md:58Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl -s "https://api.telegram.org/bot${TOKEN}/sendMessage" \placeholder -
low Exfiltration
net-credential-usereferences/notify-channels.md:58Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s "https://api.telegram.org/bot${TOKEN}/sendMessage" \security skill -
low Exfiltration
exfil-webhook-urlreferences/notify-channels.md:128Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getUpdates" | jq '.result[0].message.chat.id'placeholder -
low Exfiltration
net-credential-usereferences/notify-channels.md:128Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getUpdates" | jq '.result[0].message.chat.id'security skill -
low Exfiltration
exfil-webhook-urlreferences/notify-channels.md:171Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe"placeholder -
low Exfiltration
net-credential-usereferences/notify-channels.md:171Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe"security skill -
low Exfiltration
exfil-webhook-urlreferences/notify-channels.md:175Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getChat?chat_id=…"placeholder -
low Exfiltration
net-credential-usereferences/notify-channels.md:175Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getChat?chat_id=…"security skill -
low Exfiltration
exfil-webhook-urlreferences/notify-channels.md:179Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage" \placeholder -
low Exfiltration
net-credential-usereferences/notify-channels.md:179Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage" \security skill -
low Dangerous commands
cmd-cron-mentionreferences/scheduler-setup.md:57Mentions editing / listing crontab (documentation of a security skill)(crontab -l 2>/dev/null; echo "0 * * * * OKX_PROFILE=live ~/.okx/earn-hunter/scan.sh >> ~/.okx/earn-hunter/cron.log 2>&1") | crontab -
security skill -
low Dangerous commands
cmd-cron-mentionreferences/scheduler-setup.md:76Mentions editing / listing crontab (documentation of a security skill)crontab -l # list all cron jobs
security skill -
low Dangerous commands
cmd-cron-mentionreferences/scheduler-setup.md:77Mentions editing / listing crontab (documentation of a security skill)crontab -l | grep -v 'earn-hunter' | crontab - # pause (remove entry)
security skill -
low Exfiltration
exfil-webhook-urlscripts/scan.sh:319Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)resp=$(curl -s "https://api.telegram.org/bot${TOKEN}/sendMessage" \placeholder -
low Exfiltration
net-credential-usescripts/scan.sh:319Credential used in a network call (verify the destination is the intended service) (documentation of a security skill)resp=$(curl -s "https://api.telegram.org/bot${TOKEN}/sendMessage" \security skill -
low Dangerous commands
cmd-cron-mentionSKILL.md:315Mentions editing / listing crontab (documentation of a security skill)(crontab -l 2>/dev/null; echo "0 * * * * PATH=$CRON_PATH OKX_PROFILE=live ~/.okx/earn-hunter/scan.sh >> ~/.okx/earn-hunter/cron.log 2>&1") | crontab -
security skill
A further 6 matches are quotations in this security skill's documentation and are not counted as findings.
Files scanned: 10. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
body-longSKILL.md body ≈ 7676 tokens (recommended < 5000); move details to references/
Process rating: all ten parameters 61/100
- 0Result and completion. Does not say what the result is
- 30Inputs and preconditions. Does not say what the process needs to start
- 50When it triggers. No condition that starts the skill
- 60Tools and files. Uses tools (bash, web, node) that frontmatter does not declare
- 70Execution cost. Instruction body is 7676 tokens
- 85Steps. 156 steps, 2 vague phrases
- 100Failures and branches. 10 branches, has a failure section
- 100Consistency. Name and required fields are in place
- 100Running it twice. Mutating operations check current state
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 14 top-level sections: this looks like several domains in one skill
- low The response is described with custom markup (8 tags): a typed call is more reliable
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Output format is not stated: the model decides each time
- +2Single-language instructions
- +3Description length 297: enough signal without eating the budget
- +4Structure: 28 headings
- +3Step-by-step instructions: 156 items
- +4Has examples (12 code blocks)
- +4Reference files are cited in the instructions (4 of 5)
- +3All 1 scripts are documented
- +1License stated
Quality base 70; lint remarks subtract, signals add up to 100. Result: 82.