원클릭으로
c-cron
Manage cron jobs and macOS launchctl services — schedule recurring tasks, start/stop services using lunchy-go.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage cron jobs and macOS launchctl services — schedule recurring tasks, start/stop services using lunchy-go.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Lock In Mode — orchestrate distraction blocking, environment setup, and session tracking.
OpenPaw coordinator — routes requests to skills, manages memory, knows what's installed. Use /c for any task.
System clipboard — copy, paste, transform content between clipboard and files.
macOS Contacts — search, list, and look up contact details via AppleScript.
Timers, alarms, and pomodoro — set countdowns with native notifications.
Weather forecasts and conditions — current, hourly, multi-day. No API key needed.
| name | c-cron |
| description | Manage cron jobs and macOS launchctl services — schedule recurring tasks, start/stop services using lunchy-go. |
| tags | ["cron","scheduling","launchctl","automation"] |
Friendly wrapper around macOS launchctl:
# List all services (pattern match)
lunchy-go ls
lunchy-go ls redis
# Start a service
lunchy-go start com.example.service
lunchy-go start redis # pattern match
# Stop a service
lunchy-go stop redis
# Restart a service
lunchy-go restart redis
# Show service status
lunchy-go status redis
Standard Unix cron scheduler:
# List current cron jobs
crontab -l
# Edit cron jobs (opens editor)
crontab -e
# Cron syntax: MIN HOUR DOM MON DOW command
# Every day at 9am:
# 0 9 * * * /path/to/script.sh
# Every 5 minutes:
# */5 * * * * /path/to/script.sh
# Weekdays at 8:30am:
# 30 8 * * 1-5 /path/to/script.sh
command >> /tmp/cron.log 2>&1