← 返回 Skills 市场
paul-leo

Outlook Calendar

作者 Paul Leo · GitHub ↗ · v0.1.1
cross-platform ✓ 安全检测通过
387
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install outlook-calendar-2
功能描述
Microsoft Outlook 日历集成。管理日历和事件,创建/更新/删除事件,按日期范围查看日程。通过 MorphixAI 代理安全访问 Microsoft Graph API。
使用说明 (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: "[email protected]"
      name: "张三"
      type: "required"
    - email: "[email protected]"
      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 账号
安全使用建议
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.
功能分析
Type: OpenClaw Skill Name: outlook-calendar-2 Version: 0.1.1 The skill bundle provides standard Microsoft Outlook Calendar integration via the MorphixAI proxy service. It facilitates typical calendar management tasks such as listing, creating, updating, and deleting events using the Microsoft Graph API. The documentation in SKILL.md is consistent with its stated purpose, and no evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install outlook-calendar-2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /outlook-calendar-2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- 增加了更详细的前置条件说明,包括插件安装、API Key 获取、环境变量配置和账号链接步骤。 - 新增相关外部链接,提升账号连接与密钥生成的指引清晰度。 - 其余功能与操作说明保持不变。
v0.1.0
Initial release of Microsoft Outlook Calendar integration. - Manage Outlook calendars and events: view, create, update, and delete events. - Query calendar events within custom date ranges. - Secure Microsoft Graph API access via MorphixAI agent. - Requires user account linking and environment variable setup. - Detailed YAML-based action examples for all core workflows. - Provides clear best practices and usage notes for time zones, date formats, and attendee invitations.
元数据
Slug outlook-calendar-2
版本 0.1.1
许可证
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Outlook Calendar 是什么?

Microsoft Outlook 日历集成。管理日历和事件,创建/更新/删除事件,按日期范围查看日程。通过 MorphixAI 代理安全访问 Microsoft Graph API。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 387 次。

如何安装 Outlook Calendar?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install outlook-calendar-2」即可一键安装,无需额外配置。

Outlook Calendar 是免费的吗?

是的,Outlook Calendar 完全免费(开源免费),可自由下载、安装和使用。

Outlook Calendar 支持哪些平台?

Outlook Calendar 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Outlook Calendar?

由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。

💬 留言讨论