用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/arunnadarasa/mistral-hermes-config --skill openclaw命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use when working on EndoTrack (nhsquantinuum, Quantinuum SG Grand Challenge, Submission 1 due 15 Oct 2026). Encodes the project's binding procedures — evidence constitution, QAS receipt law, ledger discipline, claim language, interpreter split, credential hygiene — so every team agent (OpenClaw, Hermes, Manus) produces committed, honest, verifiable work.
Build and run Guppy/Selene quantum circuits on Quantinuum stacks; healthcare/hackathon triage kernels (QUBO, biomarker features)
Use when building/editing EndoTrack surfaces in Lovable (portal, whisperer, agent pages, demo copy) or when generated UI/copy references EndoTrack quantum results, NICE context, or certified numbers. Ingest docs/llms-full.txt as the project brain.
| name | openclaw |
| description | Use when running Nexus or Guppy quantum jobs on this Mac. |
| version | 1.0.0 |
| metadata | {"hermes":{"tags":["openclaw","hermes","desktop","macos","venv","interpreter"],"category":"productivity","requires_toolsets":["terminal"]}} |
The OpenClaw machine is a macOS desktop (26.5.2) running the Hermes Agent desktop app. This skill captures the environment facts that repeatedly bite: which python has which packages, how to run Nexus/Guppy jobs, and how to coordinate background sweeps across multiple backends.
Load this skill when:
qnexus, guppylang,
pytket, or selene_sim and need the correct interpreter| Interpreter | Path | Python | Has | Missing |
|---|---|---|---|---|
| System python3 | python3 (3.14) | 3.14 | guppylang 1.0.1, selene_sim, pytket 2.18.1 | qnexus, hugr_qir |
| Hermes venv | /Users/openclaw/.hermes/hermes-agent/venv/bin/python | 3.11 | qnexus, guppylang 1.0.x, selene_sim, pytket 2.18.1 | hugr_qir |
| pip target | pip install → Hermes venv | 3.11 | whatever you install | system python3 won't see it |
Rule: For Nexus jobs, ALWAYS use the Hermes venv python:
/Users/openclaw/.hermes/hermes-agent/venv/bin/python script.py
pip install goes to the Hermes venv (3.11), NOT system python3 (3.14).
If python3 -c "import X" fails after pip install X, use the venv python.
12 backends available via qnx.devices.get_all():
| Backend | Type | Result accessor | Cost |
|---|---|---|---|
| H1-1LE | local emulator (noiseless) | get_counts() (pytket) | FREE |
| H2-1LE | local emulator (noiseless) | get_counts() (pytket) | FREE |
| H1-Emulator | noisy emulator | get_counts() (pytket) | FREE |
| H2-Emulator | noisy emulator | get_counts() (pytket) | FREE |
| Helios-1E-lite | Helios (HUGR-only) | register_counts() (Qsys) | FREE |
| Aer | IBM simulator | get_counts() (pytket) | FREE |
| Qulacs | CPU statevector | get_counts() (pytket) | FREE |
attempt_batching=True → 403 "Batching needs to be enabled for your
organization" — just use multi-program jobs insteadEndoTrack-QIR (shared across all submissions)When running multiple backend sweeps in parallel:
terminal(background=True, notify_on_complete=True)session_id (e.g. proc_abc123)process(action='poll', session_id=...) — non-blockingprocess(action='wait', session_id=..., timeout=120) — blocksprocess(action='kill', session_id=...)session_id to know which run is currentpytket Rz(param) takes HALFTURNS, not radians:
Rz(0.5) = rotation by π/2circ.Rz(θ / math.pi, q)Circuit(1).Rz(0.5).get_unitary() → diag(e^{-iπ/4}, e^{iπ/4})# Check Nexus is reachable
/Users/openclaw/.hermes/hermes-agent/venv/bin/python -c "import qnexus; qnx.devices.get_all()"
# Check Guppy + Selene
python3 -c "import guppylang, selene_sim; print('OK')"
# Check pytket
python3 -c "import pytket; print(pytket.__version__)"