What problem does it solve? Running large language models locally requires choosing the right GGUF quantization, finding compatible model files on Hugging Face, and configuring llama.cpp for your hardware, which involves many manual steps and platform-specific pitfalls. ## Core Features & Use Cases - Hub-First Model Discovery: Search Hugging Face for llama.cpp-compatible models, read the local-app page for recommended quants, and confirm exact GGUF filenames and sizes via the tree API. - Local Inference Setup: Build llama-cli and llama-server commands, use llama-cpp-python bindings for chat, streaming, and embeddings across CPU, Apple Silicon, CUDA, ROCm, and Intel GPUs. - Quantization Guidance: Choose between Q4_K_M, Q5_K_M, Q6_K, IQ variants, and repo-specific labels based on RAM or VRAM constraints. - Use Case: A developer wants to run a 35B model on a machine with 24 GB VRAM. The skill finds the repo's hardware compatibility section, recommends UD-Q4_K_M at 22.1 GB, and outputs the exact llama-server command. ## Quick Start Ask the assistant to find a GGUF version of a Hugging Face model and generate the llama-server command to run it locally.