Ms Todo

v0.1.1

Microsoft To Do 任务管理集成。管理任务列表和任务,创建、完成、删除任务。通过 MorphixAI 代理安全访问 Microsoft Graph API。

0· 316·0 current·0 all-time
byPaul Leo@paul-leo

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for paul-leo/ms-todo.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Ms Todo" (paul-leo/ms-todo) from ClawHub.
Skill page: https://clawhub.ai/paul-leo/ms-todo
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: MORPHIXAI_API_KEY
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install ms-todo

ClawHub CLI

Package manager switcher

npx clawhub@latest install ms-todo
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (Microsoft To Do integration) matches the instructions: all example actions are list/create/update/complete/delete tasks. The only required secret is MORPHIXAI_API_KEY which is consistent with the declared Morphix proxy usage.
Instruction Scope
SKILL.md is a focused, instruction-only spec: it tells the agent to call the mx_ms_todo tool and to install/link via openclaw-morphixai and morphix.app. It does not instruct reading unrelated files, system paths, or other environment variables.
Install Mechanism
There is no install spec and no code files; nothing will be downloaded or written by the skill itself. The SKILL.md does instruct the user to install a separate plugin (openclaw-morphixai), which is a dependency but outside this skill's installation footprint.
Credentials
The skill requires one env var (MORPHIXAI_API_KEY). That is proportionate to a proxy-based integration. As a note: the Morphix key likely grants access to the user's Microsoft To Do via the Morphix proxy, so the key's scope and the proxy's access should be reviewed before use.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. It does not request persistent system-wide configuration or modify other skills. This default autonomy is expected for skills of this type.
Assessment
This skill is internally consistent, but it relies on a third-party proxy (Morphix) and the openclaw-morphixai plugin. Before installing: verify morphix.app and the openclaw-morphixai plugin are legitimate and trustworthy; check what permissions the Morphix API key grants and prefer least-privilege keys; do not provide your Microsoft username/password directly (use the plugin's OAuth/link flow); consider whether you are comfortable routing your Microsoft To Do data through a third party; rotate/revoke the key if you stop using the skill and monitor account activity after enabling it.

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

Runtime requirements

Clawdis
EnvMORPHIXAI_API_KEY
latestvk979e0gzggtnjf6240kqy353xh82d1yc
316downloads
0stars
2versions
Updated 1mo ago
v0.1.1
MIT-0

Microsoft To Do

通过 mx_ms_todo 工具管理 Microsoft To Do 中的任务列表和任务。

前置条件

  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 链接 MS To Do 账号,或通过 mx_link 工具链接(app: microsofttodo

核心操作

列出任务列表

mx_ms_todo:
  action: list_task_lists

创建任务列表

mx_ms_todo:
  action: create_task_list
  display_name: "项目待办"

列出任务

mx_ms_todo:
  action: list_tasks
  list_id: "AQMkADxx..."
  top: 20

查看任务详情

mx_ms_todo:
  action: get_task
  list_id: "AQMkADxx..."
  task_id: "AQMkADxx..."

创建任务

mx_ms_todo:
  action: create_task
  list_id: "AQMkADxx..."
  title: "完成 API 文档"
  body: "编写 REST API 接口文档,包含请求/响应示例"
  importance: "high"
  due_date: "2026-03-01"

更新任务

mx_ms_todo:
  action: update_task
  list_id: "AQMkADxx..."
  task_id: "AQMkADxx..."
  title: "更新后的标题"
  importance: "normal"

完成任务

mx_ms_todo:
  action: complete_task
  list_id: "AQMkADxx..."
  task_id: "AQMkADxx..."

删除任务

mx_ms_todo:
  action: delete_task
  list_id: "AQMkADxx..."
  task_id: "AQMkADxx..."

常见工作流

每日任务管理

1. mx_ms_todo: list_task_lists → 找到目标列表
2. mx_ms_todo: list_tasks, list_id: "xxx" → 查看当前任务
3. mx_ms_todo: create_task → 添加新任务
4. mx_ms_todo: complete_task → 完成已做的任务

注意事项

  • importance 可选值:lownormalhigh
  • status 可选值:notStartedinProgresscompletedwaitingOnOthersdeferred
  • due_date 格式为 YYYY-MM-DD
  • account_id 参数通常省略,工具自动检测已链接的 MS To Do 账号

Comments

Loading comments...