Agent skill

bot-jobs

Manage Pilot Bot scheduled jobs — add, remove, pause, resume, edit, list. Live-syncs JOBS.yaml with CronCreate/CronDelete.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill bot-jobs --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/bot-jobs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Commands
  2. Steps
  3. Parse command
  4. Read JOBS.yaml
  5. Execute subcommand
  6. Matching JOBS.yaml entries to CronList
  7. Notes
  8. Usage
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going