{
  "schemaVersion": "1.0",
  "item": {
    "slug": "near-email-reporter",
    "name": "Near Email Reporter",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/shaiss/near-email-reporter",
    "canonicalUrl": "https://clawhub.ai/shaiss/near-email-reporter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/near-email-reporter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=near-email-reporter",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "README.md",
      "scripts/emailer.js",
      "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. 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/near-email-reporter"
    },
    "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/near-email-reporter",
    "agentPageUrl": "https://openagent3.xyz/skills/near-email-reporter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/near-email-reporter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/near-email-reporter/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": "NEAR Email Reporter Skill",
        "body": "Send NEAR transaction reports via email with scheduling."
      },
      {
        "title": "Description",
        "body": "This skill allows you to configure email settings, send NEAR transaction reports, set up alerts, and schedule periodic email reports. Uses standard SMTP with secure configuration storage."
      },
      {
        "title": "Features",
        "body": "Configure SMTP email settings\nSend transaction reports via email\nSet up alerts for specific events\nSchedule periodic reports\nSecure configuration storage"
      },
      {
        "title": "near-email setup [options]",
        "body": "Configure email settings.\n\nOptions:\n\n--host <host> - SMTP server host\n--port <port> - SMTP server port (default: 587)\n--user <user> - SMTP username\n--pass <pass> - SMTP password\n--from <email> - From email address\n--secure - Use SSL/TLS (default: false)\n\nExample:\n\nnear-email setup --host smtp.gmail.com --port 587 --user myemail@gmail.com --pass mypassword --from myemail@gmail.com"
      },
      {
        "title": "near-email report <account_id> [recipient]",
        "body": "Send a transaction report for an account.\n\nParameters:\n\naccount_id - NEAR account to report on\nrecipient - Email recipient (optional, uses default)"
      },
      {
        "title": "near-email alert <account_id> <threshold> [recipient]",
        "body": "Set up balance alert for an account.\n\nParameters:\n\naccount_id - NEAR account to monitor\nthreshold - Balance threshold (in NEAR)\nrecipient - Email recipient (optional)"
      },
      {
        "title": "near-email schedule <account_id> <cron_expr> [recipient]",
        "body": "Schedule periodic email reports.\n\nParameters:\n\naccount_id - NEAR account to report on\ncron_expr - Cron expression (e.g., \"0 9 * * *\" for daily at 9am)\nrecipient - Email recipient (optional)"
      },
      {
        "title": "Configuration",
        "body": "Email settings are stored in ~/.near-email/config.json with secure permissions."
      },
      {
        "title": "Requirements",
        "body": "SMTP email account (Gmail, SendGrid, etc.)\nNode.js for running the scripts"
      },
      {
        "title": "Notes",
        "body": "For Gmail, use App Passwords: https://myaccount.google.com/apppasswords\nConfiguration file is stored securely with limited permissions"
      },
      {
        "title": "References",
        "body": "Nodemailer: https://nodemailer.com/\nNEAR RPC API: https://docs.near.org/api/rpc"
      }
    ],
    "body": "NEAR Email Reporter Skill\n\nSend NEAR transaction reports via email with scheduling.\n\nDescription\n\nThis skill allows you to configure email settings, send NEAR transaction reports, set up alerts, and schedule periodic email reports. Uses standard SMTP with secure configuration storage.\n\nFeatures\nConfigure SMTP email settings\nSend transaction reports via email\nSet up alerts for specific events\nSchedule periodic reports\nSecure configuration storage\nCommands\nnear-email setup [options]\n\nConfigure email settings.\n\nOptions:\n\n--host <host> - SMTP server host\n--port <port> - SMTP server port (default: 587)\n--user <user> - SMTP username\n--pass <pass> - SMTP password\n--from <email> - From email address\n--secure - Use SSL/TLS (default: false)\n\nExample:\n\nnear-email setup --host smtp.gmail.com --port 587 --user myemail@gmail.com --pass mypassword --from myemail@gmail.com\n\nnear-email report <account_id> [recipient]\n\nSend a transaction report for an account.\n\nParameters:\n\naccount_id - NEAR account to report on\nrecipient - Email recipient (optional, uses default)\nnear-email alert <account_id> <threshold> [recipient]\n\nSet up balance alert for an account.\n\nParameters:\n\naccount_id - NEAR account to monitor\nthreshold - Balance threshold (in NEAR)\nrecipient - Email recipient (optional)\nnear-email schedule <account_id> <cron_expr> [recipient]\n\nSchedule periodic email reports.\n\nParameters:\n\naccount_id - NEAR account to report on\ncron_expr - Cron expression (e.g., \"0 9 * * *\" for daily at 9am)\nrecipient - Email recipient (optional)\nConfiguration\n\nEmail settings are stored in ~/.near-email/config.json with secure permissions.\n\nRequirements\nSMTP email account (Gmail, SendGrid, etc.)\nNode.js for running the scripts\nNotes\nFor Gmail, use App Passwords: https://myaccount.google.com/apppasswords\nConfiguration file is stored securely with limited permissions\nReferences\nNodemailer: https://nodemailer.com/\nNEAR RPC API: https://docs.near.org/api/rpc"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/shaiss/near-email-reporter",
    "publisherUrl": "https://clawhub.ai/shaiss/near-email-reporter",
    "owner": "shaiss",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/near-email-reporter",
    "downloadUrl": "https://openagent3.xyz/downloads/near-email-reporter",
    "agentUrl": "https://openagent3.xyz/skills/near-email-reporter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/near-email-reporter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/near-email-reporter/agent.md"
  }
}