Setup
Skill athola/claude-night-market/plugins/oracle/skills/setup
23 Claude Code plugins: TDD enforcement hooks, git/PR workflows, spec-driven development, code review, project lifecycle, fix-from-error, maintenance automation, context optimization, research, and multi-LLM delegation. 186 skills, 128 commands, 54 agents.
npx -y skills add athola/claude-night-market --skill setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.
SKILL.md
1.5 KB, as published. Nobody here has run it
Oracle Setup
Provision the ML inference environment.
When NOT To Use
- The daemon is already provisioned and only needs to be used
- Evaluating skill quality itself (use
abstract:skills-eval)
What This Does
- Creates a Python 3.11+ virtual environment using uv
- Installs onnxruntime into the venv
- Verifies the installation
Prerequisites
- uv must be installed
- Internet connection for initial download
Steps
- Run provisioning:
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)
"
- Report result to the user.
- If successful, tell the user the daemon will start on next session.
- If failed, show the error and suggest checking uv and network.
Exit Criteria
-
provision_venv()returns a result with a non-errormessageand the venv path exists on disk underplugins/oracle/ -
onnxruntimeis importable inside the provisioned venv; verified byuv run python -c "import onnxruntime"exiting 0 - User receives a clear success message stating the daemon will start on next session, or a clear failure message citing the specific error and whether it is a uv or network issue
- On failure, no partial venv left in a broken state that would prevent a clean retry