← ClaudeAtlas

budget-aware-model-allocationlisted

Use when you're working with more than one model or provider with separate rate-limit or token budgets, and one of them is running low. Decide whether to proceed lean, defer non-urgent work, or shift heavy work to whichever provider has headroom, instead of blowing through a limit on autopilot.
HamzaYM/reliable-ai-skills · ★ 0 · AI & Automation · score 67
Install: claude install-skill HamzaYM/reliable-ai-skills
# Budget-aware model allocation If you have access to more than one model or vendor, each with its own separate rate-limit or spend budget, treat that as a resource-allocation problem, not just a cost line item. The failure mode this guards against: an offhand, unscoped request (a wide fan-out, a big batch job, ingesting a large corpus) detonates a large fraction of a budget window that was already running low, at the worst possible moment. ## When a budget signal says a window is getting low 1. **Be deliberate before large spends.** If the next action is inherently large (a wide parallel fan-out, ingesting a big corpus, a long agentic loop), say so explicitly before doing it: state the intended scope, either in your own reasoning or to whoever you're working with. If no one is available to check with, default to the smallest scope that actually accomplishes the task rather than blocking entirely. 2. **Shift heavy work to whichever provider has headroom.** If one provider is the constraint and another has budget to spare, route the heavy or parallel execution and review work there. You orchestrate; the other provider spends its own budget. This is the same idea as the multi-model-adversarial-review skill: a second vendor gives you diversity of opinion. It also gives you separate capacity. 3. **Trim before you cut scope.** Lower the effort/reasoning setting, batch requests, and avoid re-reading large context you've already processed, before you resort to skipping work outri