outlook-email-shared-mailboxes

$npx mdskill add openai/plugins/outlook-email-shared-mailboxes

Manage delegated Outlook mailboxes with explicit identity verification.

  • Handle reading, sending, and organizing messages from shared accounts.
  • Depends on Outlook API for mailbox access and folder navigation.
  • Requires exact principal name before any read or write operation.
  • Delivers results through specific action endpoints like list and fetch.

SKILL.md

.github/skills/outlook-email-shared-mailboxesView on GitHub ↗
---
name: outlook-email-shared-mailboxes
description: 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 Shared Mailboxes

Use this skill only when the user is working with a delegated or shared Outlook mailbox. These actions are separate from signed-in-user mailbox actions on purpose.

## Required Target

- Require the exact delegated/shared mailbox owner email address or UPN before reading or writing shared mail.
- Pass that identity as `mailbox_user_principal_name`.
- Do not discover, infer, or guess mailbox identities from display names alone.

## Action Routing

- Read signed-in user's mailbox: use the base Outlook Email skill, not this workflow.
- Read shared mailbox messages: `list_shared_messages`.
- Browse shared mailbox folders: `list_shared_mail_folders`.
- Fetch one shared mailbox message: `fetch_shared_message`.
- Send a new plain-text email from or on behalf of the shared mailbox: `send_email_on_behalf`.
- Mark shared mail read or unread: `mark_shared_email_read_state`.
- Move shared mail: `move_shared_email`.

## Workflow

1. Confirm the mailbox target and preserve the exact `mailbox_user_principal_name`.
2. For folder-specific work, list shared folders first and use exact folder IDs instead of guessing folder paths.
3. For message reads, keep the shared mailbox target attached to every message ID. A message ID from a shared mailbox should later be fetched or mutated with the corresponding shared action.
4. For sends, drafts, moves, and read-state changes, say which mailbox is being used before performing the write.
5. If the user shifts from a shared mailbox to their own mailbox, switch back to the signed-in-user actions.

## Safety

- Treat `send_email_on_behalf` as high impact. It sends immediately from another mailbox and supports plain text only.
- Do not use `send_email` when the user said to send from a shared mailbox.
- Do not use `move_email` or `mark_email_read_state` on message IDs obtained from shared mailbox actions.
- If a write fails because shared/delegated scopes are unavailable, say the shared-mailbox action or scope is the blocker rather than claiming the normal mailbox action cannot work.

## Example Requests

- "List unread mail in the support shared mailbox support@example.com."
- "Send this status note from ops-notices@example.com to the incident responders."
- "Move that message in the billing shared mailbox to its Escalations folder."

More from openai/plugins

SkillDescription
accessibility-and-inclusive-visualizationMake data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.
agent-browserBrowser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.
agent-browser-verifyAutomated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass/fail before continuing.
agents-sdkBuild AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
ai-elementsAI Elements component library guidance — pre-built React components for AI interfaces built on shadcn/ui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.
ai-gatewayVercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.
ai-generation-persistenceAI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation
ai-sdkVercel AI SDK expert guidance. Use when building AI-powered features — chat interfaces, text generation, structured output, tool calling, agents, MCP integration, streaming, embeddings, reranking, image generation, or working with any LLM provider.
aiq-deploy|
aiq-research|