plugins marketplace
← All plugins

teams

v0.1.3

Work with Teams using the configured Microsoft Teams app connector.

Codex7 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/teams/ inside the repository.

Layout

plugins/teams/
├── .codex-plugin/plugin.json
├── skills/teams/SKILL.md
├── skills/teams-channel-summarization/SKILL.md
├── skills/teams-daily-digest/SKILL.md
├── skills/teams-messages/SKILL.md
├── skills/teams-notification-triage/SKILL.md
├── skills/teams-planner-task-management/SKILL.md
└── skills/teams-reply-drafting/SKILL.md

Skills7

teamsskills/teams/SKILL.md

Search through Microsoft Teams chats or channels, triage unread or recent activity, draft follow-ups, and manage Planner tasks through connected Teams data.

teams-channel-summarizationskills/teams-channel-summarization/SKILL.md

Summarize activity from one Microsoft Teams channel or one scoped Teams conversation and return a concise recap or post-ready follow-up.

teams-daily-digestskills/teams-daily-digest/SKILL.md

Create a daily Microsoft Teams digest from selected chats, channels, or workstreams. Use when the user asks for a daily Teams recap or summary of today's Teams activity.

teams-messagesskills/teams-messages/SKILL.md

Compose, route, draft, or send Microsoft Teams messages with exact destination resolution, real user mentions, and Teams-native DM or channel routing.

teams-notification-triageskills/teams-notification-triage/SKILL.md

Triage recent Microsoft Teams activity into a priority queue or task list for the user.

teams-planner-task-managementskills/teams-planner-task-management/SKILL.md

Review and manage Microsoft Planner tasks from Teams workflows. Use when the user wants to inspect plans or buckets, create tasks from follow-ups, update task fields, or safely delete a Planner task.

teams-reply-draftingskills/teams-reply-drafting/SKILL.md

Draft Microsoft Teams replies from available context. Use when the user wants help finding messages that likely need a response and preparing reply drafts.

Manifests1

plugins/teams/.codex-plugin/plugin.json
{
  "name": "teams",
  "version": "0.1.3",
  "description": "Work with Teams using the configured Microsoft Teams app connector.",
  "author": {
    "name": "OpenAI",
    "email": "support@openai.com",
    "url": "https://openai.com/"
  },
  "homepage": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [
    "teams",
    "chat",
    "microsoft"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Teams",
    "shortDescription": "Summarize Teams and draft follow-ups",
    "longDescription": "Use Teams to summarize chats, extract actions, and draft channel or meeting follow-ups through the connected Microsoft Teams app.",
    "developerName": "OpenAI",
    "category": "Communication",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software",
    "privacyPolicyURL": "https://www.microsoft.com/en-us/privacy/privacystatement",
    "termsOfServiceURL": "https://www.microsoft.com/en-us/servicesagreement/",
    "defaultPrompt": [
      "Summarize chat, pull out action items, or draft follow-up"
    ],
    "brandColor": "#5B5FC7",
    "composerIcon": "./assets/logo.png",
    "logo": "./assets/logo.png",
    "screenshots": []
  }
}