Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

gmailGmail 邮件管理

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

411

周安装

17

GitHub Stars

2

下载量

140
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gmail(Gmail 邮件管理)
来源仓库:https://github.com/abdullahbeam/nexus-design-abdullah
仓库路径:skills/gmail
安装命令:
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill gmail
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill gmail

简介

gmail 支持 Gmail 邮件的读取、发送、回复和转发,适用于自动化邮件管理流程。

  • 适合处理日常通信、客户跟进或批量通知等场景,需通过 OAuth 完成身份认证。
  • 所有发送操作默认创建草稿,必须经用户确认后才执行,防止误发或重复发送。
  • 使用前需授权访问邮箱,注意遵守 Gmail API 配额限制,避免频繁调用导致临时封禁。
  • gmail 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Purpose

Automate Gmail operations including reading, sending, replying, forwarding, and managing emails. Useful for email automation, inbox management, and communication workflows.

Gmail

Read, send, and manage Gmail via OAuth authentication.


CRITICAL SAFETY RULES

These rules are MANDATORY and must NEVER be bypassed:

1. NEVER Send Without Explicit Approval

  • ALWAYS show the user the complete email (to, subject, body) before sending
  • ALWAYS ask for explicit confirmation: "Do you want me to send this email? (yes/no)"
  • NEVER auto-send emails, even if user says "send an email to X"
  • NEVER send multiple emails in a loop without per-email confirmation

2. Draft-First Workflow (DEFAULT BEHAVIOR)

  • ALL send/reply/forward operations create a draft FIRST
  • User sees the draft and chooses: yes (send now), no (delete draft), or keep-draft (review in Gmail)
  • This ensures user can ALWAYS review in Gmail UI before any email is sent

3. Sensitive Operations Require Confirmation

OperationRequires Confirmation
Send emailYES - ALWAYS
Reply to emailYES - ALWAYS
Forward emailYES - ALWAYS
Send draftYES - ALWAYS
Delete draftYes
Trash emailYes

4. Read Operations Are Safe

These do NOT require confirmation:

  • List emails, Search emails, Read email content
  • List labels, List drafts, Get attachment

Pre-Flight Check (ALWAYS RUN FIRST)

python3 00-system/skills/google/google-master/scripts/google_auth.py --check --service gmail

Exit codes:

  • 0: Ready to use - proceed with user request
  • 1: Need to login - run python3 00-system/skills/google/google-master/scripts/google_auth.py --login
  • 2: Missing credentials or dependencies - see ../google-master/references/setup-guide.md

Quick Reference

List Emails

python3 00-system/skills/google/gmail/scripts/gmail_operations.py list --max 10

List Unread Emails

python3 00-system/skills/google/gmail/scripts/gmail_operations.py list --query "is:unread" --max 10

Search Emails

python3 00-system/skills/google/gmail/scripts/gmail_operations.py search "from:user@example.com subject:report"

Read Email

python3 00-system/skills/google/gmail/scripts/gmail_operations.py read <message_id>

Send Email

python3 00-system/skills/google/gmail/scripts/gmail_operations.py send --to "user@example.com" --subject "Hello" --body "Message body"

Reply to Email

python3 00-system/skills/google/gmail/scripts/gmail_operations.py reply <message_id> --body "Reply text"

Forward Email

python3 00-system/skills/google/gmail/scripts/gmail_operations.py forward <message_id> --to "user@example.com"

Create Draft

python3 00-system/skills/google/gmail/scripts/gmail_operations.py draft --to "user@example.com" --subject "Draft" --body "Content"

List Drafts

python3 00-system/skills/google/gmail/scripts/gmail_operations.py drafts

List Labels

python3 00-system/skills/google/gmail/scripts/gmail_operations.py labels

Trash/Archive/Mark Read

python3 00-system/skills/google/gmail/scripts/gmail_operations.py trash <message_id>
python3 00-system/skills/google/gmail/scripts/gmail_operations.py archive <message_id>
python3 00-system/skills/google/gmail/scripts/gmail_operations.py mark-read <message_id>

Gmail Search Syntax

OperatorExampleDescription
from:from:user@example.comEmails from sender
to:to:me@example.comEmails to recipient
subject:subject:meetingSubject contains word
is:unreadis:unreadUnread emails
has:attachmenthas:attachmentHas attachments
after:after:2024/01/01After date
before:before:2024/12/31Before date
label:label:importantHas label

Error Handling

See ../google-master/references/error-handling.md for common errors and solutions.


Setup

First-time setup: ../google-master/references/setup-guide.md

Quick start:

  1. pip install google-auth google-auth-oauthlib google-api-python-client
  2. Create OAuth credentials in Google Cloud Console (enable Gmail API, choose "Desktop app")
  3. Add to .env file at Nexus root: GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com GOOGLE_CLIENT_SECRET=your-client-secret GOOGLE_PROJECT_ID=your-project-id
  4. Run python3 00-system/skills/google/google-master/scripts/google_auth.py --login

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.2%
按下载量换算35

Antigravity

21.8%
按下载量换算31

Codex

18%
按下载量换算25

Gemini CLI

12.41%
按下载量换算17

windsurf

7.29%
按下载量换算10

OpenCode

3.57%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills