一键导入
cron-schedule
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | cron-schedule |
| description | Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events. |
| metadata | {"CARNELIAN":{"emoji":"⏰","requires":{"env":["GATEWAY_URL","GATEWAY_TOKEN"]},"primaryEnv":"GATEWAY_URL"},"carnelian":{"runtime":"node","version":"1.0.0","sandbox":{"network":"localhost","resourceLimits":{"maxMemoryMB":64,"maxCpuPercent":10,"timeoutSecs":15},"env":{"GATEWAY_URL":"${GATEWAY_URL}","GATEWAY_TOKEN":"${GATEWAY_TOKEN}"}},"capabilities":["net.ws"]}} |
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
Ported from CARNELIAN cron-tool.ts.
{
action: string; // Required: action to perform
job?: object; // Optional: job definition for add action
jobId?: string; // Optional: job ID for update/remove/run/runs actions
patch?: object; // Optional: patch object for update action
text?: string; // Optional: wake message text
mode?: string; // Optional: wake mode
}
| Action | Description | Required Fields |
|---|---|---|
status | Get cron system status | - |
list | List all cron jobs | - |
add | Add new cron job | job |
update | Update existing job | jobId, patch |
remove | Remove cron job | jobId |
run | Trigger job execution | jobId |
runs | Get job execution history | jobId |
wake | Send wake event | text |
{
schedule: {
kind: "at" | "every" | "cron";
value: string; // ISO timestamp, interval string, or cron expression
};
payload: {
kind: "systemEvent" | "agentTurn";
// ... kind-specific fields
};
sessionTarget: "main" | "isolated";
}
main session → systemEvent payload onlyisolated session → agentTurn payload onlyReturns JSON response from the gateway.
ws://127.0.0.1:18789Execute a single agent step with custom system prompt and wait for completion.
Control the CARNELIAN browser control server (status/start/stop/tabs/snapshot/screenshot/navigate/act). Routes to the local browser control HTTP server.
Render canvas graphics and visualizations via Carnelian gateway node.invoke API
Communicate with Windsurf Cascade via JSONL channel files (message/delegate/request_help/share_context/status).
Send a message to a Discord channel via the Discord REST API
Query and manage Gateway configuration (restart/config.get/config.schema/config.apply/config.patch/update.run).