near-phishing-detector

TotalClaw 作者 mastrophot

检测针对 NEAR 用户的潜在网络钓鱼 URL 和可疑合同。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~mastrophot-near-phishing-detector
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~mastrophot-near-phishing-detector/file -o mastrophot-near-phishing-detector.md
## 概述(中文)

检测针对 NEAR 用户的潜在网络钓鱼 URL 和可疑合同。

## 原文

# NEAR Phishing Detector Skill

Implementation entrypoint: `{baseDir}/dist/index.js`

Use this skill to quickly score suspicious links/contracts and generate actionable phishing reports.

## Commands

```python
@skill.command("near_phishing_check_url")
async def check_url(url: str) -> dict:
    """Check if URL is potential phishing"""

@skill.command("near_phishing_check_contract")
async def check_contract(contract: str) -> dict:
    """Check if contract is suspicious"""

@skill.command("near_phishing_report")
async def report_phishing(url: str, details: str) -> dict:
    """Report phishing attempt"""

@skill.command("near_phishing_database")
async def get_known_scams() -> list:
    """Get database of known scams"""
```

## Notes

- Designed for detection assistance, not legal determination.
- Always verify with official NEAR channels before acting on high-risk links.