← All skills
Tencent SkillHub · Communication & Collaboration

Openclaw Skill M365 Task Manager

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...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/playbook.md, scripts/format-task-name.sh, scripts/m365-todo.mjs

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

M365 Task Manager

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

Setup

Create an Entra app registration for delegated sign-in. Add Microsoft Graph delegated permissions: Tasks.ReadWrite User.Read offline_access 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 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 <TASK_ID> --status inProgress # delete task node skills/m365-task-manager/scripts/m365-todo.mjs tasks:delete --list-name "Tasks" --task-id <TASK_ID>

Operating standard

Task title pattern: YYYY-MM-DD-short-action-owner 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

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts
  • SKILL.md Primary doc
  • references/playbook.md Docs
  • scripts/format-task-name.sh Scripts
  • scripts/m365-todo.mjs Scripts