schedule

schedule is a skill for Claude Code from xrgarcia/slashbin-ai-team. It costs 92 tokens per session (1,800 once invoked), scanned A, original, MIT.

A scheduling interface for creating, viewing, removing, and inspecting recurring jobs or one-time follow-ups that run a saved prompt later.

In plain words
What is it for?
Use it for cron-style recurring tasks, one-time reminders, delayed checks, and scheduled messages in the current channel.
Why use it?
It turns requests such as daily reports or reminders into stored work that can run without another conversation. It also records job history and controls where results are posted.

Skill for Claude Code

Written for Claude Code: $CLAUDE_PLUGIN_ROOT variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the slashbin-harness plugin — 3 skills shipped together

Good fit Use it for cron-style recurring tasks, one-time reminders, delayed checks, and scheduled messages in the current channel.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add xrgarcia/slashbin-ai-team
Claude Code
/plugin install slashbin-harness

Made for: Claude Code.

Or install slashbin-harness, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for schedule

README.md
[![agentmods](https://agentmods.dev/badge/skills/xrgarcia/slashbin-ai-team/schedule/github.svg)](https://agentmods.dev/skills/xrgarcia/slashbin-ai-team/schedule)
Your own site
<a href="https://agentmods.dev/skills/xrgarcia/slashbin-ai-team/schedule"><img src="https://agentmods.dev/badge/skills/xrgarcia/slashbin-ai-team/schedule/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for schedule

Your own site · 80×15
<a href="https://agentmods.dev/skills/xrgarcia/slashbin-ai-team/schedule"><img src="https://agentmods.dev/badge/skills/xrgarcia/slashbin-ai-team/schedule.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,800 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.01800
Opus 5 $0.00046 $0.00900
Sonnet 5 $0.00018 $0.00360
Haiku 4.5 $0.00009 $0.00180

Measured 11d ago against content hash 54801ae613ce, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

schedule scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skill-pack/skills/schedule/SKILL.md · 155 lines

How it starts

The opening of the file, as written. The whole thing — 155 lines — stays where its author put it; the contents beside it link to each section on GitHub.

schedule

Turn "tell me every morning at 7 what my customer reach is" into a job that actually fires.

A scheduled job is a stored prompt. When it fires, this bot runs that prompt unattended and posts the result into a channel. It has the bot's normal tool access, so treat creating one with the same care as running the request yourself.

Commands

All paths come from the environment. Never name a file.

node "$CLAUDE_PLUGIN_ROOT/bin/schedule.mjs" list
node "$CLAUDE_PLUGIN_ROOT/bin/schedule.mjs" add  --cron "0 7 * * 1,2,3,4,5" --prompt "..." --by "<who asked>"
node "$CLAUDE_PLUGIN_ROOT/bin/schedule.mjs" wake --in 20m --prompt "..." --note "..." --carry
node "$CLAUDE_PLUGIN_ROOT/bin/schedule.mjs" remove <id>
node "$CLAUDE_PLUGIN_ROOT/bin/schedule.mjs" history [id]

add recurs on a clock. wake happens once, a stated distance from now.

add defaults to the current channel. Pass --channel <id> only if the user explicitly asks for it to post somewhere else — a job that quietly posts into a different channel is a surprise nobody wants.

Writing the cron — read this before composing one

The scheduler evaluates * and comma-separated numbers only.

Ranges and steps are not supported. Write 1,2,3,4,5, never 1-5. The script rejects a range rather than accepting it, because 1-5 would otherwise parse as 1 and a "weekdays" job would fire on Mondays alone — a wrong schedule is worse than a rejected one, since nobody notices until it doesn't happen.

Fields are minute hour day month weekday, weekday 0 = Sunday.

ask cron
every morning at 7 0 7 * * *
every weekday at 7 0 7 * * 1,2,3,4,5
Mondays at 9:30 30 9 * * 1
1st of the month at 8 0 8 1 * *

Times are interpreted in the bot's configured timezone, not the server's.

The prompt matters more than the schedule

The stored prompt runs with no one watching and no conversation around it. Write it to stand alone:

  • Bad: "tell me the reach" — no context, and "me" means nothing at 7am.
  • Good: "Post the current customer reach numbers for jerky.com, with the change since last week. Lead with the number."

Read the full file on GitHub · 155 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 155 lines · 92 tokens per session scan A 54801ae613ce

Subscribe to this mod's changes

schedule is a skill published in the GitHub repository xrgarcia/slashbin-ai-team (11 stars, last pushed 2d ago), licensed MIT. It adds 92 tokens to every session and 1,800 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

workspace-organizing

Use whenever the agent creates, writes, moves, or renames a file in a team/delegate (shared) workspace, OR when the user asks to organize, clean up, restructure, audit, or find files in any workspace or the Vault, OR when starting a multi-file task or named project. Enforces a purpose-based folder convention (flat…

nextlevelbuilder/goclaw · 0 tokens

apple-platform-automation

Manage Apple/macOS personal apps and device workflows from Hermes, including Apple Notes, Reminders, Find My, iMessage/SMS, and UI automation. Use when a task involves Apple ecosystem data or macOS-only CLIs such as memo, remindctl, imsg, FindMy.app, AppleScript, or Peekaboo.

S3YED/appie-kit · 72 tokens

ibrahim-daily-briefing

Generate Ibrahim's daily briefing — new leads, upcoming calls, pending follow-ups, system health, and one strategic question. Delivered to Telegram.

S3YED/appie-kit · 37 tokens

himalaya

CLI to manage emails via IMAP/SMTP. Use himalaya to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).

S3YED/appie-kit · 52 tokens

computer-use

Drive the user's desktop in the background — clicking, typing, scrolling, dragging — without stealing the cursor, keyboard focus, or switching virtual desktops / Spaces. Cross-platform: macOS, Windows, Linux. Works with any tool-capable model. Load this skill whenever the computeruse tool is available.

S3YED/appie-kit · 68 tokens

discord

Discord ops via the message tool (channel=discord).

S3YED/appie-kit · 13 tokens