plugins marketplace
← All plugins

superhuman

v0.1.2

Connect Codex to the official Superhuman Mail MCP server for email and calendar workflows.

Codex6 skills

by SuperhumanMIT5kupdated 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/superhuman/ inside the repository.

Layout

plugins/superhuman/
├── .codex-plugin/plugin.json
├── skills/batch-draft-writer/SKILL.md
├── skills/deal-tracker/SKILL.md
├── skills/eod-wrapup/SKILL.md
├── skills/meeting-scheduler/SKILL.md
├── skills/morning-briefing/SKILL.md
└── skills/superhuman-mail/SKILL.md

Skills6

batch-draft-writerskills/batch-draft-writer/SKILL.md

Drafts multiple email replies or follow-ups in batch using the Superhuman Mail MCP server — processing your inbox in bulk rather than one email at a time. Use this skill whenever someone asks to "draft replies to my unread emails", "respond to all my emails", "write follow-ups for my meetings this week", "batch draft responses", "draft emails for all threads that need a reply", "auto-draft my inbox", "help me respond to everything", "write follow-up emails based on my meetings", "process my inbox", "draft responses to these threads", or any variation of wanting multiple emails drafted at once. Also trigger when someone says "I have a bunch of emails to respond to", "help me get through my inbox", "draft a mail merge", "send personalized emails to these people", or wants to create multiple drafts from a single prompt. Trigger broadly — if someone wants more than one email drafted, this skill should activate.

deal-trackerskills/deal-tracker/SKILL.md

Builds a relationship or deal summary using the Superhuman Mail MCP server — pulling together all email history, read receipts, and calendar interactions with a specific person or company to act as a lightweight CRM. Use this skill whenever someone asks to "show me all communication with [person/company]", "what's the status of my deal with [company]", "give me a relationship summary for [person]", "when did I last talk to [person]", "pull up everything about [company]", "track this deal", "who haven't I followed up with", "show me engagement on emails I sent to [person]", "CRM view of [person]", "what's my communication history with [person]", or any variation of wanting a consolidated view of a relationship or deal. Trigger broadly — if someone wants to understand the full picture of their interactions with a person or company, this skill should activate.

eod-wrapupskills/eod-wrapup/SKILL.md

Generates an end-of-day wrap-up using the Superhuman Mail MCP server — identifies open loops, unanswered emails, and action items from your day so you can leave work with a clear head. Use this skill whenever someone asks to "wrap up my day", "what's still open in my inbox", "end of day summary", "what do I still need to do", "any emails I missed today", "open loops in my inbox", "summarize my day", "what didn't I respond to", "daily review", "close out my day", "what fell through the cracks", or any variation of wanting to know what's unfinished before signing off. Also trigger when someone says "before I log off", "anything I'm forgetting", "daily debrief", "what should I tackle tomorrow", or wants an accounting of their email activity for the day. Trigger broadly — if someone wants to review what happened and what's still pending at the end of their workday, this skill should activate.

meeting-schedulerskills/meeting-scheduler/SKILL.md

Handles end-to-end meeting scheduling using the Superhuman Mail MCP server — from finding available times to sending the invite or proposing times via email. Use this skill whenever someone asks to "schedule a meeting with [person]", "find a time to meet", "book a call", "set up a meeting", "when am I free to meet with [person]", "propose times to [person]", "send my availability", "create a meeting invite", "schedule a 1:1", "find overlap in our calendars", "reschedule my meeting with [person]", or any variation of coordinating a meeting. Also trigger when someone says "I need to find time with [person]", "can you check my calendar and suggest times", "set up a recurring sync", "block time for [task]", or when an email thread involves scheduling and the user wants to act on it. Trigger broadly — if someone needs help coordinating when people meet, this skill should activate.

morning-briefingskills/morning-briefing/SKILL.md

Generates a morning briefing that triages your inbox and previews your day using the Superhuman Mail MCP server — acting as an AI chief of staff. Use this skill whenever someone asks to "brief me on my day", "triage my inbox", "what's important in my email", "summarize my unread emails", "what do I need to deal with today", "chief of staff briefing", "morning update", "inbox summary", "what emails need my attention", "clear my inbox", or any variation of wanting a prioritized view of their email and calendar before they start working. Also trigger when someone says "I just woke up, what's going on" or "catch me up on my inbox". Trigger broadly — if someone wants to understand the state of their inbox or day at a glance, this skill should activate.

superhuman-mailskills/superhuman-mail/SKILL.md

Use Superhuman Mail MCP for email and calendar workflows such as searching inboxes, reading threads, drafting or sending mail, managing labels, checking read statuses, finding availability, and creating or updating events.

Manifests1

plugins/superhuman/.codex-plugin/plugin.json
{
  "name": "superhuman",
  "version": "0.1.2",
  "description": "Connect Codex to the official Superhuman Mail MCP server for email and calendar workflows.",
  "author": {
    "name": "Superhuman",
    "url": "https://superhuman.com/"
  },
  "homepage": "https://help.superhuman.com/hc/en-us/articles/49810745762067-Superhuman-Mail-MCP-Server",
  "repository": "https://github.com/superhuman/mcp-mail",
  "license": "MIT",
  "keywords": [
    "superhuman",
    "mail",
    "email",
    "calendar",
    "mcp"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Superhuman Mail",
    "shortDescription": "The most productive email app ever, for Gmail & Outlook",
    "longDescription": "Build powerful workflows and automations for email and calendar. Find anything in your inbox, draft replies that sound like you for every recipient, check read statuses, schedule meetings, and send — all without leaving Codex.",
    "developerName": "Superhuman",
    "category": "Communication",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://superhuman.com/",
    "privacyPolicyURL": "https://superhuman.com/privacy",
    "termsOfServiceURL": "https://superhuman.com/legal/terms",
    "defaultPrompt": [
      "@Superhuman Mail flag what needs attention from the last 24 hours",
      "@Superhuman Mail forward today's invoices to finance@acme.co",
      "@Superhuman Mail summarize responses to the Founders Dinner and who hasn't opened it"
    ],
    "brandColor": "#CE9EC6",
    "composerIcon": "./assets/superhuman-mail-small.svg",
    "logo": "./assets/superhuman-mail.svg",
    "screenshots": []
  }
}