wecom-edit-todo

Manage WeCom todos with create, update, delete, and user-status operations.

1|1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/polaris-dxz/xclaw --skill wecom-edit-todo-polaris-dxz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wecom-edit-todo
Source: https://github.com/polaris-dxz/xclaw/tree/main/apps/desktop/openclaw-runtime/config/extensions/wecom-openclaw-plugin/skills/wecom-edit-todo
Command: npx skills add https://github.com/polaris-dxz/xclaw --skill wecom-edit-todo-polaris-dxz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

企业微信待办协作中,用户需要对待办进行创建、更新、删除以及变更分派人状态等写操作,此技能提供一个统一、可控的入口来完成这些任务。

Core Features & Use Cases

  • 通过 wecom_mcp 工具执行创建、更新、删除待办,以及变更用户状态等写操作。
  • 支持通过 wecom-get-todo-list 与 wecom-get-todo-detail 的查询流程定位待办并进行操作。
  • 处理时间格式与 follower_id 获取(需通过 wecom-contact-lookup 获取)等约束,确保输入有效性。
  • 含前置条件检查(wecom-preflight)及错误处理机制,遇错返回 errmsg 并重试。

Quick Start

先执行 wecom-preflight 前置检查,然后通过 wecom_mcp 调用 create_todo 进行待办创建,并按需设置 content、follower_list 与 remind_time。

Frequently Asked Questions about wecom-edit-todo

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate WeCom todo creation and assign followers via API?

To automate WeCom todo management, you execute the wecom-preflight check first, then call create_todo via the wecom_mcp tool. You specify content, follower_list, and remind_time, ensuring follower IDs are obtained through wecom-contact-lookup.

Can I update or mark an existing enterprise WeCom todo as completed?

Yes, you can update or mark an existing WeCom todo as completed. The automation locates the target todo using wecom-get-todo-list and wecom-get-todo-detail queries, then applies the update or changes the user status to completed.

What time format is required for WeCom todo reminders during API integration?

WeCom todo reminders require the time format to be strictly set as YYYY-MM-DD HH:mm:ss. Enforcing this specific time format ensures input validity and prevents API errors when creating or updating todo reminder triggers.

Does WeCom todo automation require a preflight check before execution?

Yes, WeCom todo automation requires a preflight check. You must execute the wecom-preflight check before performing any create, update, or delete operations to validate the environment and prevent execution errors in the API workflow.

How does the WeCom todo API handle errors during task management?

The WeCom todo API handles errors through a robust error handling mechanism that returns the errmsg directly from the API response. This allows the automation to identify the failure reason and automatically retry the failed todo operation.

How do I delete a WeCom todo through automated workflow integration?

To delete a WeCom todo through automated workflow integration, you first locate the target todo using the wecom-get-todo-list and wecom-get-todo-detail query flow. Once located, you execute the delete operation via the wecom_mcp tool.