技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 229 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:aiwithabidi/hunter
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill largely implements Hunter.io functionality and only needs a Hunter API key, but it reads an undeclared .env fallback (potentially exposing unexpected local secrets) and contains minor request-building bugs — review before use.
目的
Name/description, declared HUNTER_API_KEY, and the included Python CLI all align with Hunter.io functionality. The script targets the official Hunter API (https://api.hunter.io) and the requested credential (HUNTER_API_KEY) is appropriate.
说明范围
SKILL.md instructs running the provided script only, but the script's get_env() falls back to reading a workspace .env file (~/.openclaw/workspace/.env or WORKSPACE/.env) to locate HUNTER_API_KEY. That file read is not documented in SKILL.md and is scope creep — the skill will access a local file the user may not expect.
安装机制
No install spec (instruction-only plus an included stdlib Python script). Nothing is downloaded or written to disk by an install step.
证书
Only HUNTER_API_KEY is declared (and is the primary credential), which is appropriate. However the code also reads WORKSPACE and a local .env file as a fallback. That implicit access to a local .env could expose other secrets if users keep multiple credentials there; WORKSPACE is not declared as required.
持久
The skill is not always:true, does not request persistent system-wide changes, and does not modify other skills or global agent settings.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Hunter」。简介:Hunter.io — email finder, email verifier, domain search, author finder, and lea…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/hunter/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: hunter
description: "Hunter.io — email finder, email verifier, domain search, author finder, and lead management."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🔍", "requires": {"env": ["HUNTER_API_KEY"]}, "primaryEnv": "HUNTER_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---
# 🔍 Hunter.io
Hunter.io — email finder, email verifier, domain search, author finder, and lead management.
## Requirements
| Variable | Required | Description |
|----------|----------|-------------|
| `HUNTER_API_KEY` | ✅ | Hunter.io API key |
## Quick Start
```bash
# Find emails for a domain
python3 {{baseDir}}/scripts/hunter.py domain-search --domain <value> --limit "10" --type <value>
# Find specific person's email
python3 {{baseDir}}/scripts/hunter.py email-finder --domain <value> --first-name <value> --last-name <value>
# Verify an email address
python3 {{baseDir}}/scripts/hunter.py email-verifier --email <value>
# Count emails for domain
python3 {{baseDir}}/scripts/hunter.py email-count --domain <value>
# List saved leads
python3 {{baseDir}}/scripts/hunter.py list-leads --limit "20" --offset "0"
# Create a lead
python3 {{baseDir}}/scripts/hunter.py create-lead --email <value> --first-name <value> --last-name <value> --company <value>
# Update a lead
python3 {{baseDir}}/scripts/hunter.py update-lead <id> --email <value> --first-name <value> --last-name <value>
# Delete a lead
python3 {{baseDir}}/scripts/hunter.py delete-lead <id>
# List lead lists
python3 {{baseDir}}/scripts/hunter.py list-leads-lists
# Get account info & usage
python3 {{baseDir}}/scripts/hunter.py get-account
# Find author of article
python3 {{baseDir}}/scripts/hunter.py author-finder --url <value>
```
## Output Format
All commands output JSON by default.
## Script Reference
| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/hunter.py` | Main CLI — all commands in one tool |
## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.
📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)