بنقرة واحدة
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 المهني
Execute 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).
| 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:18789