agent-cost-budgeting
Installation
SKILL.md
Agent Cost Budgeting
Control and optimize token usage across AI agent systems.
When to Use
- Preventing runaway API costs
- Implementing per-task cost limits
- Optimizing multi-agent token usage
- Tracking and reporting AI spending
- Building cost-aware agent behaviors
Cost Model
interface CostModel {
provider: string;
model: string;
inputCostPer1K: number; // $ per 1000 input tokens
Related skills