ソース情報
- リポジトリ
- hristo2612/jinn
- ソースの最終更新活動
- 2026年8月5日 17:36
- 検出された SKILL.md の言語
- 英語
- スター
- 313
- フォーク
- 73
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/hristo2612/jinn --skill cron-managerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Safely merge validated package migration bundles into this {{portalName}} instance after an upgrade
Find and install skills from skills.sh when a capability gap is detected
Manage departments, employees, hierarchy, delegation, and Todo ownership
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.