bot-jobs
Manage Pilot Bot scheduled jobs — add, remove, pause, resume, edit, list. Live-syncs JOBS.yaml with CronCreate/CronDelete.
npx skills add majiayu000/claude-skill-registry --skill bot-jobs --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Bot Jobs Skill Manage scheduled jobs defined in `JOBS.yaml` at `$PILOT_BOT_DIR`. All changes are written to YAML **and** live-synced with CronCreate/CronDelete immediately. **Before using cron tools:** Load them first with `ToolSearch(query="select:CronList,CronCreate,CronDelete")`. CronCreate uses `cron` (not `schedule`) as the parameter name for the cron expression. Users interact with this skill via conversation (e.g., "add a job that checks X every morning") — either through Telegram (if available) or directly in the Claude Code session. The bot calls this skill internally. ## Commands | Command | Action | |---------|--------| | `/bot-jobs list` | Show all jobs with status | | `/bot-jobs add` | Add a new job interactively | | `/bot-jobs remove <id>` | Delete a job permanently | | `/bot-jobs pause <id>` | Set `active: false` and unregister from cron | | `/bot-jobs resume <id>` | Set `active: true` and register with cron | | `/bot-jobs edit <id>` | Modify a job interactively | Args are passed via the Skill tool's `args` parameter (e.g., `skill: "bot-jobs", args: "pause daily-report"`). ## Steps ### Parse command Extract the subcommand and optional job ID from args: - No args or
- Commands
- Steps
- Parse command
- Read JOBS.yaml
- Execute subcommand
- Matching JOBS.yaml entries to CronList
- Notes
- Usage
What does the bot-jobs skill do?
Manage Pilot Bot scheduled jobs — add, remove, pause, resume, edit, list. Live-syncs JOBS.yaml with CronCreate/CronDelete.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill bot-jobs --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
