用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hristo2612/jinn --skill cron-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cron-manager |
| description | Create, edit, delete, enable, disable, and inspect scheduled cron jobs |
Use this skill for scheduled prompts. Jobs live in $JINN_HOME/cron/jobs.json; $JINN_HOME defaults to ~/.jinn. The gateway validates and hot-reloads this array.
Use list_cron_jobs for current definitions and get_cron_run_history for execution evidence. Mutations currently use a narrow filesystem edit: preserve unrelated jobs, validate the complete JSON array, and let the watcher reload it.
{
"id": "unique-id",
"name": "weekday-summary",
"enabled": true,
"schedule": "0 9 * * 1-5",
"timezone": "UTC",
"engine": "claude",
"model": "sonnet",
"employee": "coo-name",
"prompt": "Review the latest activity and return a concise summary.",
"delivery": { "connector": "slack", "channel": "#updates" }
}
id and name must be unique; use a stable id.schedule is a five-field cron expression; timezone is an IANA timezone.engine is one of claude, codex, antigravity, grok, pi, hermes.model is optional and must be supported by the selected engine.employee and delivery are optional; prompt is required.Validate cron syntax, timezone, engine/model compatibility, connector target, employee existence, unique ids/names, and JSON before saving. If the file is malformed, stop and report the repair needed; never silently replace it with an empty array.
Analytical, reporting, or decision-informing jobs with delivery should target the COO. The COO delegates, reviews, filters noise, and produces the final deliverable. Direct employee delivery is reserved for simple, no-review output such as a health signal.
After any mutation, re-read with list_cron_jobs and report what changed. Use get_cron_run_history when the user asks whether the job actually ran.