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 scattered documentation and trial-and-error. ## Core Features & Use Cases - Hub-First Model Discovery: Search Hugging Face for llama.cpp-compatible repos, read the local-app page for recommended quants, and confirm exact GGUF filenames and sizes via the tree API. - Local Inference: Run models with llama-cli, llama-server, or the llama-cpp-python bindings on CPU, Apple Silicon, CUDA, ROCm, or Intel GPUs. - Quant Selection 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 Qwen model on a laptop with 16 GB RAM. The skill finds the right GGUF repo, identifies the UD-Q4_K_M quant with its exact file size, and produces a ready-to-run llama-server command. ## Quick Start Ask the assistant to find a llama.cpp-compatible GGUF for a Hugging Face model and generate the llama-server command for your hardware.