What problem does it solve? Choosing a model export target without checking hardware, toolchain, and graph compatibility leads to failed conversions, broken deployments, and wasted effort. This Skill separates the requested file format from the real runtime target, validates feasibility, and recommends ranked conversion paths that actually fit the deployment environment. ## Core Features & Use Cases - Feasibility Verification: Checks hardware fit (NVIDIA GPU for TensorRT, Intel for OpenVINO, Rockchip NPU for RKNN), library availability, and model-graph compatibility before recommending any target, delivering a clear verdict: feasible, feasible with setup, or not a good fit. - Ranked Conversion Paths: Generates ranked alternatives (default 3, or exactly N when requested) covering the best fit, a conservative fallback, and a portable fallback like ONNX or TorchScript, each with conversion chain, prerequisites, and trade-offs. - Direct Conversion Mode: When both source and target formats are specified, keeps the requested route as primary and only broadens to alternatives if the route is blocked. - Use Case: You have a PyTorch .pt model and want TensorRT output, but your machine is CPU-only. The Skill flags TensorRT as hardware-bound, then ranks ONNX, OpenVINO IR, and TorchScript as viable paths with full conversion chains and configuration guidance. ## Quick Start Ask the assistant to recommend the best conversion paths for your model, for example: "I have a PyTorch .pt model and need the best 3 conversion options for deployment on a Rockchip NPU board."