{
  "schemaVersion": "1.0",
  "item": {
    "slug": "apple-mail-search-safe",
    "name": "Apple Mail Search Safe (fruitmail)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gumadeiras/apple-mail-search-safe",
    "canonicalUrl": "https://clawhub.ai/gumadeiras/apple-mail-search-safe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/apple-mail-search-safe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=apple-mail-search-safe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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-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/apple-mail-search-safe"
    },
    "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/apple-mail-search-safe",
    "agentPageUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/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": "Fruitmail (Fast & Safe)",
        "body": "Fast SQLite-based search for Apple Mail.app with full body content support."
      },
      {
        "title": "Installation",
        "body": "npm install -g apple-mail-search-cli"
      },
      {
        "title": "Usage",
        "body": "# Complex search\nfruitmail search --subject \"invoice\" --days 30 --unread\n\n# Search by sender\nfruitmail sender \"@amazon.com\"\n\n# List unread emails\nfruitmail unread\n\n# Read full email body (supports --json)\nfruitmail body 94695\n\n# Open in Mail.app\nfruitmail open 94695\n\n# Database stats\nfruitmail stats"
      },
      {
        "title": "Commands",
        "body": "CommandDescriptionsearchComplex search with filterssender <query>Search by sender emailunreadList unread emailsbody <id>Read full email body (AppleScript)open <id>Open email in Mail.appstatsDatabase statistics"
      },
      {
        "title": "Search Options",
        "body": "--subject <text>   Search subject lines\n--days <n>         Last N days\n--unread           Only unread emails\n--limit <n>        Max results (default: 20)\n--json             Output as JSON\n--copy             Copy DB before query (safest mode)"
      },
      {
        "title": "Examples",
        "body": "# Find bank statements from last month\nfruitmail search --subject \"statement\" --days 30\n\n# Get unread emails as JSON\nfruitmail unread --json | jq '.[] | .subject'\n\n# Find emails from Amazon\nfruitmail sender \"@amazon.com\" --limit 50"
      },
      {
        "title": "Performance",
        "body": "MethodTime for 130k emailsAppleScript (full iteration)8+ minutesSQLite (this tool)~50ms"
      },
      {
        "title": "Technical Details",
        "body": "Database: ~/Library/Mail/V{9,10,11}/MailData/Envelope Index\nQuery method: SQLite (read-only) + AppleScript (body content)\nSafety: Read-only mode prevents modification; optional --copy mode available"
      },
      {
        "title": "Notes",
        "body": "macOS only — queries Apple Mail.app's local database\nRead-only — can search/read but cannot compose/send\nTo send emails: Use the himalaya skill (IMAP/SMTP)"
      },
      {
        "title": "Source",
        "body": "https://github.com/gumadeiras/fruitmail-cli"
      }
    ],
    "body": "Fruitmail (Fast & Safe)\n\nFast SQLite-based search for Apple Mail.app with full body content support.\n\nInstallation\nnpm install -g apple-mail-search-cli\n\nUsage\n# Complex search\nfruitmail search --subject \"invoice\" --days 30 --unread\n\n# Search by sender\nfruitmail sender \"@amazon.com\"\n\n# List unread emails\nfruitmail unread\n\n# Read full email body (supports --json)\nfruitmail body 94695\n\n# Open in Mail.app\nfruitmail open 94695\n\n# Database stats\nfruitmail stats\n\nCommands\nCommand\tDescription\nsearch\tComplex search with filters\nsender <query>\tSearch by sender email\nunread\tList unread emails\nbody <id>\tRead full email body (AppleScript)\nopen <id>\tOpen email in Mail.app\nstats\tDatabase statistics\nSearch Options\n--subject <text>   Search subject lines\n--days <n>         Last N days\n--unread           Only unread emails\n--limit <n>        Max results (default: 20)\n--json             Output as JSON\n--copy             Copy DB before query (safest mode)\n\nExamples\n# Find bank statements from last month\nfruitmail search --subject \"statement\" --days 30\n\n# Get unread emails as JSON\nfruitmail unread --json | jq '.[] | .subject'\n\n# Find emails from Amazon\nfruitmail sender \"@amazon.com\" --limit 50\n\nPerformance\nMethod\tTime for 130k emails\nAppleScript (full iteration)\t8+ minutes\nSQLite (this tool)\t~50ms\nTechnical Details\nDatabase: ~/Library/Mail/V{9,10,11}/MailData/Envelope Index\nQuery method: SQLite (read-only) + AppleScript (body content)\nSafety: Read-only mode prevents modification; optional --copy mode available\nNotes\nmacOS only — queries Apple Mail.app's local database\nRead-only — can search/read but cannot compose/send\nTo send emails: Use the himalaya skill (IMAP/SMTP)\nSource\n\nhttps://github.com/gumadeiras/fruitmail-cli"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gumadeiras/apple-mail-search-safe",
    "publisherUrl": "https://clawhub.ai/gumadeiras/apple-mail-search-safe",
    "owner": "gumadeiras",
    "version": "5.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/apple-mail-search-safe",
    "downloadUrl": "https://openagent3.xyz/downloads/apple-mail-search-safe",
    "agentUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apple-mail-search-safe/agent.md"
  }
}