Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

quantinuumclawquantinuumclaw 搜索

Agent Skill

quantinuumclaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,964

周安装

484

GitHub Stars

公开资料未说明

下载量

3,756
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:quantinuumclaw(quantinuumclaw 搜索)
来源仓库:https://github.com/arunnadarasa/quantinuumclaw
安装命令:
openclaw skills install quantinuumclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install quantinuumclaw

简介

支持 Quantinuum、Guppy、Selene 等平台部署量子计算应用。

  • 适用于临床黑客马拉松等特定场景下的量子算法实验。
  • 在 OpenClaw 中主要用于查找相关 SDK 与部署文档资源。
  • 安装前请确认目标云平台账户已开通相应服务权限。quantinuumclaw 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 部分功能可能需要付费订阅才能正常使用全部特性。

SKILL.md

name
quantinuumclaw
description
Enables building and deploying quantum computing applications with Quantinuum, Guppy, Selene, and Fly.io. Use for the OpenClaw Clinical Hackathon, clinical or healthcare projects (drug discovery, treatment optimization, patient stratification, trial randomization), quantum-powered web apps, deploying quantum algorithms to the cloud, or integrating quantum results into user-facing interfaces.

QuantinuumClaw – Quantum Guppy/Selene Stack

This skill provides everything needed to build production-ready quantum applications using Quantinuum (hardware/emulator), Guppy (quantum language), Selene (FastAPI backend), and Fly.io (deployment), with optional Lovable frontend. It is tuned for the OpenClaw Clinical Hackathon and general quantum web apps.

When to Use This Skill

Use when:

  • Building for the OpenClaw Clinical Hackathon or any clinical/healthcare quantum project
  • Building web applications that use quantum computing (optimization, chemistry, ML, random, crypto)
  • Deploying quantum algorithms as REST APIs or creating dashboards for quantum results
  • User mentions: clinical, healthcare, drug discovery, treatment optimization, patient stratification, molecular simulation, clinical trials, Guppy, Selene, Fly.io

Example requests: "Build a quantum portfolio optimizer with a web interface" · "Deploy my Guppy algorithm to the cloud" · "Create a clinical molecular simulation demo" · "Set up a quantum ML service on Fly.io"

Stack at a Glance

ComponentRole
QuantinuumQuantum hardware (H-series) or emulator
GuppyQuantum programming (circuits, gates, measurement)
SeleneFastAPI backend that runs Guppy and exposes REST API
Fly.ioHosts the Selene backend in the cloud
LovableReact/TS frontend template; use assets/lovable-template/ or any app that calls the Selene API

Quick Start (One Command)

From the repo root:

python3 scripts/create_quantum_app.py \
  --app-name "clinical-demo" \
  --use-case "chemistry" \
  --description "Clinical molecular simulation" \
  --deploy

