with one click
cron
Schedule reminders and recurring tasks with the `cron` tool.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Schedule reminders and recurring tasks with the `cron` tool.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Browser automation CLI wrapper for AI agents. Use when the user needs to automate web browser tasks like navigating websites, taking screenshots, filling forms, clicking elements, extracting page content, or performing web scraping. Supports headless browser operations via agent-browser CLI.
Standardize lifecycle operations for the local feibot gateway service via launchd. Supports multiple instances, listing all instances, and provides guidance on allowFrom configuration.
Send local files to Feishu/Lark by calling the `feishu_send_file` tool. Use when the user asks to deliver an existing workspace file (for example a blog post markdown or a Python script) to Feishu instead of pasting text.
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.
Maintain HEARTBEAT.md as an ad-hoc review queue, not a fixed scheduler.
Two-layer memory system with grep-based recall.
| name | cron |
| description | Schedule reminders and recurring tasks with the `cron` tool. |
| metadata | {"feibot":{"emoji":"⏰"}} |
Use the cron tool for deterministic schedules.
HEARTBEAT.md.Add interval job:
{
"action": "add",
"message": "Check something every 30 minutes",
"every_seconds": 1800
}
Add cron expression with timezone:
{
"action": "add",
"message": "Daily summary",
"cron_expr": "0 9 * * *",
"tz": "Asia/Shanghai"
}
Add one-time job:
{
"action": "add",
"message": "One-time reminder",
"at": "2026-03-05T14:30:00"
}
List and remove:
{
"action": "list"
}
{
"action": "remove",
"job_id": "abc123"
}
every_seconds=1200.cron_expr="0 17 * * 1-5".tz (for example Asia/Shanghai, America/Los_Angeles).