add-workiq-tools

add-workiq-tools is a skill for Claude Code from microsoft/agent365-skills. It costs 92 tokens per session (11,379 once invoked), scanned A, original, MIT.

A setup procedure for adding WorkIQ tool servers to a .NET AgentFramework, Node.js, or Python agent. WorkIQ provides pre-built access to Microsoft 365 work data through MCP, a standard way for software to expose tools to an AI agent.

In plain words
What is it for?
Use it to give an agent access to services such as email, calendars, Teams, SharePoint, OneDrive, or Word, then register those tools in the application.
Why use it?
It removes the manual work of finding the right servers, adding their configuration, and connecting them to the agent's code.

Skill for Claude Code ✓ vendor

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the agent365 plugin — 7 skills shipped together

Good fit Use it to give an agent access to services such as email, calendars, Teams, SharePoint, OneDrive, or Word, then register those tools in the application.

Compare 6 skills from other repositories ↓
About the project

Microsoft Agent 365 Skills is a collection of coding-agent skills and MCP configuration for building and operating AI Teammates hosted in Microsoft Teams. It supports the Agent 365 lifecycle, including WorkIQ integration, registration, observability, validation, and local testing, for users of Claude Code and GitHub Copilot.

microsoft/agent365-skills · 36 stars · on GitHub

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add microsoft/agent365-skills
Claude Code
/plugin install agent365

Made for: Claude Code.

Or install agent365, the plugin that ships this one along with the rest of its 7 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for add-workiq-tools

README.md
[![agentmods](https://agentmods.dev/badge/skills/microsoft/agent365-skills/add-workiq-tools/github.svg)](https://agentmods.dev/skills/microsoft/agent365-skills/add-workiq-tools)
Your own site
<a href="https://agentmods.dev/skills/microsoft/agent365-skills/add-workiq-tools"><img src="https://agentmods.dev/badge/skills/microsoft/agent365-skills/add-workiq-tools/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-workiq-tools

Your own site · 80×15
<a href="https://agentmods.dev/skills/microsoft/agent365-skills/add-workiq-tools"><img src="https://agentmods.dev/badge/skills/microsoft/agent365-skills/add-workiq-tools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,379 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.11379
Opus 5 $0.00046 $0.05690
Sonnet 5 $0.00018 $0.02276
Haiku 4.5 $0.00009 $0.01138

Measured 9d ago against content hash 10e1cede87bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

add-workiq-tools scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent365/skills/add-workiq-tools/SKILL.md · 834 lines

How it starts

The opening of the file, as written. The whole thing — 834 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add WorkIQ Tools (A365 CLI + SDK)

Trigger phrases — any of these will activate this skill automatically:

  • "add workiq tools to this agent"
  • "add work intelligence tools"
  • "give this agent access to m365 data"
  • "give my agent access to email and calendar"
  • "add sharepoint access to this agent"
  • "add work iq mail to this agent"
  • "add work iq calendar to this agent"
  • "let this agent read emails and calendar events"
  • "wire up workiq MCP servers"

Overview

This skill adds WorkIQ MCP tool servers to an existing A365 agent using the A365 CLI.

WorkIQ tools give your agent pre-built access to M365 work data via MCP. The capability categories below describe what each catalog server does — but always pull the exact CLI argument names from a365 develop list-available. V2 catalog names look like mcp_MailTools, mcp_CalendarTools, etc., and they evolve over time.

  • Mail — Read, send, and manage email
  • Calendar — Read/create events, check availability
  • Teams — Read channel messages, list teams
  • SharePoint — Search documents, read files, list sites
  • OneDrive — Manage OneDrive files
  • Word — Read and write Word documents
  • User/Presence — Get user profile and presence
  • Copilot — Chat with Microsoft 365 Copilot
  • Dataverse and Dynamics 365 — CRUD and domain actions

How it works:

  1. a365 develop list-available — shows the catalog of available MCP servers
  2. a365 develop add-mcp-servers — adds selected servers to ToolingManifest.json
  3. Agent code is wired to load those tools at runtime via GetMcpToolsAsync
  4. Permissions are applied separately by a developer or Global Administrator

All changes are additive and idempotent — rerunning is safe.


Phase 0A — Workspace Triage and Detection Cache

Step 1 — Triage the workspace

Run in parallel:

  • Glob **/*.csproj, package.json, requirements.txt, pyproject.toml, src/**/*.ts, **/*.cs, **/*.pyhasProjectFiles.
  • Read .a365-workspace-detection.local.jsoncacheState (fresh if detectedAt < 60 min, stale if older, missing if absent).

Read the full file on GitHub · 834 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 834 lines · 92 tokens per session scan A 10e1cede87bc

Subscribe to this mod's changes

add-workiq-tools is a skill published in the GitHub repository microsoft/agent365-skills (36 stars, last pushed 13d ago), licensed MIT. It adds 92 tokens to every session and 11,379 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens