Runtime routing
Skill Touchdown-Labs/inference-optimization-agent-pack/skills/runtime-routing
Loadable systems-thinking skill pack for full-stack inference optimization.
npx -y skills add Touchdown-Labs/inference-optimization-agent-pack --skill runtime-routingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Decide whether an AI workload should stay on APIs, move to self-hosted serving, or use hybrid routing based on workload evidence.
SKILL.md
1.8 KB, 355 tokens by cl100k_base, as published. Nobody here has run it
Runtime Routing
Use this when the question is API vs self-hosted vs hybrid.
Do not start with GPU pricing. Start with the workload.
Stay API-First When
- Volume is low or spiky.
- The main leak is prompt bloat, retries, duplicate RAG, or model overuse.
- The team lacks serving operations capacity.
- The provider model quality is the product advantage.
- Data residency allows it.
- The workload is still changing quickly.
Consider Hybrid When
- Some tasks are cheap and predictable.
- Some tasks need premium frontier models.
- Privacy or residency applies to only part of the flow.
- Cacheable or batch work can move to cheaper paths.
- Latency-critical and quality-critical paths differ.
Consider Self-Hosted When
- Steady-state volume is high enough.
- Provider latency or rate limits are the bottleneck.
- Data residency requires it.
- KV reuse, prefix reuse, batching, or custom serving behavior matters.
- Model choice is stable.
- The team can operate the runtime.
Engine Routing
Only discuss engines after workload fit:
- vLLM: general open-model serving, paged attention, broad ecosystem.
- SGLang: structured generation, agentic serving, prefix/cache-heavy patterns.
- TensorRT-LLM: NVIDIA-optimized serving when the workload matches the path.
- Dynamo: disaggregated and rack-scale serving patterns.
- Modular MAX: portability and compiler/runtime direction across hardware.
Do not call any engine universal.
Output
Produce:
- recommended path: API / self-hosted / hybrid / not enough evidence;
- why;
- required proof before migration;
- first benchmark or replay to run;
- rollback plan.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.