技能详情(站内镜像,无评论)
作者:Abdelkrim from Brussels @Abdelkrim
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.2
统计:⭐ 1 · 338 · 2 current installs · 2 all-time installs
⭐ 1
安装量(当前) 2
🛡 VirusTotal :良性 · OpenClaw :良性
Package:abdelkrim/openclaw-skill-m365-task-manager-by-altf1be
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code, instructions, and required environment variables are consistent with its stated purpose (Microsoft Graph To Do CRUD); it only needs a tenant and client id and caches OAuth tokens to a local file.
目的
Name/description claim Microsoft 365 To Do/Planner task management and the code implements Microsoft Graph CRUD calls. Required env vars (M365_TENANT_ID, M365_CLIENT_ID) map directly to creating an Entra app and using device-code/OAuth; no unrelated credentials or binaries are requested.
说明范围
SKILL.md instructs creating an Entra app, granting delegated Graph permissions, setting env vars, running npm install, and running the provided Node script. The runtime instructions and the script operate only on Microsoft identity endpoints and graph.microsoft.com and do not reference unrelated files or external endpoints. The script does read/write a local token cache (expected for offline_access).
安装机制
There is no automated install spec in the registry metadata (instruction-only), but the README asks the user to run `npm install` in the repo root before using the script. This is reasonable for a Node-based script, but the user should inspect package.json (not included here) and the dependencies before running `npm install`.
证书
Only M365_TENANT_ID and M365_CLIENT_ID are required (plus an optional M365_TOKEN_CACHE_PATH). These are proportional to performing delegated Graph operations. No unrelated SECRET/TOKEN/PASSWORD environment variables are requested.
持久
The skill does not request permanent platform-wide privileges (always is false). It caches OAuth tokens to a local file in the user's home directory by default — appropriate for device-code flow and offline_access scope. It does not modify other skills or global agent config.
综合结论
This skill appears to do exactly what it says: call Microsoft Graph to manage To Do tasks. Before installing or running it: 1) create a proper Entra app with only the delegated Graph scopes you intend to grant; 2) review the repository (especially package.json and dependencies) before running `npm install`; 3) be aware the script uses Device Code flow and will cache tokens locally (default: ~/.cache/openclaw/m365-task-manager-token.json) — sto…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Openclaw Skill M365 Task Manager」。简介:Manage lightweight Microsoft 365 task workflows with Microsoft To Do and Planne…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abdelkrim/openclaw-skill-m365-task-manager-by-altf1be/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: openclaw-skill-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 operational tasks in M365 with clear owners, due dates, status, and daily reminders."
homepage: https://github.com/ALT-F1-OpenClaw/openclaw-skill-m365-task-manager
metadata:
{"openclaw": {"emoji": "✅", "requires": {"env": ["M365_TENANT_ID", "M365_CLIENT_ID"]}, "primaryEnv": "M365_TENANT_ID"}}
---
# 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:
```bash
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
```
4. Install dependencies at repo root:
```bash
npm install
```
On first run, the script uses Device Code login and caches tokens for reuse.
## Commands
```bash
# 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