Claude-night-market setup

Provision the oracle inference daemon with Python 3.11+ and onnxruntime via uv

install
source · Clone the upstream repo
git clone https://github.com/athola/claude-night-market
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/athola/claude-night-market "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/oracle/skills/setup" ~/.claude/skills/athola-claude-night-market-setup && rm -rf "$T"
manifest: plugins/oracle/skills/setup/SKILL.md
source content

Oracle Setup

Provision the ML inference environment.

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)
"
  1. Report result to the user.
  2. If successful, tell the user the daemon will start on next session.
  3. If failed, show the error and suggest checking uv and network.