{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gmail-sender",
    "name": "Gmail Sender",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/junkaixue/gmail-sender",
    "canonicalUrl": "https://clawhub.ai/junkaixue/gmail-sender",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gmail-sender",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gmail-sender",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.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. 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/gmail-sender"
    },
    "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/gmail-sender",
    "agentPageUrl": "https://openagent3.xyz/skills/gmail-sender/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gmail-sender/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gmail-sender/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": "Gmail Sender Skill",
        "body": "Send emails via Gmail SMTP using Google App Password. Generic utility for alerts, notifications, and automated reports."
      },
      {
        "title": "Overview",
        "body": "A simple CLI tool to send emails through Gmail SMTP. No external dependencies beyond Python standard library."
      },
      {
        "title": "Requirements",
        "body": "Python 3.6+\nGmail account with App Password enabled"
      },
      {
        "title": "Setup",
        "body": "Enable 2-Factor Authentication on your Google Account:\n\nGo to https://myaccount.google.com/security\n\n\n\nGenerate an App Password:\n\nGo to https://myaccount.google.com/apppasswords\nSelect \"Mail\" as the app\nCopy the 16-character password (no spaces)\n\n\n\nSet environment variables:\n\nexport GMAIL_USER=\"your-email@gmail.com\"\nexport GMAIL_APP_PASSWORD=\"xxxxxxxxxxxxxxxx\""
      },
      {
        "title": "Installation",
        "body": "Clone or copy this skill to your OpenClaw skills directory:\n\ncp -r gmail-sender ~/.openclaw/workspace/skills/\n\nOr use the CLI:\n\nclawhub install gmail-sender"
      },
      {
        "title": "Usage",
        "body": "# Make executable\nchmod +x gmail-send\n\n# Send email\n./gmail-send \"recipient@example.com\" \"Subject\" \"Body text\""
      },
      {
        "title": "Examples",
        "body": "# Simple notification\n./gmail-send \"admin@example.com\" \"Server Alert\" \"CPU usage at 90%\"\n\n# Cron job integration\n0 9 * * 1-5 ~/.openclaw/scripts/gmail-send \"you@example.com\" \"Morning Report\" \"$(date)\""
      },
      {
        "title": "Python Module Usage",
        "body": "import subprocess\n\n# Call from Python\nsubprocess.run([\n    './gmail-send',\n    'recipient@example.com',\n    'Subject',\n    'Body'\n], env={'GMAIL_USER': '...', 'GMAIL_APP_PASSWORD': '...'})"
      },
      {
        "title": "Security Notes",
        "body": "Never commit App Passwords to version control\nUse environment variables, never hardcode credentials\nApp Passwords are 16 characters (format: xxxx xxxx xxxx xxxx)\nRevoke app passwords if compromised"
      },
      {
        "title": "Troubleshooting",
        "body": "\"535 5.7.8 Username and Password not accepted\"\n\nVerify App Password is correct (16 chars, no spaces)\nMake sure 2FA is enabled on your Google account\n\n\"Could not connect\"\n\nCheck firewall/network settings\nGmail may block connections from unknown apps"
      },
      {
        "title": "License",
        "body": "MIT"
      },
      {
        "title": "Author",
        "body": "junkaixue"
      }
    ],
    "body": "Gmail Sender Skill\n\nSend emails via Gmail SMTP using Google App Password. Generic utility for alerts, notifications, and automated reports.\n\nOverview\n\nA simple CLI tool to send emails through Gmail SMTP. No external dependencies beyond Python standard library.\n\nRequirements\nPython 3.6+\nGmail account with App Password enabled\nSetup\n\nEnable 2-Factor Authentication on your Google Account:\n\nGo to https://myaccount.google.com/security\n\nGenerate an App Password:\n\nGo to https://myaccount.google.com/apppasswords\nSelect \"Mail\" as the app\nCopy the 16-character password (no spaces)\n\nSet environment variables:\n\nexport GMAIL_USER=\"your-email@gmail.com\"\nexport GMAIL_APP_PASSWORD=\"xxxxxxxxxxxxxxxx\"\n\nInstallation\n\nClone or copy this skill to your OpenClaw skills directory:\n\ncp -r gmail-sender ~/.openclaw/workspace/skills/\n\n\nOr use the CLI:\n\nclawhub install gmail-sender\n\nUsage\n# Make executable\nchmod +x gmail-send\n\n# Send email\n./gmail-send \"recipient@example.com\" \"Subject\" \"Body text\"\n\nExamples\n# Simple notification\n./gmail-send \"admin@example.com\" \"Server Alert\" \"CPU usage at 90%\"\n\n# Cron job integration\n0 9 * * 1-5 ~/.openclaw/scripts/gmail-send \"you@example.com\" \"Morning Report\" \"$(date)\"\n\nPython Module Usage\nimport subprocess\n\n# Call from Python\nsubprocess.run([\n    './gmail-send',\n    'recipient@example.com',\n    'Subject',\n    'Body'\n], env={'GMAIL_USER': '...', 'GMAIL_APP_PASSWORD': '...'})\n\nSecurity Notes\nNever commit App Passwords to version control\nUse environment variables, never hardcode credentials\nApp Passwords are 16 characters (format: xxxx xxxx xxxx xxxx)\nRevoke app passwords if compromised\nTroubleshooting\n\n\"535 5.7.8 Username and Password not accepted\"\n\nVerify App Password is correct (16 chars, no spaces)\nMake sure 2FA is enabled on your Google account\n\n\"Could not connect\"\n\nCheck firewall/network settings\nGmail may block connections from unknown apps\nLicense\n\nMIT\n\nAuthor\n\njunkaixue"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/junkaixue/gmail-sender",
    "publisherUrl": "https://clawhub.ai/junkaixue/gmail-sender",
    "owner": "junkaixue",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gmail-sender",
    "downloadUrl": "https://openagent3.xyz/downloads/gmail-sender",
    "agentUrl": "https://openagent3.xyz/skills/gmail-sender/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gmail-sender/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gmail-sender/agent.md"
  }
}