Skip to content
Development
Skill

/setup

Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.

From plugin
claude-night-market
337200 skills59 agents162 commands1 MCP
Install
$ npx -y skills add athola/claude-night-market --skill setup --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/setup

Context preview

The summary Claude sees to decide when to auto-load this skill.

Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.

SKILL.md

setup.SKILL.md
name: setup
description: Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation.

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

1. Creates a Python 3.11+ virtual environment using uv 2. Installs onnxruntime into the venv 3. Verifies the installation

Prerequisites

  • uv must be installed
  • Internet connection for initial download

Steps

1. 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)
"

2. Report result to the user. 3. If successful, tell the user the daemon will start on next session. 4. If failed, show the error and suggest checking uv and network.

Exit Criteria

  • [ ] `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 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

Read more
Ships withclaude-night-market

A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.

Get the whole plugin

Other skills on claude-night-market.