Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Outlook calendar + inbox via PowerShell COM or Microsoft Graph
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-13 | ✗→✓ | ▲ Improved | -6% | 0% |
| case-19 | ✗→✓ | ▲ Improved | -23% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-24 | ✗→✓ | ▲ Improved | -6% | 0% |
| case-07 | ✓→✓ | = Same ✓ | 138% | 0% |
Read Outlook calendar events, check inbox, send emails, and schedule meetings using PowerShell COM automation or Microsoft Graph API — no browser required.
powershell$outlook = New-Object -ComObject Outlook.Application $ns = $outlook.GetNamespace("MAPI") $cal = $ns.GetDefaultFolder(9) # 9 = olFolderCalendar $today = [DateTime]::Today $items = $cal.Items $items.IncludeRecurrences = $true $items.Sort("[Start]") $filter = "[Start] >= '$($today.ToString('g'))' AND [Start] < '$($today.AddDays(1).ToString('g'))'" $items.Restrict($filter) | Select-Object Subject, Start, End, Location
powershell$outlook = New-Object -ComObject Outlook.Application $ns = $outlook.GetNamespace("MAPI") $inbox = $ns.GetDefaultFolder(6) # 6 = olFolderInbox $inbox.Items | Where-Object { $_.UnRead -eq $true } | Select-Object Subject, SenderName, ReceivedTime | Sort-Object ReceivedTime -Descending | Select-Object -First 10
powershell$outlook = New-Object -ComObject Outlook.Application $mail = $outlook.CreateItem(0) # 0 = olMailItem $mail.To = "recipient@example.com" $mail.Subject = "Subject here" $mail.Body = "Message body" $mail.Send()
powershell$outlook = New-Object -ComObject Outlook.Application $appt = $outlook.CreateItem(1) # 1 = olAppointmentItem $appt.Subject = "Team Sync" $appt.Start = "2026-04-20 14:00" $appt.Duration = 60 $appt.Location = "Conference Room A" $appt.RequiredAttendees = "colleague@example.com" $appt.Save()
powershell$token = $env:GRAPH_TOKEN $headers = @{ Authorization = "Bearer $token" } Invoke-RestMethod -Uri "https://graph.microsoft.com/v1.0/me/calendarView?startDateTime=$(Get-Date -Format o)&endDateTime=$((Get-Date).AddDays(1) | Get-Date -Format o)" -Headers $headers
"What meetings do I have today?" → Run the COM calendar filter for today's date range, return Subject, Start, End, Location for each event.
"Any unread emails from Vikram?" → Filter inbox items where UnRead -eq $true and SenderName -like '*Vikram*'.
"Send a quick email to team@company.com — subject: Sprint update, body: Demo at 3pm" → Create olMailItem via COM, set fields, call Send().
az login or the Microsoft identity platformOther measured skills in the registry, with their headline benchmark lift.