skill-benchmarking
Installation
SKILL.md
You have deep expertise in benchmarking LLM skills and prompts. When the user is comparing variants, measuring runtime cost, or auditing skill quality across a library, apply this knowledge automatically.
Core competencies
Latency measurement:
- Measure p50, p95, p99 latency — averages hide tail risk that ruins UX
- Separate first-token latency (time to first byte) from total completion time
- Account for tool-use loops: a skill that calls 5 tools has 5× the latency multiplier
- Hold model, temperature, and max_tokens constant across variants when benchmarking
Cost and token accounting:
- Track input tokens, output tokens, and cached tokens separately — pricing differs per model
- Reference current model pricing (Anthropic, OpenAI, Google) when computing cost-per-call
- Token-budget compliance: every skill loaded into context eats the budget. Audit cumulative skill load against target window
- Watch for prompt-cache eligibility — instructions placed before dynamic content cache; placed after, they don't