Then set VITE_API_URL in the frontend to your Fly.io app URL (e.g. https://clinical-demo.fly.dev).

Clinical use-case → --use-case mapping:

Clinical idea--use-caseNotes
Drug discovery / molecular simchemistryMolecules, energy, properties
Treatment / resource optimizationoptimizationQAOA-style optimization
Patient stratification / MLmlQuantum ML models
Trial randomizationrandomQuantum RNG
Secure keys / protocolscryptoQuantum-safe crypto

General use cases (portfolio, finance, etc.) also use optimization, chemistry, ml, random, crypto, or finance. See references/clinical-use-cases.md for detailed clinical mappings.

Full Workflow: Creating a Quantum Application

Step 1: Define the use case

Identify the problem (optimization, simulation, ML, cryptography, clinical, etc.).

Step 2: Create Selene backend

python3 scripts/setup_selene_service.py \
  --app-name "my-quantum-app" \
  --use-case "chemistry" \
  --description "Quantum chemistry simulator"

This creates a backend dir with FastAPI, health check, Dockerfile, and fly.toml.

Step 3: Implement your Guppy circuit

Edit my-quantum-app/main.pyQuantumService._run_real_quantum(). Use references/guppy_guide.md for syntax. For clinical: chemistry (molecule, shots, precision), optimization (objective, constraints), ML (features, epochs).

Step 4: Deploy to Fly.io

python3 scripts/flyio_deploy.py --app-name "my-quantum-app" --service-dir "my-quantum-app" --region "lhr"

Set secrets with fly secrets set; use emulator for demos if preferred.

Step 5: Frontend

Use assets/lovable-template/ or run:

python3 scripts/lovable_integrate.py \
  --app-name "my-frontend" \
  --backend-url "https://my-quantum-app.fly.dev" \
  --quantum-use-case "chemistry"

Then npm install and npm run dev in the frontend dir.

Step 6: Connect and test

Point frontend VITE_API_URL to the Fly.io backend; hit /health to verify.

Clinical Use Case Cheat Sheet

  • Drug discovery / molecular simulation: chemistry — VQE-style energy/property in Guppy; expose molecule type and params via API.
  • Treatment / resource optimization: optimization — Define objective (cost, wait time); run QAOA in Selene; display results in UI.
  • Patient stratification / classification: ml — Map patient features to model inputs; return risk/stratum or classification.
  • Randomization (e.g. trials): random — Quantum RNG from Guppy; expose bits/shots in API.
  • Security / key material: crypto — Key generation or quantum-safe primitives; keep keys on backend only.

Data and Compliance (Clinical / Hackathon)

  • Demos: Use synthetic or de-identified data only. Do not send real PHI to quantum backends or store in Fly.io without a compliance plan.
  • API keys: Store in Fly.io secrets (fly secrets set), never in code or frontend.
  • Production: Add auth, rate limiting, and consider HIPAA/DPA; restrict CORS in Selene.

Resources

scripts/

  • create_quantum_app.py — All-in-one: backend + deploy + frontend
  • setup_selene_service.py — Scaffold Selene backend
  • flyio_deploy.py — Deploy to Fly.io
  • lovable_integrate.py — Frontend wired to backend URL

references/

  • guppy_guide.md — Guppy syntax, gates, circuits, examples
  • selene_api.md — Endpoints, request/response, errors, jobs
  • flyio_config.md — Fly.io scaling, regions, secrets, monitoring
  • lovable_patterns.md — Frontend patterns, dashboard, API client
  • clinical-use-cases.md — Detailed clinical use-case mappings and compliance notes

assets/

  • selene-template/ — Backend boilerplate (main.py, Dockerfile, fly.toml, .env.example)
  • lovable-template/ — React/TS frontend with QuantumDashboard and API client

Advanced: Multi-Quantum Use Cases

  • Optimization dashboard: Selene + QAOA/VQE; Lovable with sliders; Fly.io with scaling.
  • Chemistry explorer: Guppy molecular simulations; 3D viewer; optional persistent storage.
  • Quantum ML API: Selene exposing QNN/QSVM; Lovable for training/predictions; Fly.io (GPU if needed).

Performance, Cost, and Security

  • Queuing: Use job queues for long-running quantum jobs; WebSockets or polling in frontend.
  • Caching: Cache identical computations to reduce quantum hardware cost.
  • Fly.io: Scale to zero when idle (min_machines_running = 0); use references/flyio_config.md for VM sizing.
  • Security: No API keys in frontend; rate limiting on Selene; HTTPS in production; see references/selene_api.md for auth patterns.

Troubleshooting

  • Guppy import error: pip install guppy in backend; or use mock mode for demos.
  • Selene not starting: Check fly.toml, fly logs, and env vars.
  • Frontend can’t connect: Verify VITE_API_URL, CORS in Selene, and curl .../health.
  • Fly.io deploy fails: fly deploy --clean; fly logs --phase build; ensure fly auth login.
  • Quantum results wrong: Validate circuit logic and measurement; test with emulator first.

Next Steps

After initial setup: monitor quantum usage/costs; add auth to Selene if public; improve error handling and logging; consider persistence for job history.


For detailed clinical use-case specs and compliance reminders, see references/clinical-use-cases.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.24%
按下载量换算3,314

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills