{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mailcheck-email-verification",
    "name": "MailCheck Email Verification",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bnuyts/mailcheck-email-verification",
    "canonicalUrl": "https://clawhub.ai/bnuyts/mailcheck-email-verification",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mailcheck-email-verification",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mailcheck-email-verification",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "index.js",
      "package.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/mailcheck-email-verification"
    },
    "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/mailcheck-email-verification",
    "agentPageUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MailCheck Email Verification",
        "body": "Verify email addresses with the MailCheck API - comprehensive email validation with syntax, disposable, DNS, and SMTP checks."
      },
      {
        "title": "Features",
        "body": "Single Email Verification - Verify one email at a time\nBulk Verification - Verify up to 100 emails in one request\nAuthenticity Analysis - Detect phishing, spoofing, and email fraud\nRisk Scoring - 0-100 score with risk level (low/medium/high)"
      },
      {
        "title": "email-verify - Verify single email",
        "body": "Verifies a single email address.\n\nParameters:\n\nemail (required): Email address to verify\napi_key (optional): MailCheck API key (falls back to MAILCHECK_API_KEY env var)\n\nExample:\n\nemail-verify email=\"user@example.com\" api_key=\"sk_live_...\""
      },
      {
        "title": "email-bulk-verify - Bulk verification",
        "body": "Verifies up to 100 email addresses in one request.\n\nParameters:\n\nemails (required): Array of email addresses\napi_key (optional): MailCheck API key\n\nExample:\n\nemail-bulk-verify emails=\"[user1@example.com, user2@gmail.com]\" api_key=\"sk_live_...\""
      },
      {
        "title": "email-auth-verify - Email authenticity analysis",
        "body": "Analyzes email headers for spoofing, phishing, and CEO fraud.\n\nParameters:\n\nheaders (required): Email headers to analyze\ntrusted_domains (optional): Domains for lookalike detection\napi_key (optional): MailCheck API key\n\nExample:\n\nemail-auth-verify headers=\"From: sender@example.com\\nReceived: ...\" trusted_domains=\"[company.com]\""
      },
      {
        "title": "Environment Variables",
        "body": "Set MAILCHECK_API_KEY with your MailCheck API key to avoid passing it on every command."
      },
      {
        "title": "Installation",
        "body": "This skill is available on ClawHub.\n\nclawhub install mailcheck-email-verification"
      },
      {
        "title": "API Reference",
        "body": "See full API documentation: https://api.mailcheck.dev/docs"
      },
      {
        "title": "Repository",
        "body": "Source code: https://github.com/bnuyts/mailcheck-skill"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "MailCheck Email Verification\n\nVerify email addresses with the MailCheck API - comprehensive email validation with syntax, disposable, DNS, and SMTP checks.\n\nFeatures\nSingle Email Verification - Verify one email at a time\nBulk Verification - Verify up to 100 emails in one request\nAuthenticity Analysis - Detect phishing, spoofing, and email fraud\nRisk Scoring - 0-100 score with risk level (low/medium/high)\nCommands\nemail-verify - Verify single email\n\nVerifies a single email address.\n\nParameters:\n\nemail (required): Email address to verify\napi_key (optional): MailCheck API key (falls back to MAILCHECK_API_KEY env var)\n\nExample:\n\nemail-verify email=\"user@example.com\" api_key=\"sk_live_...\"\n\nemail-bulk-verify - Bulk verification\n\nVerifies up to 100 email addresses in one request.\n\nParameters:\n\nemails (required): Array of email addresses\napi_key (optional): MailCheck API key\n\nExample:\n\nemail-bulk-verify emails=\"[user1@example.com, user2@gmail.com]\" api_key=\"sk_live_...\"\n\nemail-auth-verify - Email authenticity analysis\n\nAnalyzes email headers for spoofing, phishing, and CEO fraud.\n\nParameters:\n\nheaders (required): Email headers to analyze\ntrusted_domains (optional): Domains for lookalike detection\napi_key (optional): MailCheck API key\n\nExample:\n\nemail-auth-verify headers=\"From: sender@example.com\\nReceived: ...\" trusted_domains=\"[company.com]\"\n\nEnvironment Variables\n\nSet MAILCHECK_API_KEY with your MailCheck API key to avoid passing it on every command.\n\nInstallation\n\nThis skill is available on ClawHub.\n\nclawhub install mailcheck-email-verification\n\nAPI Reference\n\nSee full API documentation: https://api.mailcheck.dev/docs\n\nRepository\n\nSource code: https://github.com/bnuyts/mailcheck-skill\n\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bnuyts/mailcheck-email-verification",
    "publisherUrl": "https://clawhub.ai/bnuyts/mailcheck-email-verification",
    "owner": "bnuyts",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mailcheck-email-verification",
    "downloadUrl": "https://openagent3.xyz/downloads/mailcheck-email-verification",
    "agentUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mailcheck-email-verification/agent.md"
  }
}