一键导入
google-gmail-skill
Send, search, and read Gmail emails. Supports composing emails with attachments, searching by query, and reading email content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send, search, and read Gmail emails. Supports composing emails with attachments, searching by query, and reading email content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-gmail-skill |
| description | Send, search, and read Gmail emails. Supports composing emails with attachments, searching by query, and reading email content. |
| allowed-tools | google_gmail |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Send, search, and read emails using Gmail API.
Consolidated Gmail tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
send | Send an email | to, subject, body |
search | Search emails by query | query |
read | Read email by ID | message_id |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "send" |
| to | string | Yes | Recipient email address |
| subject | string | Yes | Email subject line |
| body | string | Yes | Email body (plain text or HTML) |
| cc | string | No | CC recipients (comma-separated) |
| bcc | string | No | BCC recipients (comma-separated) |
| body_type | string | No | "text" or "html" (default: text) |
Example - Send plain text email:
{
"operation": "send",
"to": "recipient@example.com",
"subject": "Meeting Tomorrow",
"body": "Hi,\n\nJust a reminder about our meeting tomorrow at 2pm.\n\nBest regards"
}
Example - Send HTML email:
{
"operation": "send",
"to": "recipient@example.com",
"subject": "Weekly Report",
"body": "<h1>Weekly Report</h1><p>Here are the highlights...</p>",
"body_type": "html"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "search" |
| query | string | Yes | Gmail search query |
| max_results | integer | No | Maximum results (default: 10, max: 100) |
| include_body | boolean | No | Fetch full message body (default: false) |
Query Syntax Examples:
from:sender@example.com - Emails from specific senderto:recipient@example.com - Emails to specific recipientsubject:meeting - Emails with "meeting" in subjecthas:attachment - Emails with attachmentsis:unread - Unread emailsafter:2024/01/01 - Emails after datebefore:2024/12/31 - Emails before datelabel:important - Emails with label"exact phrase" - Exact phrase matchfrom:boss@company.com is:unread - Combine multiple filtersExample:
{
"operation": "search",
"query": "from:client@example.com has:attachment after:2024/01/01",
"max_results": 20
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "read" |
| message_id | string | Yes | Gmail message ID from search results |
| format | string | No | "full", "minimal", "raw", "metadata" (default: full) |
Example:
{
"operation": "read",
"message_id": "abc123"
}
is:unread, then read important onesfrom:email@example.cominput-tools handle