machines/eve/modules/opencrow/skills/email/SKILL.md
Read flagged emails from Maildir (mblaze) and draft replies via n8n-hooks.
npx skillsauth add mic92/dotfiles emailInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Flagged emails live in /var/mail/flagged/ (read-only Maildir). Use mblaze:
# List messages
mscan /var/mail/flagged/{cur,new}/
# Show a message (renders MIME)
mshow /var/mail/flagged/cur/<filename>
# Extract headers
mhdr -h From -h Subject -h Date /var/mail/flagged/cur/<filename>
# List/extract MIME parts
mshow -t <file> # list parts
mshow -x <file> # extract attachments
# Search by header
mpick -t 'from =~ "someone"' /var/mail/flagged/{cur,new}/
# Thread and list
mthread /var/mail/flagged/{cur,new}/ | mscan
Use n8n-hooks to store drafts in IMAP for review before sending:
# Basic draft (plain text auto-wrapped in <pre> for HTML)
n8n-hooks store-draft --to "[email protected]" --subject "Hi" --body-plain "Hello"
# All options
n8n-hooks store-draft \
--to "[email protected]" --cc "[email protected]" --bcc "[email protected]" \
--from "[email protected]" \
--subject "Re: Thread" \
--body-plain "text" --body-html "<p>text</p>" \
--in-reply-to "<msgid@host>" --references "<msgid@host>" \
--attach file.pdf
# Body from stdin
echo "body" | n8n-hooks store-draft --to "[email protected]" --subject "Hi" --body-plain -
data-ai
Profile macOS processes (CPU hot spots, hangs, "what is X doing?"). Wraps sample/spindump/xctrace and prints a compact text summary or speedscope/flamegraph data.
tools
Create and manage Crab.fit scheduling events. Use for coordinating meeting times across multiple people.
tools
Manage todos using todoman and vdirsyncer.
business
Read Slack — search messages, list channels/users, read history and thread replies.