with one click
with one click
定时任务管理:创建、查看、删除定时任务。支持一次性(at)、周期(every)、cron 表达式三种触发模式。写入 data/cron/tasks.json,CronService 自动热重载生效,无需重启进程。
Use this skill to search the internet using Baidu when the user asks about recent events, current information, news, prices, people, companies, technical documentation, or any topic that may require up-to-date data beyond the AI's training knowledge. Supports filtering by time range (week/month/semiyear/year) and specific websites. Returns titles, URLs, and content summaries for each result.
浏览网页、提取网页内容、截图、填写表单、浏览器自动化。支持静态页面(快速 Markdown 转换)和动态 JavaScript 页面(完整浏览器)。适合:阅读文章、实时数据查询、网页截图、表单提交、任何需要浏览器的操作。
飞书操作:向用户/群组发送消息(文字/富文本/图片/文件)、读取云文档/表格内容、查询群成员、管理日历事件。适合推送通知、发送处理结果文件、读取共享文档、批量发送报告等场景。
| name | history_reader |
| description | 读取当前 Session 的完整历史对话,支持分页,用于在历史被截断时查阅早期记录 |
| type | reference |
| version | 2.0 |
读取当前 Session 的历史对话记录,支持分页,返回结构化的消息列表。 当主 Agent 上下文中的历史对话被截断时(通常保留最近 20 条), 可通过此 Skill 查询更早期的内容。
注意:此 Skill 由系统内联处理,无需沙盒执行。 Session 上下文由系统自动管理,调用时只需传递分页参数。
{
"page": 1,
"page_size": 20
}
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
page | int | 否 | 页码,从 1 开始,默认 1(最旧的消息) |
page_size | int | 否 | 每页条数,1-50,默认 20 |
分页规则:page=1 返回最旧的 page_size 条,page 越大越新。 如需最新消息,使用较大 page 或直接从主 Agent 上下文获取。
{
"errcode": 0,
"message": "成功读取第 1 页,共 35 条消息,本页 20 条",
"data": {
"messages": [
{"role": "user", "content": "..."},
{"role": "assistant", "content": "..."}
],
"total": 35,
"page": 1,
"page_size": 20,
"total_pages": 2
}
}
主 Agent 在 task_context 中传入:
{
"page": 1,
"page_size": 20
}
系统直接返回分页结果,主 Agent 可根据 total_pages 决定是否继续翻页。