{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/domain-trust-check",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-trust-check",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/domain-trust-check",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Domain Trust Check",
        "body": "Check any URL for phishing, malware, brand abuse, and scams before visiting or recommending it. Powered by the Outtake Trust API."
      },
      {
        "title": "Quick Start",
        "body": "Already registered? If OUTTAKE_API_KEY is set, skip to the curl command. Do not re-register.\n\ncurl -s -X POST https://app.outtake.ai/api/v1/trust/check \\\n  -H \"Authorization: Bearer $OUTTAKE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"url\": \"https://suspicious-site.com\"}'\n# → {\"data\": {\"url\": \"...\", \"verdict\": \"malicious\", \"confidence\": 0.92, \"safe_to_visit\": \"unsafe\", \"recommended_action\": \"block\", ...}}"
      },
      {
        "title": "Registration",
        "body": "One-time setup. The same key works across all Outtake skills.\n\ncurl -s -X POST https://app.outtake.ai/api/v1/agent/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"my-agent\", \"email\": \"agent@example.com\"}'\n\nSave the returned api_key — it is only shown once:\n\nexport OUTTAKE_API_KEY=\"outtake_...\"\n\nStatusMeaning409Email already registered — use your existing key429Rate limited (5 registrations/hour)\n\nOptional fields: wallet_address (Ethereum, needed for bounty payouts), agent_framework (e.g. \"langchain\")."
      },
      {
        "title": "Interpreting Results",
        "body": "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.\n\nConfidence: 1.0 = human-reviewed, 0.7–0.99 = ML classification, 0.0 = no data."
      },
      {
        "title": "Batch Checking",
        "body": "Check up to 50 URLs in one request using POST /trust/check-batch:\n\ncurl -s -X POST https://app.outtake.ai/api/v1/trust/check-batch \\\n  -H \"Authorization: Bearer $OUTTAKE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"urls\": [\"https://link1.com\", \"https://link2.com\"]}'\n\nUse batch when checking 3+ URLs to reduce round trips. Requests with more than 50 URLs return 400."
      },
      {
        "title": "Related Skills",
        "body": "outtake-bounty-network — Earn $5 USDC per verified malicious domain. Scan with trust-check, then submit confirmed threats. Same API key."
      },
      {
        "title": "Support",
        "body": "Questions or feedback? Email trust-check@outtake.ai"
      }
    ],
    "body": "Domain Trust Check\n\nCheck any URL for phishing, malware, brand abuse, and scams before visiting or recommending it. Powered by the Outtake Trust API.\n\nQuick Start\n\nAlready registered? If OUTTAKE_API_KEY is set, skip to the curl command. Do not re-register.\n\ncurl -s -X POST https://app.outtake.ai/api/v1/trust/check \\\n  -H \"Authorization: Bearer $OUTTAKE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"url\": \"https://suspicious-site.com\"}'\n# → {\"data\": {\"url\": \"...\", \"verdict\": \"malicious\", \"confidence\": 0.92, \"safe_to_visit\": \"unsafe\", \"recommended_action\": \"block\", ...}}\n\nRegistration\n\nOne-time setup. The same key works across all Outtake skills.\n\ncurl -s -X POST https://app.outtake.ai/api/v1/agent/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"my-agent\", \"email\": \"agent@example.com\"}'\n\n\nSave the returned api_key — it is only shown once:\n\nexport OUTTAKE_API_KEY=\"outtake_...\"\n\nStatus\tMeaning\n409\tEmail already registered — use your existing key\n429\tRate limited (5 registrations/hour)\n\nOptional fields: wallet_address (Ethereum, needed for bounty payouts), agent_framework (e.g. \"langchain\").\n\nInterpreting Results\nverdict\tsafe_to_visit\tAction\nmalicious\tunsafe\tBlock. Do NOT visit. Warn the user.\nsuspicious\tsafe or unsafe\tWarn the user. If unsafe, treat as malicious.\nsafe\tsafe\tSafe to visit.\nunknown\tunknown\tNo data. Proceed with caution.\n\nConfidence: 1.0 = human-reviewed, 0.7–0.99 = ML classification, 0.0 = no data.\n\nBatch Checking\n\nCheck up to 50 URLs in one request using POST /trust/check-batch:\n\ncurl -s -X POST https://app.outtake.ai/api/v1/trust/check-batch \\\n  -H \"Authorization: Bearer $OUTTAKE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"urls\": [\"https://link1.com\", \"https://link2.com\"]}'\n\n\nUse batch when checking 3+ URLs to reduce round trips. Requests with more than 50 URLs return 400.\n\nRelated Skills\nouttake-bounty-network — Earn $5 USDC per verified malicious domain. Scan with trust-check, then submit confirmed threats. Same API key.\nSupport\n\nQuestions or feedback? Email trust-check@outtake.ai"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jamesOuttake/domain-trust-check",
    "publisherUrl": "https://clawhub.ai/jamesOuttake/domain-trust-check",
    "owner": "jamesOuttake",
    "version": "1.2.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}