outlook-calendar

outlook-calendar is a skill for Claude Code, Codex from Morphicai/openclaw-morphixai. It costs 43 tokens per session (1,020 once invoked), scanned A, original, MIT.

An Outlook Calendar integration for Microsoft’s calendar service. It uses a proxy to access Microsoft Graph, the API that lets software work with Microsoft accounts and their data.

In plain words
What is it for?
Listing calendars and events, viewing schedules within a date range, reading event details, and creating, updating, or deleting events.
Why use it?
It lets an agent manage calendar information without requiring separate, hand-built calendar API requests.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Listing calendars and events, viewing schedules within a date range, reading event details, and creating, updating, or deleting events.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/morphicai/openclaw-morphixai/outlook-calendar
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Morphicai/openclaw-morphixai --skill outlook-calendar
Clone the repo
git clone --depth 1 https://github.com/Morphicai/openclaw-morphixai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for outlook-calendar

README.md
[![agentmods](https://agentmods.dev/badge/skills/morphicai/openclaw-morphixai/outlook-calendar/github.svg)](https://agentmods.dev/skills/morphicai/openclaw-morphixai/outlook-calendar)
Your own site
<a href="https://agentmods.dev/skills/morphicai/openclaw-morphixai/outlook-calendar"><img src="https://agentmods.dev/badge/skills/morphicai/openclaw-morphixai/outlook-calendar/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for outlook-calendar

Your own site · 80×15
<a href="https://agentmods.dev/skills/morphicai/openclaw-morphixai/outlook-calendar"><img src="https://agentmods.dev/badge/skills/morphicai/openclaw-morphixai/outlook-calendar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,020 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01020
Opus 5 $0.00022 $0.00510
Sonnet 5 $0.00009 $0.00204
Haiku 4.5 $0.00004 $0.00102

Measured 8d ago against content hash d831c6dd0c4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

outlook-calendar scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/openclaw-plugin/skills/outlook-calendar/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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. 汇总会议数量和时间分布

Read the full file on GitHub · 142 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 142 lines · 43 tokens per session scan A d831c6dd0c4c

Subscribe to this mod's changes

outlook-calendar is a skill published in the GitHub repository Morphicai/openclaw-morphixai (0 stars, last pushed 3mo ago), licensed MIT. It adds 43 tokens to every session and 1,020 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.