gmail
v0.1.3Work with Gmail using the configured Gmail app connector.
by OpenAIMIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/gmail/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── skills/gmail/SKILL.md└── skills/gmail-inbox-triage/SKILL.md
Skills2
Manage Gmail inbox triage, mailbox search, thread summaries, action extraction, reply drafting, and email forwarding through connected Gmail data. Use when the user wants to inspect a mailbox or thread, search email with Gmail query syntax, summarize messages, extract decisions and follow-ups, prepare replies or forwarded messages, or organize messages with explicit confirmation before send, archive, delete, or label actions.
Triage a Gmail inbox into actionable buckets such as urgent, needs reply soon, waiting, and FYI using connected Gmail data. Use when the user asks to triage the inbox, rank what needs attention, find what still needs a reply, or separate important mail from noise.
Manifests1
{
"name": "gmail",
"version": "0.1.3",
"description": "Work with Gmail using the configured Gmail app connector.",
"author": {
"name": "OpenAI",
"email": "support@openai.com",
"url": "https://openai.com/"
},
"homepage": "https://workspace.google.com/products/gmail/",
"repository": "https://github.com/openai/plugins",
"license": "MIT",
"keywords": [
"gmail",
"email",
"google"
],
"skills": "./skills/",
"apps": "./.app.json",
"interface": {
"displayName": "Gmail",
"shortDescription": "Read and manage Gmail",
"longDescription": "Use Gmail to summarize inbox activity, draft replies, and organize email threads through the connected Gmail app.",
"developerName": "OpenAI",
"category": "Communication",
"capabilities": [
"Interactive",
"Write"
],
"websiteURL": "https://workspace.google.com/products/gmail/",
"privacyPolicyURL": "https://policies.google.com/privacy",
"termsOfServiceURL": "https://policies.google.com/terms",
"defaultPrompt": [
"Summarize inbox, draft replies, or process email threads"
],
"brandColor": "#EA4335",
"composerIcon": "./assets/gmail-small.svg",
"logo": "./assets/logo.png",
"screenshots": []
}
}