plugins marketplace
← All plugins

gmail

v0.1.3

Work with Gmail using the configured Gmail app connector.

Codex2 skills

by OpenAIMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/gmail/ inside the repository.

Layout

plugins/gmail/
├── .codex-plugin/plugin.json
├── skills/gmail/SKILL.md
└── skills/gmail-inbox-triage/SKILL.md

Skills2

gmailskills/gmail/SKILL.md

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.

gmail-inbox-triageskills/gmail-inbox-triage/SKILL.md

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

plugins/gmail/.codex-plugin/plugin.json
{
  "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": []
  }
}