بنقرة واحدة
Read flagged emails from Maildir (mblaze) and draft replies via n8n-hooks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Read flagged emails from Maildir (mblaze) and draft replies via n8n-hooks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
Read Slack — search messages, list channels/users, read history and thread replies.
Access git.thalheim.io (Gitea) API as Janet — create repos, issues, PRs, releases, etc.
Read-only GitHub API access as Mic92 — issues, PRs, releases, commits, actions runs, etc.
Manage todos using todoman and vdirsyncer.
Manage documents in Paperless-ngx (search, upload, tag). Use for document management tasks.
| name | |
| description | Read flagged emails from Maildir (mblaze) and draft replies via n8n-hooks. |
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 "a@example.com" --subject "Hi" --body-plain "Hello"
# All options
n8n-hooks store-draft \
--to "a@example.com" --cc "b@example.com" --bcc "c@example.com" \
--from "other@thalheim.io" \
--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 "a@example.com" --subject "Hi" --body-plain -