AgentSkillsCN

list-scheduled-tasks

列出所有已安排的任务,包括任务 ID、名称、类型、状态以及下次执行时间。当你需要检查现有任务、查找任务 ID 以进行取消或更新,或验证任务的创建情况时,此功能将为你提供便利。

SKILL.md
--- frontmatter
name: list-scheduled-tasks
description: List all scheduled tasks with their ID, name, type, status, and next execution time. When you need to check existing tasks, find task ID for cancel/update, or verify task creation.
system: true
handler: scheduled
tool-name: list_scheduled_tasks
category: Scheduled Tasks

List Scheduled Tasks

列出所有定时任务。

Parameters

参数类型必填说明
enabled_onlyboolean是否只列出启用的任务,默认 false

Returns

  • 任务 ID
  • 名称
  • 类型(reminder/task)
  • 状态(enabled/disabled)
  • 下次执行时间

Examples

列出所有任务:

json
{}

只列出启用的任务:

json
{"enabled_only": true}

Related Skills

  • schedule-task: 创建新任务
  • cancel-scheduled-task: 取消任务
  • update-scheduled-task: 更新任务设置