一键导入
cron
定时任务管理:列出、创建、更新、删除、立即运行与查看状态。调度类型支持 at(一次性时间)、every(固定间隔)、cron(cron 表达式)。不依赖 openclaw;任务持久化在 .first_paramecium/cron/jobs.json。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
定时任务管理:列出、创建、更新、删除、立即运行与查看状态。调度类型支持 at(一次性时间)、every(固定间隔)、cron(cron 表达式)。不依赖 openclaw;任务持久化在 .first_paramecium/cron/jobs.json。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a new monoU agent and connect it to Gateway. Use when the user asks to create/new/spawn an agent (本地或远程). Supports one-command local creation, remote deploy, Windows persistent startup, and skill/persona customization.
Minimal terminal coding harness. Use when the user wants coding-agent behavior: read files, run bash commands, edit files with exact replace, write new files; prefer read-before-edit, grep/find/ls for discovery; concise responses with clear paths.
工作区长期记忆的检索、读取与写入,持久化在 ./.first_paramecium 下。工具:memory_search、memory_get、memory_store、memory_recall、memory_forget、memory_sync。短期/多轮由 state.messages 提供;跨会话用 memory_store 或 write 写入后用 memory_search 回忆。
Minimal terminal and file harness. Use when the agent needs to read files, run bash commands, edit or write files; prefer read-before-edit; concise responses with clear paths.
Export solution content to a standard Word document (.docx). Use when the user says '输出word文档' / '导出Word' / '生成Word' / '下载Word'. Call generate_word_document with the current solution content, client name, and optional date.
Requirement interpretation and solution document generation. Use when the user uploads or pastes customer requirements (Word/Excel or plain text), or asks to generate/revise a solution document. Always follow the 6-chapter template; support multi-turn iteration from conversation history.
| name | cron |
| description | 定时任务管理:列出、创建、更新、删除、立即运行与查看状态。调度类型支持 at(一次性时间)、every(固定间隔)、cron(cron 表达式)。不依赖 openclaw;任务持久化在 .first_paramecium/cron/jobs.json。 |
管理定时任务:创建、列表、更新、删除、立即运行与查看状态。任务存储在本地 JSON,不依赖任何网关。
2026-02-15T09:00:00Z 或 2026-02-15。everyMs 毫秒,可选 anchorMs。0 9 * * *(每天 9:00),可选 tz 时区。返回当前存储路径、任务数、下次唤醒时间(最小 nextRunAtMs)。
列出任务,可选包含已禁用的。参数 includeDisabled 为 true 时包含禁用任务。
创建任务。参数:name(必填)、description(可选)、schedule(必填,见上)、payload(必填:{ kind: "systemEvent", text: "..." } 或 { kind: "agentTurn", message: "..." })、enabled(可选,默认 true)、deleteAfterRun(可选,at 任务默认 true)、deliver(可选,见下)。
deliver(仅对 payload.kind === "agentTurn" 有效):执行完成后将结果推送到指定 Connector 会话。格式 { connectorId: string, chatId: string },例如 { connectorId: "feishu", chatId: "oc_xxxx" }。需 Agent 连 Gateway 且对应 Connector(如 feishu-node)已连接,汇报才会发出。飞书 chatId 可从该群内与机器人对话时的会话信息或 Control UI / feishu-node 日志中获得。
更新任务。参数:id(必填)、patch(可选字段:name、description、enabled、schedule、payload、deleteAfterRun、deliver 等)。
删除任务。参数:id(必填)。
立即“运行”一次任务(更新 lastRunAtMs、nextRunAtMs,不执行 agent)。参数:id(必填)、mode(可选,force 或 due,默认 force)。
启动常驻定时调度器(后台进程)。调度器会持续运行,按 .first_paramecium/cron/jobs.json 中的任务到点自动更新状态(相当于到点自动执行 cron_run)。用户说「启动定时器」「开定时调度」时可调用。停止方式:关闭启动时所在终端或结束该进程。
若使用 apps/agent 连接 Gateway,调度器已内嵌在 agent 进程内,无需单独启动。仅在未跑 agent 且需独立推进任务时间时,可在项目根执行 npm run cron:daemon(monorepo 下已配置该脚本);该独立进程不会执行 agent turn。
任务与记忆等持久化数据统一放在当前项目的 ./.first_paramecium 目录下。定时任务文件可由环境变量 CRON_STORE 指定,未设置时默认 ./.first_paramecium/cron/jobs.json。