Microsoft To Do

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: microsoft-to-do Version: 1.0.3 The skill provides a standard integration for Microsoft To Do via a third-party proxy service (api.maton.ai). It requires a MATON_API_KEY for authentication and provides CRUD operations for tasks, lists, and checklist items. The code snippets in SKILL.md are standard Python and Bash examples for API interaction and do not contain any malicious logic, obfuscation, or evidence of data exfiltration beyond the intended API usage.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Anyone or any agent with the Maton API key may be able to access the connected Microsoft To Do integration according to the permissions granted.

Why it was flagged

The skill requires a sensitive API key and delegated Microsoft To Do access, which is expected for the integration but should be treated as account authority.

Skill content
All requests require the Maton API key in the Authorization header
Recommendation

Use this only with a trusted Maton account, protect the MATON_API_KEY, and revoke or rotate it if it is exposed.

What this means

If the user approves the wrong action or account, tasks or task lists could be created, changed, or deleted.

Why it was flagged

The skill exposes write and delete operations against Microsoft To Do, but it also instructs the agent to get explicit approval before using them.

Skill content
All write operations require explicit user approval. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
Recommendation

Before approving writes, verify the Microsoft account, list name, task ID/title, and the exact intended change.

What this means

Microsoft To Do data and operations pass through a third-party API gateway, so the user is relying on Maton’s handling of OAuth and request routing.

Why it was flagged

Requests and task data are mediated by the Maton gateway before reaching Microsoft Graph, which is disclosed and central to the managed OAuth design.

Skill content
Maton proxies requests to `graph.microsoft.com` and automatically injects your OAuth token.
Recommendation

Review Maton’s account and privacy expectations, and use the Maton-Connection header when multiple Microsoft To Do connections exist.