Openakita list-scheduled-tasks
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.
install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/list-scheduled-tasks" ~/.claude/skills/openakita-openakita-list-scheduled-tasks && rm -rf "$T"
manifest:
skills/system/list-scheduled-tasks/SKILL.mdsource content
List Scheduled Tasks
列出所有定时任务。
Parameters
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| enabled_only | boolean | 否 | 是否只列出启用的任务,默认 false |
Returns
- 任务 ID
- 名称
- 类型(reminder/task)
- 状态(enabled/disabled)
- 下次执行时间
Examples
列出所有任务:
{}
只列出启用的任务:
{"enabled_only": true}
Related Skills
: 创建新任务schedule-task
: 取消任务cancel-scheduled-task
: 更新任务设置update-scheduled-task