โ† All skills
Tencent SkillHub ยท Developer Tools

Apple Mail Search Safe (fruitmail)

Apple Mail search on macOS with fast metadata and full body lookup. Use for finding messages in Mail.app by subject/sender/recipient/date, opening messages,...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Apple Mail search on macOS with fast metadata and full body lookup. Use for finding messages in Mail.app by subject/sender/recipient/date, opening messages,...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
5.0.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Fruitmail (Fast & Safe)

Fast SQLite-based search for Apple Mail.app with full body content support.

Installation

npm install -g apple-mail-search-cli

Usage

# Complex search fruitmail search --subject "invoice" --days 30 --unread # Search by sender fruitmail sender "@amazon.com" # List unread emails fruitmail unread # Read full email body (supports --json) fruitmail body 94695 # Open in Mail.app fruitmail open 94695 # Database stats fruitmail stats

Commands

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

Search Options

--subject <text> Search subject lines --days <n> Last N days --unread Only unread emails --limit <n> Max results (default: 20) --json Output as JSON --copy Copy DB before query (safest mode)

Examples

# Find bank statements from last month fruitmail search --subject "statement" --days 30 # Get unread emails as JSON fruitmail unread --json | jq '.[] | .subject' # Find emails from Amazon fruitmail sender "@amazon.com" --limit 50

Performance

MethodTime for 130k emailsAppleScript (full iteration)8+ minutesSQLite (this tool)~50ms

Technical Details

Database: ~/Library/Mail/V{9,10,11}/MailData/Envelope Index Query method: SQLite (read-only) + AppleScript (body content) Safety: Read-only mode prevents modification; optional --copy mode available

Notes

macOS only โ€” queries Apple Mail.app's local database Read-only โ€” can search/read but cannot compose/send To send emails: Use the himalaya skill (IMAP/SMTP)

Source

https://github.com/gumadeiras/fruitmail-cli

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc