一键导入
crons-setup
Set up RUBRIC Crons — configure cron registry paths and visualize scheduled tasks. Use when installing or configuring the Crons template.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Set up RUBRIC Crons — configure cron registry paths and visualize scheduled tasks. Use when installing or configuring the Crons template.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up RUBRIC Agents — configure agent status monitoring, hooks, and the live dashboard. Use when installing or configuring the Agents template.
Set up RUBRIC Flows — create workflow visualizations, configure pipeline steps, connect to live execution. Use when installing or configuring the Flows template.
Set up RUBRIC Scaffold — configure agents, tabs, status hooks, and the dashboard. Use when installing or configuring the Scaffold template.
Set up RUBRIC Skill Trees — configure workspace scanning, agent icons, and skill visualization. Use when installing or configuring the Skill Tree template.
Research competitors, compare features, pricing, and positioning. Output a structured comparison.
Condense long documents, articles, or transcripts into concise summaries with key takeaways.
| name | crons-setup |
| description | Set up RUBRIC Crons — configure cron registry paths and visualize scheduled tasks. Use when installing or configuring the Crons template. |
Note: This skill is written for Claude Code. If the user runs a different agent framework, adapt these instructions to their setup.
Edit config.json to point at one or more cron registry files:
{
"brandName": "RUBRIC Crons",
"cronPaths": [
"./data/crons.json",
"../../cron-registry.json",
"../../agents/DEVO/cron-registry.json"
],
"timezone": "auto"
}
Each path is relative to the template directory. The dashboard reads all files and merges them into one view. Set timezone to "auto" (uses browser timezone) or a specific IANA zone like "America/New_York".
Claude Code crons are session-only — they run as long as the Claude Code session is active. Key properties:
[
{
"id": "daily-standup",
"name": "Daily Standup",
"schedule": "0 9 * * *",
"enabled": true,
"command": "Send standup summary to Telegram",
"lastRun": null,
"createdAt": "2026-03-27T00:00:00Z"
}
]
Required fields: id, name, schedule, enabled. The command field describes what the cron does (for agent and dashboard display).
To visualize crons from multiple agents, add each agent's cron-registry.json path to the cronPaths array. The dashboard labels each cron with its source file.
┌───────────── minute (0-59)
│ ┌─────────── hour (0-23)
│ │ ┌───────── day of month (1-31)
│ │ │ ┌─────── month (1-12)
│ │ │ │ ┌───── day of week (0-6, Sun=0)
│ │ │ │ │
* * * * *
Examples:
0 9 * * * — daily at 9 AM*/15 * * * * — every 15 minutes0 9 * * 1-5 — weekdays at 9 AM30 8,17 * * * — 8:30 AM and 5:30 PM dailycd /path/to/crons && npm install && node server.js