# Send Domain Trust Check to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "domain-trust-check",
    "name": "Domain Trust Check",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/jamesOuttake/domain-trust-check",
    "canonicalUrl": "https://clawhub.ai/jamesOuttake/domain-trust-check",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/domain-trust-check",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-trust-check",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "domain-trust-check",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T23:07:11.246Z",
      "expiresAt": "2026-05-06T23:07:11.246Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-trust-check",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-trust-check",
        "contentDisposition": "attachment; filename=\"domain-trust-check-1.2.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "domain-trust-check"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/domain-trust-check"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/domain-trust-check",
    "downloadUrl": "https://openagent3.xyz/downloads/domain-trust-check",
    "agentUrl": "https://openagent3.xyz/skills/domain-trust-check/agent",
    "manifestUrl": "https://openagent3.xyz/skills/domain-trust-check/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/domain-trust-check/agent.md"
  }
}
```
## Documentation

### Domain Trust Check

Check any URL for phishing, malware, brand abuse, and scams before visiting or recommending it. Powered by the Outtake Trust API.

### Quick Start

Already registered? If OUTTAKE_API_KEY is set, skip to the curl command. Do not re-register.

curl -s -X POST https://app.outtake.ai/api/v1/trust/check \\
  -H "Authorization: Bearer $OUTTAKE_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"url": "https://suspicious-site.com"}'
# → {"data": {"url": "...", "verdict": "malicious", "confidence": 0.92, "safe_to_visit": "unsafe", "recommended_action": "block", ...}}

### Registration

One-time setup. The same key works across all Outtake skills.

curl -s -X POST https://app.outtake.ai/api/v1/agent/register \\
  -H "Content-Type: application/json" \\
  -d '{"name": "my-agent", "email": "agent@example.com"}'

Save the returned api_key — it is only shown once:

export OUTTAKE_API_KEY="outtake_..."

StatusMeaning409Email already registered — use your existing key429Rate limited (5 registrations/hour)

Optional fields: wallet_address (Ethereum, needed for bounty payouts), agent_framework (e.g. "langchain").

### Interpreting Results

verdictsafe_to_visitActionmaliciousunsafeBlock. Do NOT visit. Warn the user.suspicioussafe or unsafeWarn the user. If unsafe, treat as malicious.safesafeSafe to visit.unknownunknownNo data. Proceed with caution.

Confidence: 1.0 = human-reviewed, 0.7–0.99 = ML classification, 0.0 = no data.

### Batch Checking

Check up to 50 URLs in one request using POST /trust/check-batch:

curl -s -X POST https://app.outtake.ai/api/v1/trust/check-batch \\
  -H "Authorization: Bearer $OUTTAKE_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"urls": ["https://link1.com", "https://link2.com"]}'

Use batch when checking 3+ URLs to reduce round trips. Requests with more than 50 URLs return 400.

### Related Skills

outtake-bounty-network — Earn $5 USDC per verified malicious domain. Scan with trust-check, then submit confirmed threats. Same API key.

### Support

Questions or feedback? Email trust-check@outtake.ai
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jamesOuttake
- Version: 1.2.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T23:07:11.246Z
- Expires at: 2026-05-06T23:07:11.246Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/domain-trust-check)
- [Send to Agent page](https://openagent3.xyz/skills/domain-trust-check/agent)
- [JSON manifest](https://openagent3.xyz/skills/domain-trust-check/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/domain-trust-check/agent.md)
- [Download page](https://openagent3.xyz/downloads/domain-trust-check)