plugins/workiq-productivity/skills/meeting-cost-calculator/SKILL.md
Calculate time spent in meetings per week or month — total hours, percentage of work time, attendee‑hours, and identify your most expensive recurring meetings.
npx skillsauth add microsoft/work-iq meeting-cost-calculatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyzes your calendar to compute exactly how much time you spend in meetings over a given period. Breaks down total hours, percentage of your work week consumed, average meeting duration, attendee-hours (a proxy for organizational cost), and ranks your most expensive recurring meetings so you can make data-driven decisions about which to keep, shorten, or cancel.
workiq-ask_work_iq (
question: "What is my display name, email address, time zone, and configured working hours (start time, end time, and working days of the week)?"
)
Extract displayName, mail, timeZone, working hours start/end, and working days from the response. Calculate the total available work hours per week (e.g. 5 days × 8 hours = 40 hours).
Determine the analysis period from the user's request (default: current week). For multi-week analysis, pull the full range.
workiq-ask_work_iq (
question: "List all my calendar events from {period start date} to {period end date} including the subject, start time, end time, attendees list with count, whether it is an all-day event, whether it is cancelled, recurrence details, organizer, showAs status, and event type."
)
Filter out cancelled events, all-day events, and events where showAs is "free". These do not count as meeting time.
For each qualifying event, compute:
(end - start)attendees array + 1 (organizer)duration_hours × attendee_counttype is "seriesMaster" or recurrence is populatedAggregate across the period:
Group meetings by day and compute daily meeting load:
Build a per-day bar chart for visual display.
Group recurring meeting instances by their series subject. For each series:
Sort by total hours descending. The top entries are the "most expensive" meetings.
Compute actionable insights:
💰 MEETING COST CALCULATOR
═══════════════════════════════════════════════════════
📅 Period: July 14 – 18, 2025 (1 week)
👤 User: Firstname1 Lastname1
⏰ Work week: 40 hours (Mon–Fri, 9 AM – 5 PM PST)
───────────────────────────────────────────────────────
📊 SUMMARY
───────────────────────────────────────────────────────
Total meeting time: 22.5 hours
Meeting count: 18 meetings
Work time in meetings: 56.3% ⚠️ Above 50% threshold
Average duration: 1h 15m
Total attendee-hours: 112.5 hours
Longest meeting streak: 3h 30m (Tuesday)
───────────────────────────────────────────────────────
📊 DAILY MEETING LOAD
───────────────────────────────────────────────────────
Mon │ ████████████░░░░░░░░ 3.0h (37%) 4 meetings
Tue │ ██████████████████░░ 6.5h (81%) 5 meetings ⚠️
Wed │ ██████████████░░░░░░ 5.0h (62%) 4 meetings
Thu │ ████████░░░░░░░░░░░░ 4.0h (50%) 3 meetings
Fri │ ████████░░░░░░░░░░░░ 4.0h (50%) 2 meetings
└────────────────────
0h 2h 4h 6h 8h
───────────────────────────────────────────────────────
🔄 MOST EXPENSIVE RECURRING MEETINGS
───────────────────────────────────────────────────────
# Meeting Freq Dur Attend Hours/Wk
─────────────────────────────────────────────────────────────
1 Sprint Planning Weekly 2h 00m 12 2.0h ⚠️
2 Team Standup Daily 0h 30m 8 2.5h ⚠️
3 Design Review Weekly 1h 30m 6 1.5h
4 1:1 with Manager Weekly 0h 30m 2 0.5h
5 All-Hands Weekly 1h 00m 50 1.0h
───────────────────────────────────────────────────────
💡 INSIGHTS & RECOMMENDATIONS
───────────────────────────────────────────────────────
⚠️ 56% of your work week is in meetings — aim for < 40%
⚠️ Tuesday is dangerously overloaded (6.5h of meetings)
💡 Team Standup costs 2.5h/wk across the team — consider
async standups 2 days/week to save 1h
💡 Sprint Planning at 2h may benefit from a 90-min timebox
💡 Consider "No Meeting Tuesday" to reclaim 6.5h
| Parameter | Required | Default | Description |
|-----------|----------|---------|-------------|
| period | No | "this week" | Analysis period: "this week", "last week", "this month", "last 4 weeks", or custom date range |
| startDate | No | Auto | Custom start date in ISO 8601 |
| endDate | No | Auto | Custom end date in ISO 8601 |
| includeDeclined | No | false | Whether to include meetings you declined |
| meetingOverloadThreshold | No | 50 | Percentage above which to flag meeting overload |
| MCP Server | Tool | Purpose |
|------------|------|---------|
| workiq (Local WorkIQ CLI) | ask_work_iq | Get user profile, timezone, working hours, and retrieve calendar events for the analysis period |
showAs: "free" are excluded since they don't block your calendar."How much of my time is in meetings this week?"
Claude fetches your calendar for the current Mon–Fri, computes total meeting hours against your configured work hours, and returns a full breakdown including daily load chart, recurring-meeting rankings, and any overload flags.
"Analyze my meeting costs for this month and flag anything above 40% of my time."
Claude sets meetingOverloadThreshold to 40, pulls the full month of calendar data, aggregates all metrics, and highlights any day or week where meetings exceeded that threshold — plus surfaces the top recurring meetings driving the highest attendee-hours.
"Which recurring meetings have cost me the most time over the last 4 weeks?"
Claude retrieves four weeks of calendar data, groups recurring series across the entire range, and ranks them by total hours consumed. Useful for preparing a meeting-audit conversation with your manager or team.
If ask_work_iq returns no events for the requested period, confirm the date range is correct and that the authenticated account has calendar read permissions. Remind the user that events on secondary or shared calendars are not included unless those calendars are surfaced in the primary view.
If ask_work_iq returns no working hours information, fall back to a standard 40-hour work week (Mon–Fri, 9 AM – 5 PM UTC) and inform the user that results may not reflect their actual schedule. Prompt them to verify timezone settings in their Microsoft 365 profile.
Some events (e.g., personal blocks or private meetings) may omit the attendees field. In these cases, default attendee count to 1 (the user only) so attendee-hours still accumulate correctly. Flag these events in a footnote as "attendee data unavailable."
If work hours for a given day are zero (weekend, public holiday), exclude that day from the work-hours denominator to avoid inflating the meeting percentage. If the entire requested period falls outside normal working days, notify the user and suggest choosing a different range.
If MCP tool calls return a 403 or permission error, instruct the user to ensure the Claude integration has Calendars.Read scope granted in their Microsoft 365 tenant admin settings.
tools
Sub-skill of microsoft-365-agents-toolkit. Routed expert system with 100+ micro-expert files for migrating Slack bots to Teams, cross-platform bridging, and dual-platform bot development. USE FOR: migrating Slack bot to Teams, adding Teams support to Slack bot, building dual-platform bots, converting Block Kit to Adaptive Cards, identity/OAuth bridging, deploying bots to Azure or AWS, configuring AI model providers. DO NOT USE FOR: general web development, non-bot projects, standalone Teams development without Slack (use parent skill instead).
tools
Build, test, and deploy code-based Teams apps using the M365 Agents Toolkit CLI. USE FOR: Custom Engine Agents (CEA), Teams bots, tabs, message extensions, Agents Playground local testing, Azure provision/deploy, Slack-to-Teams migration, cross-platform bot development, Block Kit to Adaptive Cards conversion, AI model integration (OpenAI/Azure/Anthropic/Bedrock). DO NOT USE FOR: declarative agents — use the `declarative-agent-developer` skill instead. Triggers: "build a teams bot", "custom engine agent", "CEA", "teams agent", "tab app", "message extension", "test with agents playground", "provision to azure", "deploy to azure", "migrate slack bot", "slack to teams", "convert block kit", "add azure openai to my bot"
tools
--- name: workiq-preview description: Preview build of WorkIQ — the full Microsoft 365 tool surface: agentic semantic queries via ask_work_iq PLUS direct, structured reads and writes for emails, meetings, calendar, documents, Teams messages, OneDrive/SharePoint files, and people. USE THIS SKILL for ANY workplace question or write action where the data lives in Microsoft 365. Read triggers, "what did [person] say", "what are [person]'s priorities", "top of mind from [person]", "what was discussed
development
Query Microsoft 365 Copilot for workplace intelligence - emails, meetings, documents, Teams messages, and people information. USE THIS SKILL for ANY workplace-related question where the answer likely exists in Microsoft 365 data. This includes questions about what someone said, shared, or communicated; meetings, emails, messages, or documents; priorities, decisions, or context from colleagues; organizational knowledge; project status; team activities; or any information that would be in Outlook, Teams, SharePoint, OneDrive, or Calendar. When in doubt about workplace context, try WorkIQ first. Trigger phrases include "what did [person] say", "what are [person]'s priorities", "top of mind from [person]", "what was discussed", "find emails about", "what meetings", "what documents", "who is working on", "what's the status of", "any updates on", etc.