원클릭으로
cron
Schedule reminders, recurring tasks, and one-time jobs using system crontab.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Schedule reminders, recurring tasks, and one-time jobs using system crontab.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Collaborate with other agents in OpenOPC company mode via the `opc-collab` CLI — send messages, request user input, delegate work, read the manager board, respond in meetings, propose task adjustments.
Search and install agent skills from ClawHub, the public skill registry. Use when needing new capabilities, searching for skills, installing skills, or updating installed skills.
Standing rules for how any role in an OpenOPC company coordinates with its peers — work-item discipline, messaging, meetings, and blocking collaboration. Loaded only in company_mode.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Manage durable global/project memory in `.opc/memory/global.md` and `.opc/memory/projects/<current_project_id>.md`.
Create or update skills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | cron |
| description | Schedule reminders, recurring tasks, and one-time jobs using system crontab. |
Schedule tasks using the system crontab via shell_exec.
crontab -l
(crontab -l 2>/dev/null; echo "*/20 * * * * echo 'Time to take a break!' >> /tmp/opc-reminders.log") | crontab -
| Schedule | Cron expression |
|---|---|
| Every 20 minutes | */20 * * * * |
| Every hour | 0 * * * * |
| Every day at 8am | 0 8 * * * |
| Weekdays at 5pm | 0 17 * * 1-5 |
| Every Monday at 9am | 0 9 * * 1 |
Use at for one-time jobs:
echo "echo 'Meeting reminder' >> /tmp/opc-reminders.log" | at 14:30
Or schedule with a specific date:
echo "echo 'Deadline reminder' >> /tmp/opc-reminders.log" | at 10:00 2026-03-20
Edit the crontab directly:
crontab -e
Or filter out a specific job:
crontab -l | grep -v 'pattern-to-remove' | crontab -
$PATH)./dev/null to avoid mail noise.at availability: which at (install with apt install at if missing).