name: outlook-calendar description: Microsoft Outlook 日曆整合。管理日曆和事件,建立/更新/刪除事件,按日期範圍檢視日程。通過 MorphixAI 代理安全訪問 Microsoft Graph API。 metadata: openclaw: emoji: "📅" requires: env: [MORPHIXAI_API_KEY]
小蔥技能7w4.net有更新,你可以訪問看下。
通過 mx_outlook_calendar 工具管理 Outlook 日曆:檢視日曆列表、事件 CRUD、日期範圍查詢。
openclaw plugins install openclaw-morphixaimk_xxxxxx 金鑰export MORPHIXAI_API_KEY="mk_your_key_here"mx_link 工具連結(app: microsoft_outlook_calendar)mx_outlook_calendar:
action: get_me
mx_outlook_calendar:
action: list_calendars
mx_outlook_calendar:
action: list_events
top: 10
order_by: "start/dateTime desc"
mx_outlook_calendar:
action: get_calendar_view
start_date_time: "2026-03-01T00:00:00Z"
end_date_time: "2026-03-31T23:59:59Z"
top: 50
mx_outlook_calendar:
action: get_event
event_id: "AAMkADxx..."
mx_outlook_calendar:
action: create_event
subject: "專案評審會"
start: "2026-03-01T14:00:00"
end: "2026-03-01T15:30:00"
time_zone: "Asia/Shanghai"
body: "討論 Q1 專案進展和 Q2 計劃"
location: "會議室 A"
attendees:
- email: "colleague@company.com"
name: "張三"
type: "required"
- email: "manager@company.com"
type: "optional"
mx_outlook_calendar:
action: update_event
event_id: "AAMkADxx..."
subject: "更新後的會議標題"
start: "2026-03-01T15:00:00"
end: "2026-03-01T16:00:00"
time_zone: "Asia/Shanghai"
mx_outlook_calendar:
action: delete_event
event_id: "AAMkADxx..."
1. mx_outlook_calendar: get_calendar_view,
start_date_time: "2026-02-25T00:00:00Z",
end_date_time: "2026-02-25T23:59:59Z"
1. mx_outlook_calendar: get_calendar_view → 檢視空閒時間
2. mx_outlook_calendar: create_event → 建立會議,自動傳送邀請
1. mx_outlook_calendar: get_calendar_view,
start_date_time: "本週一", end_date_time: "本週日"
2. 彙總會議數量和時間分佈
2026-03-01T10:00:00)time_zone 使用 IANA 時區名(如 Asia/Shanghai、America/New_York),預設 UTCget_calendar_view 按實際發生時間返回事件(展開重複事件)list_events 返回原始事件定義(不展開重複事件)calendar_id 通常省略,使用預設日曆account_id 引數通常省略,工具自動檢測已連結的 Outlook Calendar 賬號這個 Skill 質量中上,文件清晰易讀,示例完整,能較好地幫助使用者完成 Outlook 日曆的整合和使用。功能覆蓋全面,操作說明詳細,常見場景都有示例參考。美中不足的是內容覆蓋範圍偏基礎,對於複雜使用場景的支援有限,缺少進階技巧和常見問題的解決方案文件。