athola/setup
Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.
npx skills add https://github.com/athola/claude-night-market --skill setup
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 messageand 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 0
start on next session, or a clear failure message citing the
specific error and whether it is a uv or network issue
prevent a clean retry
Take athola/setup from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.