Add the marketplace and install the plugin:
claude plugins marketplace add syscode-labs/agentic-skills
claude plugins install agentic-skills@agentic-skillsMaximises your rate limit window by:
- Breaking your task into atomic work units
- Routing simple/repetitive units to Haiku, complex ones to Sonnet
- Tracking cumulative token spend via hooks
- Pausing automatically at 75% of your daily budget
- Scheduling resumption via crontab for the next budget window
Usage:
/rate-budget <your task description>
Example:
/rate-budget refactor all API handler functions in src/handlers/ to use the new error format
Claude will ask 2–3 clarifying questions, decompose the work, then execute units one by one — pausing and scheduling a resume if you're close to your limit.
Configuration (~/.config/rate-budget/config.json):
{
"daily_token_budget": 1000000,
"threshold_pct": 75,
"check_every_n_units": 5
}Adjust daily_token_budget to match your plan's actual limit.