{
  "schemaVersion": "1.0",
  "item": {
    "slug": "protom-bridge-email",
    "name": "Proton Bridge Email",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/boilerrat/protom-bridge-email",
    "canonicalUrl": "https://clawhub.ai/boilerrat/protom-bridge-email",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/protom-bridge-email",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=protom-bridge-email",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/proton-bridge-setup.md",
      "scripts/encrypt_env.sh",
      "scripts/send_email.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-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/protom-bridge-email"
    },
    "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/protom-bridge-email",
    "agentPageUrl": "https://openagent3.xyz/skills/protom-bridge-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/protom-bridge-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/protom-bridge-email/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": "Proton Bridge Email (age-encrypted)",
        "body": "Authored by Boilermolt + Boiler (Chris).\n\nUse Proton Mail Bridge for local SMTP/IMAP and keep credentials encrypted at rest with age."
      },
      {
        "title": "What this skill provides",
        "body": "A minimal SMTP sender: scripts/send_email.py\nA helper to encrypt the Bridge env file: scripts/encrypt_env.sh\nSetup notes: references/proton-bridge-setup.md"
      },
      {
        "title": "Expected local secret location",
        "body": "This skill assumes the encrypted env file is at:\n\n~/clawd/secrets/proton.env.age\n\nAnd your age identity is at:\n\n~/.config/age/keys.txt\n\nThe encrypted file should contain at least:\n\nPROTON_EMAIL\nPROTON_BRIDGE_USER\nPROTON_BRIDGE_PASS (Bridge “Use this password”, not your Proton web password)\nSMTP_HOST, SMTP_PORT, SMTP_SECURITY"
      },
      {
        "title": "Quick start",
        "body": "Set up Proton Bridge (Linux) → see references/proton-bridge-setup.md.\nCreate a temporary plaintext env file (e.g., /tmp/proton.env), then encrypt it:\n\nbash scripts/encrypt_env.sh /tmp/proton.env <age-public-key>\n\nSend a test email:\n\npython3 scripts/send_email.py \\\n  --to you@example.com \\\n  --subject \"Test\" \\\n  --body \"Sent via Proton Bridge.\""
      },
      {
        "title": "Notes / gotchas",
        "body": "Bridge typically uses a local/self-signed cert for TLS on localhost. The sender script allows it.\nBridge must be running for localhost SMTP to work.\nDo not commit or share secrets; only share the .age encrypted file if you intend to."
      }
    ],
    "body": "Proton Bridge Email (age-encrypted)\n\nAuthored by Boilermolt + Boiler (Chris).\n\nUse Proton Mail Bridge for local SMTP/IMAP and keep credentials encrypted at rest with age.\n\nWhat this skill provides\nA minimal SMTP sender: scripts/send_email.py\nA helper to encrypt the Bridge env file: scripts/encrypt_env.sh\nSetup notes: references/proton-bridge-setup.md\nExpected local secret location\n\nThis skill assumes the encrypted env file is at:\n\n~/clawd/secrets/proton.env.age\n\nAnd your age identity is at:\n\n~/.config/age/keys.txt\n\nThe encrypted file should contain at least:\n\nPROTON_EMAIL\nPROTON_BRIDGE_USER\nPROTON_BRIDGE_PASS (Bridge “Use this password”, not your Proton web password)\nSMTP_HOST, SMTP_PORT, SMTP_SECURITY\nQuick start\nSet up Proton Bridge (Linux) → see references/proton-bridge-setup.md.\nCreate a temporary plaintext env file (e.g., /tmp/proton.env), then encrypt it:\nbash scripts/encrypt_env.sh /tmp/proton.env <age-public-key>\n\nSend a test email:\npython3 scripts/send_email.py \\\n  --to you@example.com \\\n  --subject \"Test\" \\\n  --body \"Sent via Proton Bridge.\"\n\nNotes / gotchas\nBridge typically uses a local/self-signed cert for TLS on localhost. The sender script allows it.\nBridge must be running for localhost SMTP to work.\nDo not commit or share secrets; only share the .age encrypted file if you intend to."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/boilerrat/protom-bridge-email",
    "publisherUrl": "https://clawhub.ai/boilerrat/protom-bridge-email",
    "owner": "boilerrat",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/protom-bridge-email",
    "downloadUrl": "https://openagent3.xyz/downloads/protom-bridge-email",
    "agentUrl": "https://openagent3.xyz/skills/protom-bridge-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/protom-bridge-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/protom-bridge-email/agent.md"
  }
}