From oracle
Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oracle:setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Provision the ML inference environment.
Provision the ML inference environment.
abstract:skills-eval)cd plugins/oracle && uv run python -c "
from oracle.provision import provision_venv, get_venv_path
result = provision_venv(get_venv_path())
print(result.message)
"
provision_venv() returns a result with a non-error message
and the venv path exists on disk under plugins/oracle/onnxruntime is importable inside the provisioned venv;
verified by uv run python -c "import onnxruntime" exiting 0npx claudepluginhub athola/claude-night-market --plugin oracleAutomates Ollama installation, hardware-based model selection, GPU setup, and client integration (Python/Node.js/REST) for local LLM inference on macOS/Linux/Docker.
Guides streaming inference setup for ML deployment, generating production-ready configurations and code for model serving pipelines.
Deploys vLLM server on detected hardware (CUDA/ROCm/TPU/CPU), installs in virtual env with uv/pip, starts LLM serving, tests OpenAI-compatible API.