Browse, install, and discover skills from the Work IQ plugin marketplace for GitHub Copilot CLI.
This page is the central reference for every plugin published in the Work IQ marketplace. Each plugin bundles one or more skills (AI-guided workflows) and may include an MCP server that exposes tools to your Copilot session.
| Requirement | Details |
|---|---|
| GitHub Copilot CLI | Getting started guide |
| Node.js 18+ | Download from nodejs.org — includes NPM and NPX |
| Admin consent | The WorkIQ MCP server requires tenant admin consent on first use. See the Tenant Administrator Enablement Guide. |
Before installing any plugin you need to register the work-iq marketplace in your Copilot CLI session (one-time setup):
# Open GitHub Copilot CLI
copilot
# Add the marketplace
/plugin marketplace add microsoft/work-iq/plugin marketplace list/plugin marketplace remove work-iqOnce the marketplace is registered, install any plugin with a single command:
# Install a single plugin
/plugin install workiq@work-iq
/plugin install microsoft-365-agents-toolkit@work-iq
/plugin install workiq-productivity@work-iqTip: Restart your Copilot CLI session after installing a plugin for the new skills to become available.
copilot plugin listcopilot plugin uninstall workiq
copilot plugin uninstall microsoft-365-agents-toolkit
copilot plugin uninstall workiq-productivity| # | Plugin | Skills | Description |
|---|---|---|---|
| 1 | workiq | 1 | Query Microsoft 365 data with natural language |
| 2 | microsoft-365-agents-toolkit | 3 | Toolkit for building M365 Copilot declarative agents |
| 3 | workiq-productivity | 9 | Read-only productivity insights across M365 |
Query Microsoft 365 data with natural language — emails, meetings, documents, Teams messages, and more.
Install: /plugin install workiq@work-iq
Source: plugins/workiq/
| Server | Tools |
|---|---|
@microsoft/workiq |
ask_work_iq, accept_eula, get_debug_link |
| Skill | Description |
|---|---|
| workiq | Guides usage of the ask_work_iq MCP tool for emails, meetings, documents, Teams messages, and people |
"What did John say about the proposal?"
"What's on my calendar tomorrow?"
"Find my recent PowerPoint presentations"
"Summarize today's messages in the Engineering channel"
"Who is working on Project Alpha?"
| Command | Description |
|---|---|
workiq accept-eula |
Accept the End User License Agreement |
workiq ask |
Ask a question or enter interactive mode |
workiq mcp |
Start MCP stdio server |
workiq version |
Show version information |
Toolkit for building Microsoft 365 Copilot declarative agents — scaffolding, JSON manifest authoring, capability configuration, and deployment.
Install: /plugin install microsoft-365-agents-toolkit@work-iq
Source: plugins/microsoft-365-agents-toolkit/
| Skill | Description |
|---|---|
| install-atk | Install or update the M365 Agents Toolkit CLI and VS Code extension |
| declarative-agent-developer | Scaffolding, JSON manifest authoring, capability configuration, deployment |
| ui-widget-developer | Build MCP servers with OpenAI Apps SDK widget rendering for Copilot Chat |
"Scaffold a new declarative agent for HR FAQ"
"Add web search to my agent"
"Deploy my agent with ATK"
9 read-only skills — email, meetings, Teams, SharePoint, projects, and people.
Install: /plugin install workiq-productivity@work-iq
Source: plugins/workiq-productivity/
| Skill | Description |
|---|---|
| action-item-extractor | Extract action items with owners, deadlines, and priorities |
| daily-outlook-triage | Quick summary of inbox and calendar for the day |
| email-analytics | Analyze email patterns — volume, senders, response times |
| meeting-cost-calculator | Calculate time and cost spent in meetings |
| org-chart | Visual ASCII org chart for any person |
| multi-plan-search | Search tasks across all Planner plans |
| site-explorer | Browse SharePoint sites, lists, and libraries |
| channel-audit | Audit channels for inactivity and cleanup |
| channel-digest | Summarize activity across multiple channels |
"Extract action items from today's meetings"
"Show me my inbox and calendar for today"
"Analyze my email patterns for the past month"
"How much time did I spend in meetings this week?"
"Show the org chart for Sarah Johnson"
"Search all my Planner tasks for 'budget review'"
"Browse the Marketing SharePoint site"
"Audit inactive channels in the Engineering team"
"Summarize activity across my Teams channels"
Want to add your own plugin? See CONTRIBUTING.md for the full guide. The short version:
- Create your plugin under
plugins/{your-plugin}/ - Add
.mcp.json,README.md, andskills/{name}/SKILL.md - Register it in
.github/plugin/marketplace.json - Update this file (
PLUGINS.md) with your plugin entry - Submit a pull request