技能详情(站内镜像,无评论)
作者:Andrew Chen @andrewchen-oss
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 2 · 428 · 0 current installs · 0 all-time installs
⭐ 2
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:andrewchen-oss/nuwa-world-osint-human-research
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's requests and runtime instructions align with its stated purpose (face search and web research via the Nuwa World API); it only needs curl and a single API key and does not install additional code.
目的
Name/description (face search, deep research) match the declared requirements: only curl is required and NUWA_API_KEY is the single credential. The endpoints in SKILL.md correspond to the advertised capabilities.
说明范围
SKILL.md gives concrete curl calls for upload, polling, and research endpoints and only references the NUWA_API_KEY env var. It does not instruct reading unrelated files or accessing other credentials or system paths.
安装机制
This is an instruction-only skill with no install spec or code files — nothing is downloaded or written to disk by the skill itself, which is the lowest-risk install model.
证书
Only one environment variable (NUWA_API_KEY) is required and it is used directly for the X-API-Key header shown in examples; no unrelated secrets are requested.
持久
The skill is not always-enabled and does not request system-wide configuration changes or persistent privileges. It is user-invocable and can be invoked autonomously (the platform default), which is expected for a skill.
综合结论
This skill appears internally consistent, but consider these practical checks before installing: - Verify the API key source: only provide NUWA_API_KEY if you trust https://platform.nuwa.world and your account/plan. Monitor usage and rotation of the key. - Privacy and legality: face-search capabilities can be used for sensitive or invasive lookups — ensure you have lawful authority and respect privacy/terms before uploading images of people. -…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Nuwa World - OSINT Human Research」。简介:Face search and deep research via the Nuwa World API — visual identity intellig…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/andrewchen-oss/nuwa-world-osint-human-research/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: nuwa-world-api
description: Face search and deep research via the Nuwa World API — visual identity intelligence and knowledge synthesis from the open web.
version: 1.0.0
metadata:
openclaw:
requires:
env:
- NUWA_API_KEY
bins:
- curl
primaryEnv: NUWA_API_KEY
emoji: "🔍"
homepage: https://gateway.nuwa.world/docs
---
# Nuwa World API
Two capabilities via `gateway.nuwa.world`:
- **Face Search** — upload a face image, get matching URLs across the internet
- **Deep Research** — submit a question, get a structured summary with citations
Base URL: `https://gateway.nuwa.world/api/v1`
Auth: `X-API-Key: $NUWA_API_KEY` header on every request.
Get your key at https://platform.nuwa.world
---
## Face Search (10 credits)
Two-step async flow: upload → poll.
### Step 1 — Upload
```bash
curl -X POST https://gateway.nuwa.world/api/v1/face-search
-H "X-API-Key: $NUWA_API_KEY"
-F "image=@photo.jpg"
```
Response (HTTP 202):
```json
{
"search_id": "abc123",
"status": "processing",
"message": "Face uploaded. Poll GET /api/v1/face-search/{search_id} for results."
}
```
### Step 2 — Poll (every 3–5 seconds, no credit cost)
```bash
curl https://gateway.nuwa.world/api/v1/face-search/abc123
-H "X-API-Key: $NUWA_API_KEY"
```
While processing:
```json
{ "search_id": "abc123", "status": "processing", "results": [], "total_results": 0 }
```
When done:
```json
{
"search_id": "abc123",
"status": "completed",
"results": [
{ "index": 0, "score": 95.2, "url": "https://example.com/profile" },
{ "index": 1, "score": 82.1, "url": "https://social.example/user" }
],
"total_results": 2,
"max_score": 95.2
}
```
Processing takes 15–30 seconds. Results expire after 2 hours.
---
## Deep Research (20 credits)
Single synchronous call. Returns in 10–60 seconds.
```bash
curl -X POST https://gateway.nuwa.world/api/v1/deep-research
-H "X-API-Key: $NUWA_API_KEY"
-H "Content-Type: application/json"
-d '{"query": "0xajc on X"}'
```
Response:
```json
{
"query": "Research the X user '0xajc' footprint on web.",
"summary": "Anthropic is an AI safety company founded in 2021...",
"facts": [
"X user '0xajc's real name is Andrew Chen",
"He founded Instap in 2020 and Nuwa Word in 2025"
"Studied CS/Managment in University of Massachusetts and dropped out"
],
"sources": [
{ "title": "0xajc - About", "url": "https://app.nuwa.world/research/04b7ac93-c711-4780-9c48-9201cf7f7e78" }
]
}
```
Query max length: 2000 characters.
---
## Error format
All errors follow:
```json
{ "error": { "code": "ERROR_CODE", "message": "Human-readable description" } }
```
Common codes: `INVALID_API_KEY`, `RATE_LIMITED`, `INSUFFICIENT_CREDITS`, `UPLOAD_FAILED`, `NOT_FOUND`, `RESEARCH_FAILED`.
---
## Credit costs
| Endpoint | Credits |
|----------|---------|
| Face Search (upload) | 10 |
| Face Search (poll) | 0 |
| Deep Research | 20 |
Free tier: 30 credits/month. Plans at https://platform.nuwa.world