<< All versions
Gmail —
IMAP —
Skill v1.0.1
currentAutomated scan100/100daxaur/openpaw/c-email
2 files
──Details
PublishedMay 30, 2026 at 10:38 PM
Content Hashsha256:8db441a7203ba5ad...
Git SHAa2562d1c5cb2
Bump Typepatch
──Files
Files (1 file, 2.2 KB)
SKILL.md2.2 KBactive
SKILL.md · 56 lines · 2.2 KB
version: "1.0.1" name: c-email description: Read, send, search, and label email via gog (Gmail CLI) or himalaya (IMAP). Supports inbox management, drafting replies, thread viewing, and label/folder operations across Gmail and standard IMAP accounts. tags: [email, gmail, imap, gog, himalaya, inbox]
This skill manages email via gog (Gmail) or himalaya (IMAP). Check availability with which gog himalaya.
Gmail — gog mail (gogcli)
bash
gog mail list # List inbox messagesgog mail list --label "INBOX" --max 20gog mail read <message-id> # Read a messagegog mail send --to "user@example.com" --subject "Subject" --body "Body"gog mail reply <message-id> --body "Reply text"gog mail search "from:alice subject:report"gog mail search "is:unread after:2026/02/01"gog mail label add <message-id> "Label"gog mail label remove <message-id> "INBOX"gog mail archive <message-id>gog mail trash <message-id>gog mail labels # List all labelsgog mail thread <thread-id> # View full thread
IMAP — himalaya
bash
himalaya list # List inboxhimalaya list -m 50 # List last 50 messageshimalaya read <id> # Read messagehimalaya write # Compose new message (interactive)himalaya send --to "user@example.com" --subject "Subj" < body.txthimalaya reply <id>himalaya forward <id>himalaya search "subject:report"himalaya move <id> "Archive" # Move to folderhimalaya delete <id>himalaya folders # List foldershimalaya --account work list # Use a specific account
Usage Guidelines
- Prefer
gogfor Gmail accounts; preferhimalayafor non-Gmail IMAP. - Use
gog mail searchwith Gmail search syntax (from:, to:, subject:, is:unread, has:attachment). - For sending with body content, pass the body directly or pipe a file.
- Both tools require prior authentication setup.
Notes
gogrequires Google OAuth configured viagog auth.himalayarequires IMAP credentials in~/.config/himalaya/config.toml.