Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.07 KB

File metadata and controls

47 lines (33 loc) · 1.07 KB

Quickstart

Install

Add the marketplace and install the plugin:

claude plugins marketplace add syscode-labs/agentic-skills
claude plugins install agentic-skills@agentic-skills

Skills

rate-budget (WIP)

Maximises 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.