移除了agents/registry.json中的所有内置agents配置,将agents数组清空。 为web应用添加了CORS中间件支持,允许指定的前端地址跨域访问。 重构了技能上传功能,增加了LLM重写机制,自动规范化上传的技能格式。 新增了工具名称提取逻辑,从技能正文中自动识别Required Tools段落。 更新了技能学习候选者和草稿的载荷结构,添加评估报告统计信息。 修改了意图路由技能的说明,改进任务状态管理逻辑。
2.3 KiB
2.3 KiB
name, description, tools
| name | description | tools | |
|---|---|---|---|
| cron-scheduler | 定时任务和周期性调度。支持标准 cron 表达式、一次性提醒和持久化任务。 |
|
Cron Scheduler
Overview
定时任务和周期性调度。支持标准 cron 表达式、一次性提醒和持久化任务。
When to Use
- Use when the task requires Cron Scheduler guidance.
Required Tools
cron
Workflow
- Identify whether the user's request matches the skill's trigger conditions.
- Read the relevant source guidance below and apply only the steps that fit the current task.
- Use the required tools deliberately and keep tool output tied to the user's goal.
Source Guidance
Cron Scheduler — 定时任务调度
基于 cron 表达式的定时任务和一次性提醒。
工具说明
cron
创建和管理 Beaver 定时通知或 Task。
action(str):add|list|remove|toggle|runmessage(str): 触发时执行的任务说明,add时必填schedule(str): 调度表达式,例如every 15m、0 9 * * *或 ISO 时间every_seconds(int | None): 固定秒级间隔cron_expr(str | None): 标准 5 段 cron 表达式tz(str | None): IANA 时区,例如Asia/Shanghaiat_iso(str | None): 一次性任务的 ISO 时间job_id(str | None):remove、toggle、run目标任务 IDenabled(bool | None):toggle时设置启停状态mode(str | None):notification或taskrequires_followup(bool | None): task 模式下是否需要用户跟进
使用原则
- 避开 :00 和 :30 整点分钟,分散负载
- 一次性提醒优先使用
at_iso或清晰的schedule - 需要持续提醒时使用
mode="notification",需要 Task 跟踪时才用mode="task" - 定期用
action="list"确认任务是否按预期调度 - 任务触发时
message会完整执行,确保内容自包含
Validation
- Verify the requested outcome with the most direct available check.
- Report any skipped step, unavailable dependency, or remaining uncertainty explicitly.
Boundaries
- Do not broaden the task beyond the user's request.
- Do not use tools that are not listed or clearly available in the current runtime.
Anti-Patterns
- Do not summarize the skill instead of applying it.
- Do not claim completion without validation evidence.