plugins marketplace
← All plugins

outlook-email

v0.1.3

Work with Outlook Email using the configured Microsoft Outlook app connector.

Codex6 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/outlook-email/ inside the repository.

Layout

plugins/outlook-email/
├── .codex-plugin/plugin.json
├── skills/outlook-email/SKILL.md
├── skills/outlook-email-inbox-triage/SKILL.md
├── skills/outlook-email-reply-drafting/SKILL.md
├── skills/outlook-email-shared-mailboxes/SKILL.md
├── skills/outlook-email-subscription-cleanup/SKILL.md
└── skills/outlook-email-task-extraction/SKILL.md

Skills6

outlook-emailskills/outlook-email/SKILL.md

Triage Outlook mail, extract tasks, clean up subscriptions, draft responses, and route shared mailbox work. Use when the user asks to inspect an Outlook inbox or thread, summarize open actions and deadlines, clean up newsletters, draft replies or forwards, organize mailbox follow-up work, or act on a delegated/shared Outlook mailbox.

outlook-email-inbox-triageskills/outlook-email-inbox-triage/SKILL.md

Triage an Outlook inbox into actionable buckets such as urgent, needs reply soon, waiting, and FYI using connected Outlook 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.

outlook-email-reply-draftingskills/outlook-email-reply-drafting/SKILL.md

Draft Outlook email replies safely from connected mailbox context. Use when the user wants to reply to a thread, decide whether to reply-all, prepare a draft before sending, or turn the latest Outlook message into a polished response.

outlook-email-shared-mailboxesskills/outlook-email-shared-mailboxes/SKILL.md

Work with delegated or shared Outlook Email mailboxes. Use when the user explicitly wants to read another mailbox, send from or on behalf of a shared mailbox, mark shared mail read or unread, move shared mail, or browse folders in a shared mailbox.

outlook-email-subscription-cleanupskills/outlook-email-subscription-cleanup/SKILL.md

Clean up Outlook newsletters and recurring subscription email safely. Use when the user wants to unsubscribe, separate newsletters from human mail, move recurring senders into folders, or organize low-signal subscription traffic without losing important messages.

outlook-email-task-extractionskills/outlook-email-task-extraction/SKILL.md

Extract action items, deadlines, commitments, and owners from Outlook email threads and mailbox searches. Use when the user wants a task list from one thread, several related messages, or a mailbox slice, including who owes what and when.

Manifests1

plugins/outlook-email/.codex-plugin/plugin.json
{
  "name": "outlook-email",
  "version": "0.1.3",
  "description": "Work with Outlook Email using the configured Microsoft Outlook app connector.",
  "author": {
    "name": "OpenAI",
    "email": "support@openai.com",
    "url": "https://openai.com/"
  },
  "homepage": "https://www.microsoft.com/en-us/microsoft-365/outlook/email-and-calendar-software-microsoft-outlook",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [
    "outlook-email",
    "email",
    "microsoft"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Outlook Email",
    "shortDescription": "Triage Outlook inboxes and draft replies",
    "longDescription": "Use Outlook Email to triage inboxes, summarize threads, extract actions, and draft replies or forwards through the connected Microsoft Outlook app.",
    "developerName": "OpenAI",
    "category": "Communication",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://www.microsoft.com/en-us/microsoft-365/outlook/email-and-calendar-software-microsoft-outlook",
    "privacyPolicyURL": "https://www.microsoft.com/en-us/privacy/privacystatement",
    "termsOfServiceURL": "https://www.microsoft.com/en-us/servicesagreement/",
    "defaultPrompt": [
      "Triage inbox, summarize thread, or draft reply or forward"
    ],
    "brandColor": "#0078D4",
    "composerIcon": "./assets/logo.png",
    "logo": "./assets/logo.png",
    "screenshots": []
  }
}