What problem does it solve?
A checkpoint that passed promotion still isn't deployable until it's exported in the right format for its target runtime, and export bugs are silent — a malformed export still produces a loadable artifact. This Skill picks the correct quantization format for the target hardware and workload, then gates every export behind a mandatory pre/post smoke test.
Core Features & Use Cases
- Format Selection Map: Chooses FP8 for Hopper-class GPUs, AWQ INT4 for older GPUs, GGUF Q4_K_M with imatrix for edge/llama.cpp, and explicitly avoids NVFP4 on GB10 hardware.
- Workload Overrides: Blocks INT4 quantization for long-context, code, and math workloads where quantization error compounds, requiring FP8 or W8A8 instead.
- Mandatory Smoke Test: Loads the exported artifact in its actual target runtime, runs 3–5 golden prompts with deterministic decoding, and gates on byte match for lossless exports or task-grader verdict agreement for lossy ones.
- Use Case: After a LoRA fine-tune receives a PROMOTE verdict, export it as GGUF Q4_K_M with an imatrix for laptop serving via llama.cpp, then verify the quantized model still passes the same task graders as the pre-export checkpoint.
Quick Start
Export my promoted checkpoint as GGUF Q4_K_M with an imatrix for llama.cpp serving and run the smoke test against my goldens file.