.claude/skills/manage-schedules/SKILL.md
View, add, update, or cancel scheduled tasks. Use when asked about schedules, cron jobs, reminders, or recurring tasks.
npx skillsauth add jusjinuk/internbot manage-schedulesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 contextdevelopment
Search the web for recent information. Use when asked about recent events, docs, or blog posts.
data-ai
Brainstorm follow-up research ideas from papers. Use when asked to generate research directions or ideas.
development
Set up internbot for development. Use when setting up the project for the first time.
development
Write LaTeX research reports. Use when asked to write, compile, or publish a report and save it to the dedicated reports repository.