wecom-get-todo-list

Fetch paginated WeCom to-do summaries filtered by creation or reminder time.

1|2|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/bluegitter/QClaw --skill wecom-get-todo-list-bluegitter
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wecom-get-todo-list
Source: https://github.com/bluegitter/QClaw/tree/main/resources/openclaw/config/extensions/wecom-openclaw-plugin/skills/wecom-get-todo-list
Command: npx skills add https://github.com/bluegitter/QClaw --skill wecom-get-todo-list-bluegitter

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Many WeCom API list endpoints return only summary metadata (IDs, statuses, timestamps) which is not directly useful to users who want to know what they need to do. This Skill codifies the correct conversational workflow for retrieving a filtered, paginated overview of enterprise to-dos and ensures the assistant follows up to fetch full details so users see meaningful task content.

Core Features & Use Cases

  • Filtered list retrieval: Query user to-dos by creation time or remind time and return a paginated summary containing todo_id, status, creator_id, and timestamps.
  • Mandatory detail retrieval: Enforce an immediate follow-up call to the to-do detail skill to fetch content and assignees so results shown to users are actionable.
  • Pagination and user prompts: Handle cursor-based pagination and, when more pages exist, explicitly notify the user that there are additional items and ask if they want to continue.
  • Robustness: Retry transient HTTP errors up to three times and surface API error messages to users when errcode is non-zero.

Quick Start

Ask the assistant to show your recent WeCom to-dos and fetch full details for each item so you can see the task content and assignees.

Frequently Asked Questions about wecom-get-todo-list

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

FAQPage Schema
How do I retrieve a filtered list of WeCom todos?

You retrieve enterprise WeCom todos by applying time-range filters for creation or remind time to fetch a paginated summary list. This returns metadata including todo_id, status, creator_id, and timestamps, using cursor-based pagination to manage large sets of to-do items.

Why does my WeCom todo list only show IDs and statuses without task content?

Your WeCom todo list returns only summary metadata because the list endpoint is designed for paginated browsing. The Skill mandates an immediate follow-up call to the to-do detail endpoint to fetch full task content and assignees, transforming bare metadata into actionable results.

Can I filter WeCom to-do items by remind time and creation time?

Yes, you can filter WeCom to-do items by both remind time and creation time. The Skill handles time-range filters to narrow down the paginated retrieval of enterprise to-dos, allowing you to browse tasks based on when they were created or when their reminders are scheduled.

How do I handle pagination when fetching WeCom to-dos?

Handle WeCom todo pagination using cursor-based pagination with a limit parameter. When more pages exist, the workflow explicitly notifies the user that additional to-do items are available and asks if they want to continue retrieving the next page of summaries.

What happens when the WeCom to-do API returns an HTTP error?

When the WeCom to-do API returns a transient HTTP error, the Skill retries the request up to three times. If the API returns a non-zero errcode, it surfaces the specific API error messages directly to the user to communicate the failure transparently.