ワンクリックで
outlook
Outlook integration — read/send emails, manage calendar and contacts via PowerShell (Windows) or osascript (Mac).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Outlook integration — read/send emails, manage calendar and contacts via PowerShell (Windows) or osascript (Mac).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
macOS PIM-Integration — Mail, Kalender, Kontakte verwalten via osascript (Apple Mail, Calendar.app, Contacts.app).
Outlook-Integration — Emails lesen/senden, Kalender, Kontakte verwalten via PowerShell (Windows) oder osascript (Mac).
macOS PIM integration — manage mail, calendar, and contacts via osascript (Apple Mail, Calendar.app, Contacts.app).
Audio-Dateien transkribieren (OGG, WAV, MP3, FLAC) — Speech-to-Text mit whisper.cpp lokal.
Transcribe audio files (OGG, WAV, MP3, FLAC) — local speech-to-text with whisper.cpp.
Wissen in persistenten Speicher schreiben — neue Erkenntnisse, Entscheidungen oder Fakten festhalten.
| name | outlook |
| description | Outlook integration — read/send emails, manage calendar and contacts via PowerShell (Windows) or osascript (Mac). |
| user-invocable | false |
No MCP server — you use Bash directly with PowerShell (Windows) or osascript (macOS).
if [[ "$(uname)" == "Darwin" ]]; then echo "mac"; else echo "win"; fi
Ready-to-use PowerShell scripts are in scripts/. All output JSON.
| Script | Purpose | Example Call |
|---|---|---|
read-emails.ps1 | Last N emails | powershell -NoProfile -File scripts/read-emails.ps1 -Count 5 |
get-email.ps1 | Single email by ID | powershell -NoProfile -File scripts/get-email.ps1 -EntryID "..." |
search-emails.ps1 | Search emails | powershell -NoProfile -File scripts/search-emails.ps1 -Query "invoice" |
send-email.ps1 | Send email | powershell -NoProfile -File scripts/send-email.ps1 -To "a@b.com" -Subject "Hi" -Body "Text" |
read-calendar.ps1 | Events in date range | powershell -NoProfile -File scripts/read-calendar.ps1 -Days 14 |
create-event.ps1 | Create event | powershell -NoProfile -File scripts/create-event.ps1 -Subject "Meeting" -Start "2025-03-01 14:00" |
search-contacts.ps1 | Search contacts | powershell -NoProfile -File scripts/search-contacts.ps1 -Query "Smith" |
Important: Run scripts from the skill directory (cd there or use absolute path).
send-email.ps1: -CC "cc@example.com"create-event.ps1: -Duration 60 (min, default 60), -Location "...", -Body "..."read-emails.ps1: -Count N (default 10)read-calendar.ps1: -Days N (default 7)search-emails.ps1: -Count N (default 20)On macOS, the macos-pim skill handles Mail, Calendar and Contacts via osascript (Apple Mail, Calendar.app, Contacts.app). This skill is Windows-only.
get-email.ps1 for details