Outlook Calendar

Microsoft Outlook 日历集成。管理日历和事件,创建/更新/删除事件,按日期范围查看日程。通过 MorphixAI 代理安全访问 Microsoft Graph API。

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 193 · 1 current installs · 1 all-time installs
byPaul Leo@paul-leo
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (Outlook calendar CRUD and queries) match the SKILL.md examples (mx_outlook_calendar actions). The only required environment variable is MORPHIXAI_API_KEY, which is appropriate for a proxy/service that mediates Microsoft Graph access. No unrelated binaries, config paths, or credentials are requested.
Instruction Scope
The runtime instructions are scoped to calendar operations (list/create/update/delete events, calendar views, account linking). They instruct installing the external openclaw-morphixai plugin and linking an Outlook account via morphix.app or mx_link. The instructions do not ask the agent to read arbitrary files, harvest unrelated environment variables, or transmit data to unexpected endpoints beyond morphix.app/MorphixAI.
Install Mechanism
This is an instruction-only skill (no install spec, no code). However it directs the user to install an external plugin (openclaw-morphixai) and to visit morphix.app to create API keys and link accounts. Because those are external dependencies not bundled here, verify the authenticity and trustworthiness of the openclaw-morphixai plugin and morphix.app before installing or providing credentials.
Credentials
Only MORPHIXAI_API_KEY is required, which is proportionate for a service proxy. Note: granting this key and linking an Outlook account will allow MorphixAI (and any component it authorizes) to read and modify calendar events, send invites, and access potentially sensitive scheduling data — this is expected but sensitive.
Persistence & Privilege
The skill does not request always:true or system-level persistence. It uses the platform default for autonomous invocation (disable-model-invocation is false) which is normal. The skill does not request to modify other skills or system-wide settings.
Assessment
This skill appears to do what it claims: control Outlook calendars via the MorphixAI proxy. Before installing or using it, verify that morphix.app and the openclaw-morphixai plugin are legitimate and trustworthy (check official docs, source code or publisher reputation). Understand that providing MORPHIXAI_API_KEY and linking your Outlook account gives that third party the ability to read, create, update, and delete events and to send invites on your behalf. Use a revocable/minimal-scoped API key if possible, review the plugin's permissions, and be prepared to revoke the key or unlink the account if you see unexpected activity. If you need stronger guarantees, ask for the plugin's source or documentation and confirm it is an official Morphix/openclaw release.

Like a lobster shell, security has layers — review code before you run it.

Current versionv0.1.1
Download zip
latestvk9792zcpsv0zzhgexsgxtswxz982d3nt

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📅 Clawdis
EnvMORPHIXAI_API_KEY

SKILL.md

Microsoft Outlook Calendar

通过 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 账号

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…