What problem does it solve? Running large language models locally requires choosing the right GGUF quantization, finding compatible models on Hugging Face, and configuring llama.cpp for your specific 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 via URL workflows, extract recommended quants from local-app pages, and confirm exact GGUF filenames and sizes through the tree API. - Local Inference Setup: Install and run llama-cli or llama-server on CPU, Apple Silicon, CUDA, ROCm, or Intel GPUs, including direct-from-Hub commands and OpenAI-compatible server endpoints. - Quant Selection Guidance: Choose between Q4/Q5/Q6/IQ variants based on RAM or VRAM budgets, with repo-native labels preserved exactly as Hugging Face shows them. - Use Case: A user wants to run a 24B-parameter model on a laptop with 16 GB of VRAM. 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 agent to find a llama.cpp-compatible GGUF for a Hugging Face model and generate the llama-server command for your hardware.