๐Ÿ”Œ Work IQ

August 7, 2026 ยท View on GitHub

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.


๐Ÿ“‹ Prerequisites

RequirementDetails
GitHub Copilot CLIGetting started guide
Node.js 18+Download from nodejs.org โ€” includes NPM and NPX
Admin consentThe WorkIQ MCP server requires tenant admin consent on first use. See the Tenant Administrator Enablement Guide.

๐Ÿช Installing the Marketplace

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

Check registered marketplaces

/plugin marketplace list

Remove the marketplace

/plugin marketplace remove work-iq

๐Ÿš€ Installing Plugins

Once the marketplace is registered, install any plugin with a single command:

# Install a single plugin
/plugin install workiq@work-iq
/plugin install workiq-preview@work-iq
/plugin install microsoft-365-agents-toolkit@work-iq
/plugin install workiq-productivity@work-iq

Tip: Restart your Copilot CLI session after installing a plugin for the new skills to become available.

Check installed plugins

copilot plugin list

Removing a plugin

copilot plugin uninstall workiq
copilot plugin uninstall workiq-preview
copilot plugin uninstall microsoft-365-agents-toolkit
copilot plugin uninstall workiq-productivity

๐Ÿ“ฆ Plugin Directory

#PluginSkillsDescription
1workiq1Full WorkIQ tool surface โ€” agentic queries plus direct M365 reads and writes
2workiq-preview1Preview build with the full entity tool surface (read + write)
3microsoft-365-agents-toolkit4Toolkit for building M365 Copilot declarative agents
4workiq-productivity10Read-only productivity insights across M365

workiq

Full WorkIQ tool surface for GitHub Copilot CLI: agentic semantic queries via ask plus direct, structured reads and writes against Microsoft 365 โ€” emails, meetings, calendar, documents, Teams messages, OneDrive/SharePoint files, and people.

Install: /plugin install workiq@work-iq Source: plugins/workiq/

MCP Servers

ServerTools
workiq (hosted)ask_work_iq, fetch_work_iq, fetch_blob_work_iq, get_schema_work_iq, search_paths_work_iq, create_entity_work_iq, update_entity_work_iq, delete_entity_work_iq, do_action_work_iq, call_function_work_iq, accept_eula, get_debug_link

Skills

SkillDescription
workiqGuides usage of the full WorkIQ tool surface โ€” ask for semantic questions plus entity tools for fast, structured M365 reads and writes

Example prompts

"What did John say about the proposal?"
"List my unread emails from Sarah this week"
"Create a calendar event Friday at 3pm with the design team"
"Accept the 2pm meeting from Rob"
"Send the draft email to the engineering distribution list"
"Show me the channels in the DevX team"

workiq-preview

Preview build. Same natural-language access as workiq, plus a broader set of entity tools for direct, structured M365 reads and writes โ€” fetch, create, update, delete, do-action, call-function, schema discovery, and blob downloads.

Install: /plugin install workiq-preview@work-iq Source: plugins/workiq-preview/

MCP Servers

ServerTools
@microsoft/workiq@previewask_work_iq, fetch_work_iq, fetch_blob_work_iq, get_schema_work_iq, search_paths_work_iq, create_entity_work_iq, update_entity_work_iq, delete_entity_work_iq, do_action_work_iq, call_function_work_iq, accept_eula, get_debug_link

Skills

SkillDescription
workiq-previewGuides usage of the full WorkIQ tool surface โ€” ask_work_iq for semantic questions plus entity tools for fast, structured reads and writes

Example prompts

"What did John say about the proposal?"
"List my unread emails from Sarah this week"
"Create a calendar event Friday at 3pm with the design team"
"Accept the 2pm meeting from Rob"
"Send the draft email to the engineering distribution list"
"Download the latest PowerPoint from my OneDrive 'Specs' folder"

microsoft-365-agents-toolkit

Toolkit for building and evaluating Microsoft 365 Copilot declarative agents โ€” scaffolding, JSON manifest authoring, capability configuration, deployment, and eval workflows.

Install: /plugin install microsoft-365-agents-toolkit@work-iq Source: plugins/microsoft-365-agents-toolkit/

Skills

SkillDescription
install-atkInstall or update the M365 Agents Toolkit CLI and VS Code extension
declarative-agent-developerScaffolding, JSON manifest authoring, capability configuration, deployment
ui-widget-developerBuild MCP servers with OpenAI Apps SDK widget rendering for Copilot Chat
m365-agent-evaluatorGenerate, run, and analyze evaluation suites for M365 Copilot declarative agents

Example prompts

"Scaffold a new declarative agent for HR FAQ"
"Add web search to my agent"
"Deploy my agent with ATK"
"Create eval prompts for my agent"
"Run my evals and explain the failures"
"Improve my agent instructions based on the latest eval results"

workiq-productivity

10 read-only skills โ€” email, meetings, Teams, SharePoint, projects, and people.

Install: /plugin install workiq-productivity@work-iq Source: plugins/workiq-productivity/

Skills

SkillDescription
action-item-extractorExtract action items with owners, deadlines, and priorities
daily-outlook-triageQuick summary of inbox and calendar for the day
email-analyticsAnalyze email patterns โ€” volume, senders, response times
meeting-cost-calculatorCalculate time and cost spent in meetings
org-chartVisual ASCII org chart for any person
multi-plan-searchSearch tasks across all Planner plans
planner-status-reportGenerate a status report for one Planner plan
site-explorerBrowse SharePoint sites, lists, and libraries
channel-auditAudit channels for inactivity and cleanup
channel-digestSummarize activity across multiple channels

Example prompts

"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'"
"Generate a status report for the Contoso launch plan"
"Browse the Marketing SharePoint site"
"Audit inactive channels in the Engineering team"
"Summarize activity across my Teams channels"

๐Ÿค Contributing a Plugin

Want to add your own plugin? See CONTRIBUTING.md for the full guide. The short version:

  1. Create your plugin under plugins/{your-plugin}/
  2. Add .mcp.json, README.md, and skills/{name}/SKILL.md
  3. Register it in .github/plugin/marketplace.json
  4. Update this file (PLUGINS.md) with your plugin entry
  5. Submit a pull request