From dc0fef6f8ef752f75f223c6b67b7e1d21338169e Mon Sep 17 00:00:00 2001 From: Konrad Kleczkowski Date: Tue, 30 Jun 2026 12:01:45 +0200 Subject: [PATCH 1/4] site: add Get started install/usage section --- site/index.html | 81 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/site/index.html b/site/index.html index 16ba28f..47675a0 100644 --- a/site/index.html +++ b/site/index.html @@ -129,6 +129,40 @@ .pipeline .lead{margin:0 auto 38px} .pipeline img{width:100%;max-width:1000px;height:auto;border-radius:var(--radius);box-shadow:0 18px 44px rgba(12,40,24,.12)} + /* ---------- Get started ---------- */ + .start{padding:88px 0;border-bottom:1px solid var(--line);background:var(--paper-2)} + .start .head{text-align:center;margin:0 auto 48px} + .start h2{font-size:clamp(1.9rem,3.4vw,2.6rem);margin-bottom:14px} + .start .head .lead{margin:0 auto} + .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch} + .step{ + background:#fff;border:1px solid var(--line);border-radius:var(--radius); + padding:26px 24px;text-align:left;display:flex;flex-direction:column; + box-shadow:0 14px 36px rgba(12,40,24,.06); + } + .step .n{ + display:inline-flex;align-items:center;justify-content:center; + width:32px;height:32px;border-radius:999px;background:var(--green);color:#fff; + font-family:var(--mono);font-size:14px;font-weight:600;margin-bottom:16px; + } + .step h3{font-size:1.2rem;margin-bottom:10px} + .step p{color:var(--ink-soft);font-size:.98rem;margin:0 0 16px} + .step code{font-family:var(--mono);font-size:.88em;color:var(--ink);background:rgba(12,20,16,.05);padding:1px 5px;border-radius:5px} + .code{ + margin-top:auto;background:var(--ink);border-radius:12px;padding:14px 16px; + font-family:var(--mono);font-size:13px;line-height:1.65;color:#cdd8d1; + white-space:pre;overflow-x:auto; + } + .code .c{color:var(--green-bright)} + .code code{background:none;color:inherit;padding:0} + .ask{ + margin-top:auto;background:rgba(22,163,74,.06);border:1px solid rgba(22,163,74,.28); + border-radius:12px;padding:15px 17px;color:var(--ink);font-size:1.02rem; + font-style:italic;line-height:1.5; + } + .start .cta{display:flex;gap:14px;justify-content:center;margin-top:40px;flex-wrap:wrap} + @media(max-width:860px){.steps{grid-template-columns:1fr}} + /* ---------- Footer ---------- */ footer{padding:64px 0 56px;background:var(--ink);color:#cdd8d1} footer .wrap{display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:start} @@ -152,6 +186,7 @@ QUBO Pipeline The edge + Get started @@ -291,6 +326,52 @@

The optimizer settles into the deepest wells

+ +
+
+
+

Get started

+

Three steps to first run

+

+ Install the skill into Claude Code, connect it to the hosted quantum backend, then + ask in plain English. There's no backend to run yourself. +

+
+
+
+ 1 +

Install the skill

+

Drop qupick and its sibling bitrefill into Claude Code together.

+
cp -R skills/qupick .claude/skills/ +cp -R skills/bitrefill .claude/skills/
+
+
+ 2 +

Register & connect

+

+ Point .mcp.json at the hosted server and register once — your API key is + emailed to you. Paste it into the Authorization header and reconnect. +

+
url qupick.quip.network/mcp +auth Bearer <key-from-email>
+
+
+ 3 +

Just ask

+

+ The agent picks your worst-performing asset, settles the bill, then retunes the rest of + the basket around it. +

+
"Buy a $20 Steam card and pay with my worst-performing crypto."
+
+
+ +
+
+