with one click
task-time
管理 cron 定时任务 — 创建/查看/修改/删除每日、单次或重复定时任务,由后台调度器自动执行
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
管理 cron 定时任务 — 创建/查看/修改/删除每日、单次或重复定时任务,由后台调度器自动执行
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
通用下载编排器。下载公开可访问、开源授权或用户本人授权的数字资源;提供 inspect_download_url、download_direct_file、download_video、list_downloads 四个工具。
本地双层知识库检索与问答。用户要求从知识库、资料目录或本地文档中查信息、总结、核对来源时使用。先按 data_structure.md 分层导航,再渐进检索候选文件;遇到 PDF/Excel 时先读取本 Skill 的 references 处理指南。
双模式记忆管理:保存、读取、搜索、删除、审阅和清理用户记忆。被动模式只处理临时层;主动审阅读取临时+永久并将有价值内容晋升到永久层。用户要求记住、忘记、搜索记忆、审阅记忆、清理记忆时使用。
VOTX Agent run_command tool usage guide for safe local command execution.
创建或更新 VOTX Agent Skill 的指导技能。用于设计 SKILL.md、工具型或指令型 Skill、scripts/references/assets 资源、触发描述、渐进式披露结构,以及验证现有 Skill 是否适配框架。
将复杂用户请求自动分解为可执行步骤计划,可视化进度,支持暂停/继续/中止。受用户 config.json 中 task_plan.accept_task 控制。
Based on SOC occupation classification
| name | task_time |
| description | 管理 cron 定时任务 — 创建/查看/修改/删除每日、单次或重复定时任务,由后台调度器自动执行 |
| version | 1.1 |
| category | task |
| enabled | true |
| tags | ["task","cron","scheduler","timer"] |
管理 cron 定时任务系统。cron 是后台调度器,在指定时间自动执行任务。
plugins/task_time/
| 工具 | 用途 |
|---|---|
task_time_create | 创建定时任务(daily/once/recurring) |
task_time_list | 列出当前用户的所有定时任务 |
task_time_update | 修改定时任务的时间、命令或类型 |
task_time_delete | 删除指定定时任务 |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
type | string (enum) | 是 | daily(每天执行)/ once(执行一次)/ recurring(重复执行) |
time | string | 是 | 执行时间,HH:MM 格式(如 09:00) |
command | string | 是 | 任务命令/prompt,cron 执行时发送给 AI 的消息内容 |
无参数。
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
task_id | string | 是 | 要修改的任务 ID |
time | string | 否 | 新的执行时间,HH:MM 格式 |
command | string | 否 | 新的任务命令/prompt |
type | string (enum) | 否 | 新的任务类型:daily / once / recurring |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
task_id | string | 是 | 要删除的任务 ID |
| 类型 | 说明 | 示例 |
|---|---|---|
daily | 每天在指定时间执行一次 | 每天早上 9:00 发送 AI 日报 |
once | 指定时间执行一次后自动删除 | 下午 3:00 提醒开会 |
recurring | 重复执行,每天在指定时间执行,直到手动删除 | 每小时检查一次服务器状态 |
create:返回任务 ID 和创建确认list:返回所有任务列表(含 ID、类型、时间、命令)update:返回修改确认delete:返回删除确认ERROR: 前缀的错误信息users/<name>/ 身份执行config.json 工具白名单/黑名单qq_send / qq_file 推送到外部消息平台command 是发送给 cron 的 prompt,cron 会以用户消息形式注入对话流once 类型执行一次后自动删除,不需手动清理HH:MM 格式(24 小时制),如 09:00、14:30once 类型执行后自动删除,如需持久提醒用 daily 或 recurringtype 可能改变任务的行为周期,谨慎操作