一键导入
llm-inference
LLM inference: llama.cpp (local GGUF), vLLM (high-throughput serving), Outlines (structured output), OBLITERATUS (refusal ablation).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
LLM inference: llama.cpp (local GGUF), vLLM (high-throughput serving), Outlines (structured output), OBLITERATUS (refusal ablation).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
macOS-specific automation: iMessage/SMS messaging and desktop control (screenshots, clicks, keyboard input).
Messaging platform integrations: email (IMAP/SMTP via Himalaya), X/Twitter (xurl CLI), and Yuanbao groups (@mentions, DMs).
Control creative software programmatically: ComfyUI (AI image/video generation via REST/WebSocket API) and TouchDesigner (real-time visual programming via MCP).
Systematic engineering disciplines: debugging (root cause investigation), TDD (test-first development), and exploratory QA (web app testing).
Creative coding: p5.js sketches, Manim animations, Pretext text layouts.
Create, read, edit .pptx decks, slides, notes, templates.
| name | llm-inference |
| description | LLM inference: llama.cpp (local GGUF), vLLM (high-throughput serving), Outlines (structured output), OBLITERATUS (refusal ablation). |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["LLM","inference","serving","GGUF","vLLM","structured-output","GGUF"]}} |
Unified skill for running and serving LLMs. Four tools: llama.cpp (local), vLLM (serving), Outlines (structured output), OBLITERATUS (refusal ablation).
Run GGUF-quantized models locally. Best for offline inference, edge deployment, and model discovery via HuggingFace Hub.
Key features:
Typical workflow:
huggingface-cli download org/model --include "*.gguf"llama-cli -m model.gguf -p "prompt" -n 256llama-server -m model.gguf --host 0.0.0.0 --port 8080High-throughput LLM serving with PagedAttention, continuous batching, and OpenAI-compatible API.
Best for: Production serving, high throughput, multi-model support, quantization (GPTQ, AWQ, FP8).
Key features:
Quick start:
pip install vllm
python -m vllm.entrypoints.openai.api_server --model meta-llama/Llama-3-8B
curl http://localhost:8000/v1/chat/completions -d '{"model": "meta-llama/Llama-3-8B", "messages": [{"role": "user", "content": "Hello"}]}'
Guarantee valid JSON/XML/code structure during LLM generation using regex-based constrained decoding.
Best for: When you need the LLM to output structured data (JSON, XML, specific code patterns) with 100% validity.
Key features:
Typical use: Force JSON output, generate valid code templates, extract structured data from text.
Abliterate LLM refusals using diff-in-means method. Removes "I cannot", "I'm sorry" patterns from model outputs.
Best for: When you need an uncensored model for red-teaming, security research, or removing overly cautious refusal patterns.
Method: diff-in-means — computes the difference between refusal and non-refusal activation patterns, then shifts activations during generation.