Outlook Calendar

👤 paul-leo 📦 v0.1.1 ⭐ 4.2 ⬇️ 1K 下載
📄 辦公效率 免費 🔑 需 API Key

📖 技能介紹


name: outlook-calendar description: Microsoft Outlook 日曆整合。管理日曆和事件,建立/更新/刪除事件,按日期範圍檢視日程。通過 MorphixAI 代理安全訪問 Microsoft Graph API。 metadata: openclaw: emoji: "📅" requires: env: [MORPHIXAI_API_KEY]


Microsoft Outlook Calendar

小蔥技能7w4.net有更新,你可以訪問看下。

通過 mx_outlook_calendar 工具管理 Outlook 日曆:檢視日曆列表、事件 CRUD、日期範圍查詢。

前置條件

  1. 安裝外掛: openclaw plugins install openclaw-morphixai
  2. 獲取 API Key: 訪問 morphix.app/api-keys 生成 mk_xxxxxx 金鑰
  3. 配置環境變數: export MORPHIXAI_API_KEY="mk_your_key_here"
  4. 連結賬號: 訪問 morphix.app/connections 連結 Outlook Calendar 賬號,或通過 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. 彙總會議數量和時間分佈

注意事項

  • 日期時間格式為 ISO 8601(如 2026-03-01T10:00:00
  • time_zone 使用 IANA 時區名(如 Asia/ShanghaiAmerica/New_York),預設 UTC
  • get_calendar_view 按實際發生時間返回事件(展開重複事件)
  • list_events 返回原始事件定義(不展開重複事件)
  • 建立帶參會者的事件會自動傳送會議邀請郵件
  • calendar_id 通常省略,使用預設日曆
  • account_id 引數通常省略,工具自動檢測已連結的 Outlook Calendar 賬號

🤖 AI 評測

這個 Skill 質量中上,文件清晰易讀,示例完整,能較好地幫助使用者完成 Outlook 日曆的整合和使用。功能覆蓋全面,操作說明詳細,常見場景都有示例參考。美中不足的是內容覆蓋範圍偏基礎,對於複雜使用場景的支援有限,缺少進階技巧和常見問題的解決方案文件。

📊 多維度評分

適應性4.4
規範性4
有效性4.3
可靠性3.8
可信度4.8

📁 包含檔案 (2 個)

📄 SKILL.md 3.2 KB
📄 _meta.json 137 B