New to Claude Skills? Learn how to install them →

huggingface on GitHub

Hugging Face Local Models

Free

Run models locally with llama.cpp and GGUF.

Get this skill

Free · Opens the source repo

What Hugging Face Local Models does

Hugging Face Local Models provides a streamlined workflow for developers looking to run machine learning models locally using llama.cpp and GGUF formats. This skill allows users to search the Hugging Face Hub for compatible models, select the appropriate quantization settings, and launch models directly from the command line. It is particularly useful for those working with CPU, Mac Metal, CUDA, or ROCm environments, enabling efficient local model serving without the need for cloud resources.

The main workflow involves searching the Hugging Face Hub for llama.cpp-compatible repositories and retrieving the exact GGUF files needed for local execution. Users can easily confirm the presence of required files and launch models using the provided command-line tools, such as llama-cli and llama-server. The skill also supports fallback mechanisms for custom file naming and offers conversion options for models that do not provide GGUF files natively.

This skill is designed for developers and data scientists who want to leverage local resources for running large language models without relying on external APIs. By using this skill, users can maintain greater control over their models and reduce latency associated with remote calls. The clear instructions and command examples provided in the skill documentation make it easy for users to get started quickly, regardless of their experience level.

In addition to model execution, the skill includes guidance on selecting the right quantization settings based on hardware capabilities and use cases. This ensures optimal performance and resource utilization when running models locally. Overall, Hugging Face Local Models is a valuable tool for anyone looking to implement and experiment with local AI models efficiently.

When to use it

Use this skill when you need to run machine learning models locally on your hardware, especially when working with llama.cpp and GGUF formats.

When not to use it

This skill may not be suitable for users who prefer cloud-based solutions or those who require extensive model management features beyond local execution.

What you can build with it

Local Model Testing

Quickly set up and test different Hugging Face models on your local machine to evaluate performance and capabilities.

Experimenting with Quantization

Select and experiment with various quantization settings to optimize model performance based on your hardware constraints.

Rapid Prototyping

Use this skill to prototype applications that require local model inference without the need for cloud-based solutions.

How to install Hugging Face Local Models

View source

1. Install with the skills CLI

npx skills add huggingface/skills/huggingface-local-models --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by huggingface

Hugging Face Local Models

Search the Hugging Face Hub for llama.cpp-compatible GGUF repos, choose the right quant, and launch the model with llama-cli or llama-server.

Default Workflow

  1. Search the Hub with apps=llama.cpp.
  2. Open https://huggingface.co/<repo>?local-app=llama.cpp.
  3. Prefer the exact HF local-app snippet and quant recommendation when it is visible.
  4. Confirm exact .gguf filenames with https://huggingface.co/api/models/<repo>/tree/main?recursive=true.
  5. Launch with llama-cli -hf <repo>:<QUANT> or llama-server -hf <repo>:<QUANT>.
  6. Fall back to --hf-repo plus --hf-file when the repo uses custom file naming.
  7. Convert from Transformers weights only if the repo does not already expose GGUF files.

Quick Start

Install llama.cpp

brew install llama.cpp
winget install llama.cpp
git clone https://github.com/ggml-org/llama.cpp
cd llama.cpp
make

Authenticate for gated repos

hf auth login

Search the Hub

https://huggingface.co/models?apps=llama.cpp&sort=trending
https://huggingface.co/models?search=Qwen3.6&apps=llama.cpp&sort=trending
https://huggingface.co/models?search=<term>&apps=llama.cpp&num_parameters=min:0,max:24B&sort=trending

Run directly from the Hub

llama-cli -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M
llama-server -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M

Run an exact GGUF file

llama-server \
    --hf-repo unsloth/Qwen3.6-35B-A3B-GGUF \
    --hf-file Qwen3.6-35B-A3B-UD-Q4_K_M.gguf \
    -c 4096

Convert only when no GGUF is available

hf download <repo-without-gguf> --local-dir ./model-src
python convert_hf_to_gguf.py ./model-src \
    --outfile model-f16.gguf \
    --outtype f16
llama-quantize model-f16.gguf model-q4_k_m.gguf Q4_K_M

Smoke test a local server

llama-server -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M
curl http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer no-key" \
  -d '{
    "messages": [
      {"role": "user", "content": "Write a limerick about exception handling"}
    ]
  }'

Quant Choice

  • Prefer the exact quant that HF marks as compatible on the ?local-app=llama.cpp page.
  • Keep repo-native labels such as UD-Q4_K_M instead of normalizing them.
  • Default to Q4_K_M unless the repo page or hardware profile suggests otherwise.
  • Prefer Q5_K_M or Q6_K for code or technical workloads when memory allows.
  • Consider Q3_K_M, Q4_K_S, or repo-specific IQ / UD-* variants for tighter RAM or VRAM budgets.
  • Treat mmproj-*.gguf files as projector weights, not the main checkpoint.

Load References

  • Read hub-discovery.md for URL-first workflows, model search, tree API extraction, and command reconstruction.
  • Read quantization.md for format tables, model scaling, quality tradeoffs, and imatrix.
  • Read hardware.md for Metal, CUDA, ROCm, or CPU build and acceleration details.

Resources

  • llama.cpp: https://github.com/ggml-org/llama.cpp
  • Hugging Face GGUF + llama.cpp docs: https://huggingface.co/docs/hub/gguf-llamacpp
  • Hugging Face Local Apps docs: https://huggingface.co/docs/hub/main/local-apps
  • Hugging Face Local Agents docs: https://huggingface.co/docs/hub/agents-local
  • GGUF converter Space: https://huggingface.co/spaces/ggml-org/gguf-my-repo

Frequently asked questions about Hugging Face Local Models

Similar skills