plugins
All plugins

schedule-after-usage-reset

v1.0.0

Automatically find the Claude usage reset time and schedule a deferred task to run right after the limit lifts.

Claude Code1 skill

by patricksong1993MIT2.6kupdated 2 hours ago

Source

git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/productivity/schedule-after-usage-reset/ inside the repository.

Layout

plugins/productivity/schedule-after-usage-reset/
├── .claude-plugin/plugin.json
└── skills/schedule-after-usage-reset/SKILL.md

Skills1

schedule-after-usage-resetskills/schedule-after-usage-reset/SKILL.md

Schedule a task to run after the Claude usage limit resets. Use when the user says things like: schedule this after my usage resets, run this when my tokens refresh, queue this task for after the limit lifts, or any variation of wanting to defer a task until after a Claude usage/token limit reset. Finds the reset time from the Anthropic usage API and calls /schedule with that exact time. Trigger with phrases like "schedule after my usage resets" or "run this when my limit lifts".

Manifests1

plugins/productivity/schedule-after-usage-reset/.claude-plugin/plugin.json
{
  "name": "schedule-after-usage-reset",
  "version": "1.0.0",
  "description": "Automatically find the Claude usage reset time and schedule a deferred task to run right after the limit lifts.",
  "author": {
    "name": "patricksong1993",
    "url": "https://github.com/patricksong1993"
  },
  "homepage": "https://github.com/patricksong1993/schedule-after-usage-reset",
  "repository": "https://github.com/patricksong1993/schedule-after-usage-reset",
  "license": "MIT",
  "keywords": [
    "schedule",
    "usage-reset",
    "rate-limit",
    "claude-code",
    "automation"
  ]
}