소스 정보
- 저장소
- hristo2612/jinn
- 최근 소스 활동
- 2026년 7월 14일 16:12
- 감지된 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cron-manager |
| description | Create, edit, delete, enable, disable, and list scheduled cron jobs |
This skill activates when the user wants to create, edit, delete, enable, disable, or list scheduled cron jobs.
All cron jobs are stored in ~/.jinn/cron/jobs.json as a JSON array of job objects. If the file does not exist, create it with an empty array [].
{
"id": "uuid-v4",
"name": "daily-standup-summary",
"enabled": true,
"schedule": "0 9 * * 1-5",
"timezone": "America/New_York",
"engine": "claude",
"model": "sonnet",
"employee": "project-manager",
"prompt": "Review active Todos and summarize progress since yesterday. Highlight blockers and upcoming deadlines.",
"delivery": {
"connector": "slack",
"channel": "#engineering-standup"
}
}
Field details:
id - UUID v4, generated when creating the jobname - kebab-case human-readable identifier, must be unique across all jobsenabled - boolean, whether the job is activeschedule - standard cron expression (minute hour day month weekday)timezone - IANA timezone string (e.g., America/New_York, Europe/London, UTC)engine - AI engine to run the job: claude or codexmodel - model identifier (e.g., sonnet, opus, o3)employee - optional, the employee persona to use (must match an employee name in the org)prompt - the instruction to execute when the job firesdelivery - optional object specifying where to send output
connector - the connector to use (e.g., slack, discord)channel - the target channel or destination~/.jinn/cron/jobs.json (or initialize as [] if missing).UTC if not specified.{{portalSlug}}, and include delegation instructions in the prompt (e.g. "Delegate to @employee-name: ..."). {{portalName}} reviews and filters the output before it reaches the delivery channel. Only simple, no-review tasks (e.g. health checks) should target employees directly with delivery.id field.enabled to true by default.~/.jinn/cron/jobs.json.~/.jinn/cron/jobs.json.~/.jinn/cron/jobs.json.~/.jinn/cron/jobs.json.enabled to true (enable) or false (disable).~/.jinn/cron/jobs.json.The schedule field uses standard 5-field cron syntax:
┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-7, 0 and 7 = Sunday)
│ │ │ │ │
* * * * *
Common examples:
0 9 * * 1-5 - Every weekday at 9:00 AM0 0 * * * - Every day at midnight*/15 * * * * - Every 15 minutes0 9 * * 1 - Every Monday at 9:00 AM0 8,17 * * * - Every day at 8:00 AM and 5:00 PM0 0 1 * * - First day of every month at midnight30 14 * * 5 - Every Friday at 2:30 PMjobs.json is malformed, attempt to fix it. If unrecoverable, back it up as jobs.json.bak and start fresh with [].