llama-cpp

Discover GGUF models on Hugging Face and launch local llama.cpp inference servers.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/projectedanx/hermes-agent --skill llama-cpp-projectedanx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: llama-cpp
Source: https://github.com/projectedanx/hermes-agent/tree/main/skills/mlops/inference/llama-cpp
Command: npx skills add https://github.com/projectedanx/hermes-agent --skill llama-cpp-projectedanx

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires llama-cpp-python, and includes references (resource) components.

What problem does it solve?

This skill simplifies the complex process of discovering, selecting, and running local GGUF models, removing the friction of manual hardware compatibility checks and command-line configuration.

Core Features & Use Cases

  • Model Discovery: Search and identify the best GGUF models on Hugging Face based on your specific hardware constraints.
  • Inference Optimization: Automatically determine the optimal quantization and GPU offloading settings for your system.
  • Use Case: If you need to run a 7B parameter model on a machine with limited VRAM, this skill will help you select the correct Q4_K_M quantization and generate the exact command to launch an OpenAI-compatible server.

Quick Start

Use the llama-cpp skill to search for and launch a local inference server for the bartowski/Llama-3.2-3B-Instruct-GGUF model.

Frequently Asked Questions about llama-cpp

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run local GGUF models with llama.cpp on a machine with limited VRAM?▼

To run local GGUF models with limited VRAM, you can use quantization optimization to select a format like Q4_K_M and apply GPU offloading settings to fit your hardware constraints. This skill automatically determines the optimal configuration for your system.

What is the best way to find compatible GGUF models on Hugging Face for my specific hardware?▼

Finding compatible GGUF models on Hugging Face is done through hardware-aware model discovery, which evaluates your system constraints to identify the best models. This removes the friction of manual compatibility checks and command-line configuration.

Can I deploy an OpenAI-compatible server using llama.cpp for local inference?▼

Yes, you can deploy an OpenAI-compatible server using llama.cpp for local inference. This skill generates the exact commands needed to launch the server, enabling edge-based LLM execution across Linux, macOS, and Windows.

Does the llama-cpp skill work across Linux, macOS, and Windows for edge-based LLM execution?▼

Yes, the llama-cpp skill supports edge-based LLM execution across Linux, macOS, and Windows. It provides automated model configuration and inference optimization tailored to your specific operating system and hardware.

How do I determine the optimal quantization settings for a 7B parameter model?▼

Determining optimal quantization settings for a 7B parameter model is handled automatically by evaluating your available VRAM. The skill recommends specific formats like Q4_K_M and configures GPU offloading to ensure the model runs efficiently on your machine.

Why do I need to use quantization when running local GGUF models?▼

Quantization is needed when running local GGUF models to reduce the memory footprint so they fit within limited VRAM constraints. It allows edge-based LLM execution by compressing the model weights without significantly degrading performance.