ワンクリックで
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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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).