{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qqmail",
    "name": "QQ Mail",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pdpaer/qqmail",
    "canonicalUrl": "https://clawhub.ai/pdpaer/qqmail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/qqmail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/qqmail.py",
      "SKILL.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/qqmail"
    },
    "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/qqmail",
    "agentPageUrl": "https://openagent3.xyz/skills/qqmail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qqmail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qqmail/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": "QQ Mail Manager",
        "body": "Manage QQ邮箱 via standard IMAP/SMTP protocols using Python scripts."
      },
      {
        "title": "Prerequisites",
        "body": "The user must enable IMAP/SMTP in QQ Mail settings and obtain an authorization code (授权码):\n\nLog in to mail.qq.com → Settings (设置) → Account (账户)\nEnable IMAP/SMTP service\nGenerate an authorization code (授权码) — this is NOT the QQ password"
      },
      {
        "title": "Configuration",
        "body": "The skill reads credentials from environment variables:\n\nQQMAIL_USER — QQ email address (e.g. 123456789@qq.com)\nQQMAIL_AUTH_CODE — Authorization code from QQ Mail settings (授权码)"
      },
      {
        "title": "Read recent emails",
        "body": "python3 {baseDir}/scripts/qqmail.py inbox --limit 10\n\nShows: sender, subject, date, and a text preview of each email."
      },
      {
        "title": "Read a specific email by index",
        "body": "python3 {baseDir}/scripts/qqmail.py read --index 1\n\nShows the full email content (text body)."
      },
      {
        "title": "Send an email",
        "body": "python3 {baseDir}/scripts/qqmail.py send --to \"recipient@example.com\" --subject \"Hello\" --body \"Email content here\""
      },
      {
        "title": "Send with attachment",
        "body": "python3 {baseDir}/scripts/qqmail.py send --to \"recipient@example.com\" --subject \"Report\" --body \"See attached\" --attachment \"/path/to/file.pdf\""
      },
      {
        "title": "Search emails",
        "body": "python3 {baseDir}/scripts/qqmail.py search --subject \"keyword\"\npython3 {baseDir}/scripts/qqmail.py search --from \"sender@example.com\"\npython3 {baseDir}/scripts/qqmail.py search --since \"2026-01-01\"\npython3 {baseDir}/scripts/qqmail.py search --subject \"meeting\" --since \"2026-02-01\" --limit 5"
      },
      {
        "title": "List mail folders",
        "body": "python3 {baseDir}/scripts/qqmail.py folders"
      },
      {
        "title": "Read from a specific folder",
        "body": "python3 {baseDir}/scripts/qqmail.py inbox --folder \"Sent Messages\" --limit 5"
      },
      {
        "title": "Error Handling",
        "body": "If authentication fails: verify QQMAIL_USER and QQMAIL_AUTH_CODE are set correctly.\nIf IMAP is not enabled: guide the user to enable it in QQ Mail settings.\nConnection errors may indicate network issues or proxy requirements."
      },
      {
        "title": "Notes",
        "body": "QQ Mail IMAP server: imap.qq.com:993 (SSL)\nQQ Mail SMTP server: smtp.qq.com:465 (SSL)\nAll scripts use Python 3 standard library only (no pip install needed).\nEmail content is decoded with charset detection for proper Chinese display."
      }
    ],
    "body": "QQ Mail Manager\n\nManage QQ邮箱 via standard IMAP/SMTP protocols using Python scripts.\n\nPrerequisites\n\nThe user must enable IMAP/SMTP in QQ Mail settings and obtain an authorization code (授权码):\n\nLog in to mail.qq.com → Settings (设置) → Account (账户)\nEnable IMAP/SMTP service\nGenerate an authorization code (授权码) — this is NOT the QQ password\nConfiguration\n\nThe skill reads credentials from environment variables:\n\nQQMAIL_USER — QQ email address (e.g. 123456789@qq.com)\nQQMAIL_AUTH_CODE — Authorization code from QQ Mail settings (授权码)\nAvailable Operations\nRead recent emails\npython3 {baseDir}/scripts/qqmail.py inbox --limit 10\n\n\nShows: sender, subject, date, and a text preview of each email.\n\nRead a specific email by index\npython3 {baseDir}/scripts/qqmail.py read --index 1\n\n\nShows the full email content (text body).\n\nSend an email\npython3 {baseDir}/scripts/qqmail.py send --to \"recipient@example.com\" --subject \"Hello\" --body \"Email content here\"\n\nSend with attachment\npython3 {baseDir}/scripts/qqmail.py send --to \"recipient@example.com\" --subject \"Report\" --body \"See attached\" --attachment \"/path/to/file.pdf\"\n\nSearch emails\npython3 {baseDir}/scripts/qqmail.py search --subject \"keyword\"\npython3 {baseDir}/scripts/qqmail.py search --from \"sender@example.com\"\npython3 {baseDir}/scripts/qqmail.py search --since \"2026-01-01\"\npython3 {baseDir}/scripts/qqmail.py search --subject \"meeting\" --since \"2026-02-01\" --limit 5\n\nList mail folders\npython3 {baseDir}/scripts/qqmail.py folders\n\nRead from a specific folder\npython3 {baseDir}/scripts/qqmail.py inbox --folder \"Sent Messages\" --limit 5\n\nError Handling\nIf authentication fails: verify QQMAIL_USER and QQMAIL_AUTH_CODE are set correctly.\nIf IMAP is not enabled: guide the user to enable it in QQ Mail settings.\nConnection errors may indicate network issues or proxy requirements.\nNotes\nQQ Mail IMAP server: imap.qq.com:993 (SSL)\nQQ Mail SMTP server: smtp.qq.com:465 (SSL)\nAll scripts use Python 3 standard library only (no pip install needed).\nEmail content is decoded with charset detection for proper Chinese display."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pdpaer/qqmail",
    "publisherUrl": "https://clawhub.ai/pdpaer/qqmail",
    "owner": "pdpaer",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qqmail",
    "downloadUrl": "https://openagent3.xyz/downloads/qqmail",
    "agentUrl": "https://openagent3.xyz/skills/qqmail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qqmail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qqmail/agent.md"
  }
}