reschedule

reschedule is a command for Claude Code from Vitalini/ebb-ai. It costs 10 tokens per session (461 once invoked), scanned A, original, Apache-2.0.

A command for moving an ebb-ai task’s deadline earlier or later. Ebb-ai is a scheduler that queues work and considers timing and carbon cost when planning it.

In plain words
What is it for?
Parsing a task ID and new deadline, updating the queued task through the ebb-ai service, and showing its new schedule and status.
Why use it?
It updates a task after plans change instead of requiring the task to be recreated. Moving a deadline earlier can exceed the task’s carbon budget and cause it to fail.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the ebb-ai plugin — 1 skill, 8 commands, 1 MCP server shipped together

Good fit Parsing a task ID and new deadline, updating the queued task through the ebb-ai service, and showing its new schedule and status.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/vitalini/ebb-ai/reschedule
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Vitalini/ebb-ai

Made for: Claude Code.

Or install ebb-ai, the plugin that ships this one along with the rest of its 1 skill, 8 commands, 1 MCP server.

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 reschedule

README.md
[![agentmods](https://agentmods.dev/badge/commands/vitalini/ebb-ai/reschedule.svg)](https://agentmods.dev/commands/vitalini/ebb-ai/reschedule)
Your own site
<a href="https://agentmods.dev/commands/vitalini/ebb-ai/reschedule"><img src="https://agentmods.dev/badge/commands/vitalini/ebb-ai/reschedule.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 461 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.00010 $0.00461
Opus 5 $0.00005 $0.00230
Sonnet 5 $0.00002 $0.00092
Haiku 4.5 $0.00001 $0.00046

Measured 8d ago against content hash 2e1843e1240e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

reschedule 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 8d 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.

packages/claude-code-plugin/commands/reschedule.md · 54 lines

What it actually says

Re-score and reschedule a queued or scheduled ebb-ai task against a new deadline. Useful when:

  • The user's plans shifted and the work can wait longer (extend) — gives the scheduler more window to find a clean hour.
  • The user pulled in the deadline (compress) — the task is re-scored; if the new window costs more carbon than the budget, the task may end up failed with CarbonBudgetExceededError.

Throws if the task is already running or terminal, or if the new deadline is invalid / in the past.

Arguments

$ARGUMENTS

Expected format:

<task_id> --by <duration-or-iso8601>
  • <task_id> — required.
  • --by <duration> — accepts 2h, 24h, 3d, or an ISO-8601 timestamp.

Convert duration to absolute ISO-8601 before calling. Validate future.

What to do

  1. Parse task_id and the new deadline.
  2. Call the ebb-ai MCP server's update_deadline tool with:
    • task_id
    • deadline — the resolved ISO-8601 timestamp.
  3. Show the new scheduled_for, status, and new_deadline from the response — one line each. (The response does not carry a carbon estimate; if the user wants the re-scored estimate, follow up with /ebb-ai:check <task_id>.)

If the response indicates carbon budget can no longer be met under the new deadline, tell the user, and offer two options:

  • Drop the carbon_budget_g constraint (requires /ebb-ai:cancel then fresh /ebb-ai:defer without budget).
  • Pick a different deadline.

Examples

/ebb-ai:reschedule 7f3a2b9e --by 48h
/ebb-ai:reschedule 7f3a2b9e --by 2026-05-16T09:00:00Z
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. 8d ago First seen · 54 lines · 10 tokens per session scan A 2e1843e1240e

Subscribe to this mod's changes

reschedule is a command published in the GitHub repository Vitalini/ebb-ai (1 stars, last pushed 27d ago), licensed Apache-2.0. It adds 10 tokens to every session and 461 once invoked, about $0.0001 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-31.