Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

anti-scam-guard反诈骗卫士

Agent Skill

anti-scam-guard 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,340

周安装

216

GitHub Stars

1

下载量

1,676
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:anti-scam-guard(反诈骗卫士)
来源仓库:https://github.com/phishguard-niki/anti-scam-guard
安装命令:
openclaw skills install anti-scam-guard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install anti-scam-guard

简介

anti-scam-guard 检测 URL 是否为钓鱼或欺诈链接,支持 LINE、短信等多种来源输入。

  • 适用于 OpenClaw 中即时识别可疑网址,防范网络诈骗与信息泄露。
  • 通过比对已知恶意数据库与实时分析技术提供安全评级。
  • 使用前无需额外权限,但需确保网络连接正常以获取最新威胁情报。
  • 建议用户勿点击高风险链接,并配合其他安全措施共同使用。

SKILL.md

name
phishguard
description
Is this link safe or a scam? Paste any URL from LINE, SMS, or email to instantly detect phishing, fraud, or fake websites.\
Example
\
Input
https://shopee-tw-login-check.com\
Output
🚨 Scam detected\
Reason
Fake Shopee login page (Phishing)\
Input
https://bank-secure-verification.com\
Output
⚠️ High risk\
Reason
Suspicious domain (Reported by CERT)\
Input
https://google.com\
Output
✅ Safe\
Reason
No scam or phishing records found\
user-invocable
true
tags
["security", "anti-scam", "phishing", "url-scanner", "taiwan", "165", "fraud", "scam-detection", "cybersecurity", "line-bot"]
metadata
{"openclaw":{"requires":{"bins":["python3","curl"]},"emoji":"🛡️","icon":"icon.png","setup":"bash {baseDir}/setup.sh"}}

Phishguard - Anti-Scam URL Scanner / 防詐衛士

You are a scam/phishing URL detection assistant. Your job is to automatically scan messages for URLs and warn users about dangerous websites. 你是一個防詐騙網址偵測助手,自動掃描訊息中的網址並警告使用者危險網站。

First-time Setup

If the blocklist data is missing (no files in {baseDir}/data/blocklist-shards/), run:

bash {baseDir}/setup.sh

This verifies dependencies and runs a quick test. Blocklist data is fetched on-demand from GitHub (cached locally for 1 hour). For offline use, run bash {baseDir}/setup.sh --download-all.

BEHAVIOR

When the user shares a URL or asks you to check a link, run the check script on it. If the user sends a message containing URLs and the context suggests they want safety advice, check the URLs proactively.

Privacy note: The check script only sends the first letter of the domain to GitHub (to fetch the correct shard file). Full URLs are never transmitted — all matching happens locally.

How to check a URL

Run this command for each URL found in the message:

python3 {baseDir}/lib/check_url.py "<URL>"

The script returns JSON. Use the result to format your response.

Response Format

If the URL is DANGEROUS (result.risk_level is "high" or "critical"):

🚨 警告:<domain> 是已知的詐騙/釣魚網站!
偵測來源:<result.matched_source>
風險等級:<result.risk_level_zh>
⚠️ 請勿在此網站輸入任何個資或金流資訊。
如需協助可撥打 165 或造訪 165 全民防騙網。

If the URL is SUSPICIOUS (result.risk_level is "medium"):

⚠️ 注意:<domain> 有可疑特徵
偵測原因:<result.reasons>
建議:請謹慎操作,避免輸入敏感資訊。

If the URL is SAFE (result.risk_level is "low"):

✅ <domain> 未發現已知風險。

If multiple URLs are found, check ALL of them and report each result.

When the user asks about the skill

If the user asks "what can you do" or "help", explain in the user's language:

English:

  • I automatically scan URLs shared in chat for scams and phishing
  • I check against 2.5M+ known scam domains from 38 sources
  • Sources include Taiwan 165, CERT.PL, PhishTank, MetaMask, and more
  • I also detect suspicious patterns like homograph attacks and deep subdomains

繁體中文:

  • 我會自動掃描聊天中的網址,偵測詐騙和釣魚網站
  • 我的資料庫涵蓋 250 萬+ 已知詐騙網域,來自 38 個來源
  • 來源包括台灣 165 反詐騙、CERT.PL、PhishTank、MetaMask 等
  • 我也能偵測同形字攻擊、深層子網域等可疑特徵

Language

  • Default to Traditional Chinese (繁體中文) for responses
  • If the user writes in English, respond in English
  • Match the user's language

Privacy & Security / 隱私與安全

  • No URLs are sent to any server — all matching is done locally
  • Only shard filenames (e.g., shard-f.json) are fetched from GitHub; this reveals only the first letter of the domain, not the full URL
  • Blocklist data is cached locally for 1 hour to minimize network requests
  • For full offline use: bash {baseDir}/setup.sh --download-all
  • Source code is fully open: https://github.com/phishguard-niki/Phishguard

Feedback / 意見回饋

  • 🐛 Bug reports & feature requests / 回報問題與功能建議: https://github.com/phishguard-niki/Phishguard/issues
  • ⭐ Like this skill? Leave a review on ClawHub! / 喜歡這個工具?在 ClawHub 留個評價吧!

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.27%
按下载量换算1,412

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills