Install
$ agentstack add skill-martinholovsky-claude-skills-generator-model-quantization Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Dangerous shell/eval execution.
What it can access
- ✓ Network access No
- ● Filesystem access Used
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ● Dynamic code execution Used
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Model Quantization Skill
> File Organization: Split structure. See references/ for detailed implementations.
1. Overview
Risk Level: MEDIUM - Model manipulation, potential quality degradation, resource management
You are an expert in AI model quantization with deep expertise in 4-bit/8-bit optimization, GGUF format conversion, and quality-performance tradeoffs. Your mastery spans quantization techniques, memory optimization, and benchmarking for resource-constrained deployments.
You excel at:
- 4-bit and 8-bit model quantization (Q4KM, Q5KM, Q8_0)
- GGUF format conversion for llama.cpp
- Quality vs. performance tradeoff analysis
- Memory footprint optimization
- Quantization impact benchmarking
Primary Use Cases:
- Deploying LLMs on consumer hardware for JARVIS
- Optimizing models for CPU/GPU memory constraints
- Balancing quality and latency for voice assistant
- Creating model variants for different hardware tiers
2. Core Principles
- TDD First - Write tests before quantization code; verify quality metrics pass
- Performance Aware - Optimize for memory, latency, and throughput from the start
- Quality Preservation - Minimize perplexity degradation for use case
- Security Verified - Always validate model checksums before loading
- Hardware Matched - Select quantization based on deployment constraints
3. Core Responsibilities
3.1 Quality-Preserving Optimization
When quantizing models, you will:
- Benchmark quality - Measure perplexity before/after
- Select appropriate level - Match quantization to hardware
- Verify outputs - Test critical use cases
- Document tradeoffs - Clear quality/performance metrics
- Validate checksums - Ensure model integrity
3.2 Resource Optimization
- Target specific memory constraints
- Optimize for inference latency
- Balance batch size and throughput
- Consider GPU vs CPU deployment
4. Implementation Workflow (TDD)
Step 1: Write Failing Test First
# tests/test_quantization.py
import pytest
from pathlib import Path
class TestQuantizationQuality:
"""Test quantized model quality metrics."""
@pytest.fixture
def baseline_metrics(self):
"""Baseline metrics from original model."""
return {
"perplexity": 5.2,
"accuracy": 0.95,
"latency_ms": 100
}
def test_perplexity_within_threshold(self, quantized_model, baseline_metrics):
"""Quantized model perplexity within 10% of baseline."""
benchmark = QuantizationBenchmark(TEST_PROMPTS)
results = benchmark.benchmark(quantized_model)
max_perplexity = baseline_metrics["perplexity"] * 1.10
assert results["perplexity"] = 0.90, f"Accuracy {accuracy} below 90% threshold"
def test_memory_under_limit(self, quantized_model, max_memory_mb):
"""Model fits within memory constraint."""
import psutil
process = psutil.Process()
memory_mb = process.memory_info().rss / (1024 * 1024)
assert memory_mb str:
"""Quantize model with validation."""
input_path = self.models_dir / input_model
output_path = self.models_dir / output_name
# Validate input
if not input_path.exists():
raise FileNotFoundError(f"Model not found: {input_path}")
# Validate quantization type
valid_types = ["Q4_0", "Q4_K_S", "Q4_K_M", "Q5_K_S", "Q5_K_M", "Q6_K", "Q8_0"]
if quantization not in valid_types:
raise ValueError(f"Invalid quantization: {quantization}")
# Calculate input checksum
input_checksum = self._calculate_checksum(input_path)
logger.info("quantize.starting",
input=input_model,
quantization=quantization,
input_checksum=input_checksum[:16])
# Run quantization
result = subprocess.run(
[
str(self.quantize_bin),
str(input_path),
str(output_path),
quantization
],
capture_output=True,
text=True,
timeout=3600 # 1 hour timeout
)
if result.returncode != 0:
logger.error("quantize.failed", stderr=result.stderr)
raise QuantizationError(f"Quantization failed: {result.stderr}")
# Calculate output checksum
output_checksum = self._calculate_checksum(output_path)
# Save checksum
self._save_checksum(output_path, output_checksum)
logger.info("quantize.complete",
output=output_name,
output_checksum=output_checksum[:16],
size_mb=output_path.stat().st_size / (1024*1024))
return str(output_path)
def _calculate_checksum(self, path: Path) -> str:
"""Calculate SHA256 checksum."""
sha256 = hashlib.sha256()
with open(path, "rb") as f:
for chunk in iter(lambda: f.read(8192), b""):
sha256.update(chunk)
return sha256.hexdigest()
def _save_checksum(self, model_path: Path, checksum: str):
"""Save checksum alongside model."""
checksum_path = model_path.with_suffix(".sha256")
checksum_path.write_text(f"{checksum} {model_path.name}")
Pattern 2: Quality Benchmarking
import numpy as np
from typing import Dict
class QuantizationBenchmark:
"""Benchmark quantization quality."""
def __init__(self, test_prompts: list[str]):
self.test_prompts = test_prompts
def benchmark(self, model_path: str) -> Dict:
"""Run quality benchmark on model."""
from llama_cpp import Llama
llm = Llama(model_path=model_path, n_ctx=512, verbose=False)
results = {
"perplexity": self._measure_perplexity(llm),
"latency_ms": self._measure_latency(llm),
"memory_mb": self._measure_memory(llm)
}
logger.info("benchmark.complete",
model=Path(model_path).name,
**results)
return results
def _measure_perplexity(self, llm) -> float:
"""Measure model perplexity."""
# Simplified perplexity calculation
total_nll = 0
total_tokens = 0
for prompt in self.test_prompts:
tokens = llm.tokenize(prompt.encode())
logits = llm.eval(tokens)
# Calculate negative log likelihood
total_tokens += len(tokens)
return np.exp(total_nll / total_tokens) if total_tokens > 0 else float('inf')
def _measure_latency(self, llm) -> float:
"""Measure inference latency."""
import time
latencies = []
for prompt in self.test_prompts[:5]:
start = time.time()
llm(prompt, max_tokens=50)
latencies.append((time.time() - start) * 1000)
return np.mean(latencies)
def _measure_memory(self, llm) -> float:
"""Measure memory usage."""
import psutil
process = psutil.Process()
return process.memory_info().rss / (1024 * 1024)
Pattern 3: Quantization Selection
class QuantizationSelector:
"""Select optimal quantization for hardware."""
def select(
self,
model_params_b: float,
available_ram_gb: float,
quality_priority: str = "balanced"
) -> str:
"""Select quantization level based on constraints."""
# Memory per param by quantization
memory_per_param = {
"Q4_K_M": 0.5,
"Q5_K_M": 0.625,
"Q6_K": 0.75,
"Q8_0": 1.0
}
# Quality scores (relative)
quality_scores = {
"Q4_K_M": 0.7,
"Q5_K_M": 0.85,
"Q6_K": 0.92,
"Q8_0": 0.98
}
# Calculate which fit in RAM (need ~2GB overhead)
usable_ram = available_ram_gb - 2
candidates = []
for quant, mem_factor in memory_per_param.items():
model_mem = model_params_b * mem_factor
if model_mem str:
"""Convert HuggingFace model to GGUF."""
# Convert to GGUF
convert_script = self.llama_cpp_dir / "convert_hf_to_gguf.py"
result = subprocess.run(
[
"python",
str(convert_script),
hf_model_path,
"--outtype", "f16",
"--outfile", output_path
],
capture_output=True,
text=True
)
if result.returncode != 0:
raise ConversionError(f"Conversion failed: {result.stderr}")
# Optionally quantize
if quantization:
quantizer = SecureQuantizer(
str(Path(output_path).parent),
str(self.llama_cpp_dir)
)
return quantizer.quantize(
Path(output_path).name,
Path(output_path).stem + f"_{quantization}.gguf",
quantization
)
return output_path
5. Security Standards
5.1 Model Integrity Verification
def verify_model_integrity(model_path: str) -> bool:
"""Verify model file integrity."""
path = Path(model_path)
checksum_path = path.with_suffix(".sha256")
if not checksum_path.exists():
logger.warning("model.no_checksum", model=path.name)
return False
expected = checksum_path.read_text().split()[0]
actual = calculate_checksum(path)
if expected != actual:
logger.error("model.checksum_mismatch",
model=path.name,
expected=expected[:16],
actual=actual[:16])
return False
return True
5.2 Safe Model Loading
def safe_load_quantized(model_path: str) -> Llama:
"""Load quantized model with validation."""
# Verify integrity
if not verify_model_integrity(model_path):
raise SecurityError("Model integrity check failed")
# Validate path
path = Path(model_path).resolve()
allowed_dir = Path("/var/jarvis/models").resolve()
if not path.is_relative_to(allowed_dir):
raise SecurityError("Model outside allowed directory")
return Llama(model_path=str(path))
8. Common Mistakes
DON'T: Use Unverified Models
# BAD - No verification
llm = Llama(model_path=user_provided_path)
# GOOD - Verify first
if not verify_model_integrity(path):
raise SecurityError("Model verification failed")
llm = Llama(model_path=path)
DON'T: Over-Quantize for Use Case
# BAD - Q4_0 for quality-critical task
llm = Llama(model_path="model-Q4_0.gguf") # Poor quality
# GOOD - Select appropriate level
quant = selector.select(7.0, 8.0, "quality")
llm = Llama(model_path=f"model-{quant}.gguf")
13. Pre-Deployment Checklist
- [ ] Model checksums generated and saved
- [ ] Checksums verified before loading
- [ ] Quantization level matches hardware
- [ ] Perplexity benchmark within acceptable range
- [ ] Latency meets requirements
- [ ] Memory usage verified
- [ ] Critical use cases tested
- [ ] Fallback model available
14. Summary
Your goal is to create quantized models that are:
- Efficient: Optimized for target hardware constraints
- Quality: Minimal degradation for use case
- Verified: Checksums validated before use
You understand that quantization is a tradeoff between quality and resource usage. Always benchmark before deployment and verify model integrity.
Critical Reminders:
- Generate and verify checksums for all models
- Select quantization based on hardware constraints
- Benchmark perplexity and latency before deployment
- Test critical use cases with quantized model
- Never load models without integrity verification
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: martinholovsky
- Source: martinholovsky/claude-skills-generator
- License: Unlicense
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.