一键导入
cron
Schedule reminders and recurring tasks with the `cron` tool.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Schedule reminders and recurring tasks with the `cron` tool.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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).