Install
openclaw skills install near-phishing-detectorDetect potential phishing URLs and suspicious contracts targeting NEAR users.
openclaw skills install near-phishing-detectorImplementation entrypoint: {baseDir}/dist/index.js
Use this skill to quickly score suspicious links/contracts and generate actionable phishing reports.
@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"""