Claude-skill-registry llm-ops
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/llm-ops" ~/.claude/skills/majiayu000-claude-skill-registry-llm-ops && rm -rf "$T"
manifest:
skills/data/llm-ops/SKILL.mdsource content
LLM Ops
Manage local LLM runtimes and caches.
Commands
# Check all common LLM endpoints (Ollama, vLLM, SGLang) ./scripts/health.sh # Check specific endpoint ./scripts/health.sh --target ollama:http://127.0.0.1:11434 # Continue even if some fail ./scripts/health.sh --warn-only # Show cache sizes (dry-run) ./scripts/cache-clean.sh # Actually clean caches ./scripts/cache-clean.sh --execute # Clean additional path ./scripts/cache-clean.sh --path ~/.cache/torch --execute
Default Endpoints Checked
- Ollama:
http://127.0.0.1:11434 - vLLM:
http://127.0.0.1:8000 - SGLang:
http://127.0.0.1:30000
Default Cache Directories
~/.cache/ollama~/.cache/huggingface~/.cache/vllm
Environment Variables
| Variable | Default | Description |
|---|---|---|
| 2 | Seconds to wait per endpoint |
| (see above) | Space-separated cache paths |