com um clique
apple-flow-mail
// Deep workflow skill for Apple Flow Mail operations. Use for unread triage, message-id content fetch, mailbox/account targeting, label moves, and reply/send flows where deterministic sequencing matters.
// Deep workflow skill for Apple Flow Mail operations. Use for unread triage, message-id content fetch, mailbox/account targeting, label moves, and reply/send flows where deterministic sequencing matters.
| name | apple-flow-mail |
| description | Deep workflow skill for Apple Flow Mail operations. Use for unread triage, message-id content fetch, mailbox/account targeting, label moves, and reply/send flows where deterministic sequencing matters. |
Use this skill when Mail work needs a reliable multi-step flow instead of one-off commands.
message_idapple-flow tools mail_list_unread --account "<account>" --mailbox "INBOX" --limit 20
apple-flow tools mail_get_content "<message_id>" --account "<account>" --mailbox "INBOX"
apple-flow tools mail_move_to_label --label "<target-mailbox>" --message-id "<message_id>" --account "<account>" --mailbox "INBOX"
apple-flow tools mail_send "user@example.com" "Subject" "Body text" --account "<account>"
apple-flow tools mail_search "<query>" --account "<account>" --mailbox "INBOX" --days 30 --limit 20
Pull full body for decision-critical items with mail_get_content.
Apply move/send action only after content confirmation.
message_id as authoritative for follow-up commands.--message-id flags or use --input-file JSON.Batch example:
apple-flow tools mail_move_to_label \
--label "Archive/Newsletters" \
--message-id "id-1" \
--message-id "id-2" \
--account "<account>" \
--mailbox "INBOX"
--account in multi-account environments.INBOX; override --mailbox when triaging another source.--days)mail_get_content fails:
message_idmessage_id, not guesswork.Core routing and troubleshooting skill for Apple Flow gateways (Mail, Reminders, Notes, Calendar). Use when deciding which `apple-flow tools` command to run, applying shared safety rules, or debugging gateway permissions/resource-name mismatches.
General Apple Numbers automation for Apple Flow. Use when working with `.numbers` files through `apple-flow tools`, including creating new sheets, appending structured rows, choosing insertion behavior (`after-data`, `after-headers`, `at-end`), and validating/debugging row placement with read-back checks.
Universal Markdown-to-Apple-Pages formatting skill for Apple Flow. Use when converting `.md` files into polished `.pages` documents with accurate structure (headings, lists, tables, code blocks, links) and clean business-ready styling.
Use when working on Apple Flow in the apple-flow repository. Enforces safe defaults, beginner-first startup, focused debugging, config hygiene, and required verification.