← Back to Skills Marketplace
abdelkrim

M365 (Microsoft) Task Manager by altf1be

by Abdelkrim from Brussels · GitHub ↗ · v0.3.0 · MIT-0
cross-platform ⚠ suspicious
286
Downloads
1
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install m365-task-manager-by-altf1be
Description
Manage lightweight Microsoft 365 task workflows with Microsoft To Do and Planner. Use when a user needs to quickly create, assign, track, and follow up opera...
README (SKILL.md)

M365 Task Manager

Use this skill to perform real Microsoft Graph CRUD operations for Microsoft To Do tasks.

Setup

  1. Create an Entra app registration for delegated sign-in.
  2. Add Microsoft Graph delegated permissions:
    • Tasks.ReadWrite
    • User.Read
    • offline_access
  3. Configure environment variables:
M365_TENANT_ID=your-tenant-id-or-common
M365_CLIENT_ID=your-public-client-app-id
# optional
M365_TOKEN_CACHE_PATH=/home/user/.cache/openclaw/m365-task-manager-token.json
  1. Install dependencies at repo root:
npm install

On first run, the script uses Device Code login and caches tokens for reuse.

Commands

# profile connection
node skills/m365-task-manager/scripts/m365-todo.mjs info

# list Microsoft To Do lists
node skills/m365-task-manager/scripts/m365-todo.mjs lists

# list tasks
node skills/m365-task-manager/scripts/m365-todo.mjs tasks:list --list-name "Tasks"

# create task
node skills/m365-task-manager/scripts/m365-todo.mjs tasks:create --list-name "Tasks" --title "2026-03-01-submit-weekly-status-report" --due 2026-03-01

# update task
node skills/m365-task-manager/scripts/m365-todo.mjs tasks:update --list-name "Tasks" --task-id \x3CTASK_ID> --status inProgress

# delete task
node skills/m365-task-manager/scripts/m365-todo.mjs tasks:delete --list-name "Tasks" --task-id \x3CTASK_ID>

Operating standard

  • Task title pattern: \x3Cproject>-\x3Cdate>-\x3Cperson>-\x3Caction>
  • Required fields: title, owner, due date, status
  • Status values: Open, In Progress, Blocked, Done

References

  • references/playbook.md for operating guidance.

Scripts

  • scripts/m365-todo.mjs for Graph CRUD on Microsoft To Do.
  • scripts/format-task-name.sh for deterministic task naming.

Author

Abdelkrim BOUJRAF - ALT-F1 SRL - https://www.alt-f1.be

License

MIT

Usage Guidance
This skill appears to do exactly what it says: it uses delegated Device Code flow and Microsoft Graph to create and manage To Do tasks. Before installing: (1) inspect the package.json and dependency versions that npm will install (msal-node and any transitive deps); (2) ensure the Entra app registration only has the listed delegated scopes (Tasks.ReadWrite, User.Read, offline_access) and is configured as a public client if you don't want to supply a secret; (3) be aware that the skill stores tokens locally (default path shown) — verify the cache file location and permissions or set M365_TOKEN_CACHE_PATH to a secure location; (4) device-code auth will require a human to complete sign-in the first time; and (5) consider creating a dedicated app/tenant or least-privilege account for automation to limit blast radius. If you want higher assurance, request the skill author's package.json and the exact dependency versions before running npm install.
Capability Analysis
Type: OpenClaw Skill Name: m365-task-manager-by-altf1be Version: 0.3.0 The skill provides legitimate functionality for managing Microsoft To Do tasks via the Microsoft Graph API. It uses standard MSAL authentication (Device Code flow) and local token caching in scripts/m365-todo.mjs. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found in the code or documentation.
Capability Assessment
Purpose & Capability
Name/description (M365 To Do CRUD) align with the included scripts. The env vars (M365_TENANT_ID, M365_CLIENT_ID) and the Microsoft Graph endpoints in the code are appropriate for the stated purpose.
Instruction Scope
SKILL.md instructs the user to register an app, grant delegated Graph scopes, set the two env vars, run npm install, and use the provided CLI commands. Runtime code only accesses the declared env vars and interacts with Microsoft identity (login.microsoftonline.com) and Graph (graph.microsoft.com). The only extra behavior is local token caching (documented).
Install Mechanism
There is no registry install spec (instruction-only), and the code uses standard Node packages (msal-node implied). No arbitrary downloads or extract-from-URL actions are present in the skill bundle. The user must run npm install locally; review package.json before installing.
Credentials
Requested env vars are limited to tenant and client ID (plus an optional token cache path). No client secrets or unrelated credentials are required. These are proportionate for a delegated device-code flow.
Persistence & Privilege
always is false. The skill persists tokens to a local cache file (default: ~/.cache/openclaw/m365-task-manager-token.json). This is expected for offline reuse but means long-lived tokens/refresh tokens are stored on disk; check file location and permissions if that is a concern.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install m365-task-manager-by-altf1be
  3. After installation, invoke the skill by name or use /m365-task-manager-by-altf1be
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.3.0
Rename display name, use explicit env var access, declare optional M365_TOKEN_CACHE_PATH
v1.0.0
Initial publish
v0.1.1
Rename skill with -by-altf1be suffix and align metadata/docs.
Metadata
Slug m365-task-manager-by-altf1be
Version 0.3.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is M365 (Microsoft) Task Manager by altf1be?

Manage lightweight Microsoft 365 task workflows with Microsoft To Do and Planner. Use when a user needs to quickly create, assign, track, and follow up opera... It is an AI Agent Skill for Claude Code / OpenClaw, with 286 downloads so far.

How do I install M365 (Microsoft) Task Manager by altf1be?

Run "/install m365-task-manager-by-altf1be" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is M365 (Microsoft) Task Manager by altf1be free?

Yes, M365 (Microsoft) Task Manager by altf1be is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does M365 (Microsoft) Task Manager by altf1be support?

M365 (Microsoft) Task Manager by altf1be is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created M365 (Microsoft) Task Manager by altf1be?

It is built and maintained by Abdelkrim from Brussels (@abdelkrim); the current version is v0.3.0.

💬 Comments