一键导入
manage-schedules
View, add, update, or cancel scheduled tasks. Use when asked about schedules, cron jobs, reminders, or recurring tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
View, add, update, or cancel scheduled tasks. Use when asked about schedules, cron jobs, reminders, or recurring tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up internbot for development. Use when setting up the project for the first time.
Review today's HuggingFace daily papers, pick the most relevant one, write a LaTeX summary report with follow-up research directions. Use when asked to check daily papers, do a paper review, or triggered by the scheduler.
Write LaTeX research reports. Use when asked to write, compile, or publish a report and save it to the dedicated reports repository.
Add a Slack channel to internbot's whitelist. Use when the user wants the bot to listen to a new channel.
Search and summarize arxiv papers. Use when asked about papers, research topics, or specific arxiv IDs.
Explain and review code. Use when code is shared in conversation or a review is requested.
| name | manage-schedules |
| description | View, add, update, or cancel scheduled tasks. Use when asked about schedules, cron jobs, reminders, or recurring tasks. |
All operations go through tsx src/schedule-cli.ts from the project root (/data_fast/home/jusjinuk/codes/internbot).
tsx src/schedule-cli.ts list # all active tasks
tsx src/schedule-cli.ts list --channel C0AJCU4H020 # tasks in a specific channel
# One-time (--value is an ISO timestamp in UTC)
tsx src/schedule-cli.ts add --channel C0AJCU4H020 --user "alice" --prompt "check server status" --type once --value "2026-03-04T10:00:00.000Z"
# Recurring (--value is a cron expression)
tsx src/schedule-cli.ts add --channel C0AJCU4H020 --user "alice" --prompt "search arxiv for RL papers" --type cron --value "0 9 * * 1"
tsx src/schedule-cli.ts get task-abc123
tsx src/schedule-cli.ts cancel task-abc123
tsx src/schedule-cli.ts update task-abc123 --prompt "new prompt text"
tsx src/schedule-cli.ts update task-abc123 --value "0 9 * * 1-5" # updates cron and recomputes next_run
tsx src/schedule-cli.ts logs task-abc123
Asia/Seoul (KST = UTC+9)0 9 * * 1-5 = weekdays at 9am KST, 0 0 * * 1 = Monday midnight KST--type once tasks auto-complete after running; --type cron tasks repeat--channel and --user for add should match the Slack channel ID and username from the conversation context