teams
v0.1.3Work with Teams using the configured Microsoft Teams app connector.
by OpenAIMIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/teams/ inside the repository.
Layout
├── .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
Search through Microsoft Teams chats or channels, triage unread or recent activity, draft follow-ups, and manage Planner tasks through connected Teams data.
Summarize activity from one Microsoft Teams channel or one scoped Teams conversation and return a concise recap or post-ready follow-up.
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.
Compose, route, draft, or send Microsoft Teams messages with exact destination resolution, real user mentions, and Teams-native DM or channel routing.
Triage recent Microsoft Teams activity into a priority queue or task list for the user.
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.
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
{
"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": []
}
}