feat: 新增 account 和 plan 目录

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 16:26:22 +08:00
parent 243a190124
commit 0cab33b16b
694 changed files with 161549 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
---
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_only | boolean | 否 | 是否只列出启用的任务,默认 false |
## Returns
- 任务 ID
- 名称
- 类型reminder/task
- 状态enabled/disabled
- 下次执行时间
## Examples
**列出所有任务**:
```json
{}
```
**只列出启用的任务**:
```json
{"enabled_only": true}
```
## Related Skills
- `schedule-task`: 创建新任务
- `cancel-scheduled-task`: 取消任务
- `update-scheduled-task`: 更新任务设置