一键导入
outlook
Outlook-Integration — Emails lesen/senden, Kalender, Kontakte verwalten via PowerShell (Windows) oder osascript (Mac).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Outlook-Integration — Emails lesen/senden, Kalender, Kontakte verwalten via PowerShell (Windows) oder osascript (Mac).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
macOS PIM-Integration — Mail, Kalender, Kontakte verwalten via osascript (Apple Mail, Calendar.app, Contacts.app).
macOS PIM integration — manage mail, calendar, and contacts via osascript (Apple Mail, Calendar.app, Contacts.app).
Outlook integration — read/send emails, manage calendar and contacts via PowerShell (Windows) or osascript (Mac).
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 — Emails lesen/senden, Kalender, Kontakte verwalten via PowerShell (Windows) oder osascript (Mac). |
| user-invocable | false |
Kein MCP-Server — du nutzt Bash direkt mit PowerShell (Windows) oder osascript (macOS).
if [[ "$(uname)" == "Darwin" ]]; then echo "mac"; else echo "win"; fi
Fertige PowerShell-Scripts liegen in scripts/. Alle geben JSON aus.
| Script | Zweck | Aufruf-Beispiel |
|---|---|---|
read-emails.ps1 | Letzte N Emails | powershell -NoProfile -File scripts/read-emails.ps1 -Count 5 |
get-email.ps1 | Einzelne Email per ID | powershell -NoProfile -File scripts/get-email.ps1 -EntryID "..." |
search-emails.ps1 | Emails suchen | powershell -NoProfile -File scripts/search-emails.ps1 -Query "Rechnung" |
send-email.ps1 | Email senden | powershell -NoProfile -File scripts/send-email.ps1 -To "a@b.com" -Subject "Hi" -Body "Text" |
read-calendar.ps1 | Termine in Zeitraum | powershell -NoProfile -File scripts/read-calendar.ps1 -Days 14 |
create-event.ps1 | Termin erstellen | powershell -NoProfile -File scripts/create-event.ps1 -Subject "Meeting" -Start "2025-03-01 14:00" |
search-contacts.ps1 | Kontakte suchen | powershell -NoProfile -File scripts/search-contacts.ps1 -Query "Mueller" |
Wichtig: Scripts aus dem Skill-Verzeichnis ausfuehren (cd dorthin oder absoluten Pfad nutzen).
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)Auf macOS uebernimmt der macos-pim Skill Mail, Kalender und Kontakte via osascript (Apple Mail, Calendar.app, Contacts.app). Dieser Skill ist nur fuer Windows.
get-email.ps1 fuer Details