원클릭으로
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