with one click
time
时间工具 — 获取当前 UTC/本地时间、可控延时。当 Agent 需要知道当前时间或等待时使用。
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
时间工具 — 获取当前 UTC/本地时间、可控延时。当 Agent 需要知道当前时间或等待时使用。
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.
Based on SOC occupation classification
通用下载编排器。下载公开可访问、开源授权或用户本人授权的数字资源;提供 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 控制。
| name | time |
| description | 时间工具 — 获取当前 UTC/本地时间、可控延时。当 Agent 需要知道当前时间或等待时使用。 |
| version | 1.1 |
| category | core |
| enabled | true |
| tags | ["time","core","utility"] |
基础时间查询和延时功能。
plugins/time/
| 工具 | 用途 |
|---|---|
get_time | 获取当前 UTC 和本地时间(含时区偏移) |
sleep | 休眠指定秒数(上限 30 分钟 / 1800 秒) |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
seconds | number | 是 | 休眠秒数,范围 1-1800 |
get_time:返回当前 UTC 时间和本地时间(含时区偏移信息)sleep:休眠结束后返回(无特殊输出)ERROR: 前缀的错误信息sleep 不受全局 tool.tool_timeout 截断,但自身保留 1800 秒硬上限get_time 用于需要知道当前时间、计算时间差、判断时区的场景sleep 会阻塞当前工具调用线程,不要用于不需要实际等待的场景get_time 返回的是服务器时间,不是用户本地时间(尽管通常含本地时区偏移)