Spaces:
Paused
Paused
Clawd Computer v2: π¦ branding, x402.wtf links, token, Solana ecosystem
Browse files- web/index.html +26 -13
web/index.html
CHANGED
|
@@ -3,14 +3,14 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
-
<title>Clawd Computer
|
| 7 |
<style>
|
| 8 |
:root {
|
| 9 |
--bg: #0a0612;
|
| 10 |
--panel: #150a26;
|
| 11 |
--panel-2: #1d0f33;
|
| 12 |
-
--accent: #
|
| 13 |
-
--accent-2: #
|
| 14 |
--text: #ece6ff;
|
| 15 |
--muted: #9a8cc0;
|
| 16 |
--border: #2a1a47;
|
|
@@ -60,8 +60,8 @@
|
|
| 60 |
}
|
| 61 |
.card h2 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
|
| 62 |
.card p { font-size: 13px; color: var(--text); line-height: 1.6; }
|
| 63 |
-
.pill { display:inline-block; font-size:11px; color:var(--accent); background:rgba(
|
| 64 |
-
border:1px solid
|
| 65 |
.terminal-wrap {
|
| 66 |
border: 1px solid var(--border);
|
| 67 |
border-radius: 14px;
|
|
@@ -85,9 +85,10 @@
|
|
| 85 |
</head>
|
| 86 |
<body>
|
| 87 |
<header>
|
| 88 |
-
<span class="logo">
|
| 89 |
<h1>Clawd <span>Computer</span></h1>
|
| 90 |
<div class="spacer"></div>
|
|
|
|
| 91 |
<a class="badge" href="https://huggingface.co/solanaclawd" target="_blank">solanaclawd org β</a>
|
| 92 |
<a class="badge" href="/terminal/" target="_blank">open terminal β</a>
|
| 93 |
</header>
|
|
@@ -95,8 +96,8 @@
|
|
| 95 |
<main>
|
| 96 |
<div class="sidebar">
|
| 97 |
<div class="card">
|
| 98 |
-
<h2>Homebase</h2>
|
| 99 |
-
<p>A real, browser-accessible computer for the Clawd agents β running on Hugging Face Spaces.</p>
|
| 100 |
</div>
|
| 101 |
<div class="card">
|
| 102 |
<h2>Toolbelt</h2>
|
|
@@ -105,32 +106,44 @@
|
|
| 105 |
<span class="pill">git</span><span class="pill">hf cli</span>
|
| 106 |
<span class="pill">jq</span><span class="pill">ripgrep</span>
|
| 107 |
<span class="pill">bash</span><span class="pill">curl</span>
|
|
|
|
| 108 |
</div>
|
| 109 |
</div>
|
| 110 |
<div class="card">
|
| 111 |
<h2>Quick start</h2>
|
| 112 |
<p>In the terminal β<br>
|
| 113 |
<code>hf auth whoami</code><br>
|
| 114 |
-
<code>hf
|
|
|
|
| 115 |
<code>python3 --version</code></p>
|
| 116 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
<div class="card">
|
| 118 |
<h2>Secrets</h2>
|
| 119 |
-
<p>Set <code>HF_TOKEN</code> in <em>Settings β Secrets</em>.
|
| 120 |
</div>
|
| 121 |
</div>
|
| 122 |
|
| 123 |
<div class="terminal-wrap">
|
| 124 |
<div class="term-bar">
|
| 125 |
<span class="dot d1"></span><span class="dot d2"></span><span class="dot d3"></span>
|
| 126 |
-
<span class="title">clawd@
|
| 127 |
</div>
|
| 128 |
<iframe src="/terminal/" title="Clawd Computer terminal"></iframe>
|
| 129 |
</div>
|
| 130 |
</main>
|
| 131 |
|
| 132 |
<footer>
|
| 133 |
-
|
|
|
|
|
|
|
| 134 |
</footer>
|
| 135 |
</body>
|
| 136 |
-
</html>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<title>π¦ Clawd Computer β Solana Agent Homebase</title>
|
| 7 |
<style>
|
| 8 |
:root {
|
| 9 |
--bg: #0a0612;
|
| 10 |
--panel: #150a26;
|
| 11 |
--panel-2: #1d0f33;
|
| 12 |
+
--accent: #14F195;
|
| 13 |
+
--accent-2: #9945FF;
|
| 14 |
--text: #ece6ff;
|
| 15 |
--muted: #9a8cc0;
|
| 16 |
--border: #2a1a47;
|
|
|
|
| 60 |
}
|
| 61 |
.card h2 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
|
| 62 |
.card p { font-size: 13px; color: var(--text); line-height: 1.6; }
|
| 63 |
+
.pill { display:inline-block; font-size:11px; color:var(--accent); background:rgba(20,241,149,0.12);
|
| 64 |
+
border:1px solid rgba(153,69,255,0.4); padding:3px 9px; border-radius:20px; margin:3px 4px 0 0; }
|
| 65 |
.terminal-wrap {
|
| 66 |
border: 1px solid var(--border);
|
| 67 |
border-radius: 14px;
|
|
|
|
| 85 |
</head>
|
| 86 |
<body>
|
| 87 |
<header>
|
| 88 |
+
<span class="logo">π¦</span>
|
| 89 |
<h1>Clawd <span>Computer</span></h1>
|
| 90 |
<div class="spacer"></div>
|
| 91 |
+
<a class="badge" href="https://x402.wtf" target="_blank">x402.wtf β</a>
|
| 92 |
<a class="badge" href="https://huggingface.co/solanaclawd" target="_blank">solanaclawd org β</a>
|
| 93 |
<a class="badge" href="/terminal/" target="_blank">open terminal β</a>
|
| 94 |
</header>
|
|
|
|
| 96 |
<main>
|
| 97 |
<div class="sidebar">
|
| 98 |
<div class="card">
|
| 99 |
+
<h2>π¦ Homebase</h2>
|
| 100 |
+
<p>A real, browser-accessible computer for the Clawd agents β running on Hugging Face Spaces. Part of the <strong>solanaclawd</strong> org.</p>
|
| 101 |
</div>
|
| 102 |
<div class="card">
|
| 103 |
<h2>Toolbelt</h2>
|
|
|
|
| 106 |
<span class="pill">git</span><span class="pill">hf cli</span>
|
| 107 |
<span class="pill">jq</span><span class="pill">ripgrep</span>
|
| 108 |
<span class="pill">bash</span><span class="pill">curl</span>
|
| 109 |
+
<span class="pill">solana</span>
|
| 110 |
</div>
|
| 111 |
</div>
|
| 112 |
<div class="card">
|
| 113 |
<h2>Quick start</h2>
|
| 114 |
<p>In the terminal β<br>
|
| 115 |
<code>hf auth whoami</code><br>
|
| 116 |
+
<code>hf spaces ls --author solanaclawd</code><br>
|
| 117 |
+
<code>curl -s https://x402.wtf/api/agents/catalog | jq '.stats'</code><br>
|
| 118 |
<code>python3 --version</code></p>
|
| 119 |
</div>
|
| 120 |
+
<div class="card">
|
| 121 |
+
<h2>Ecosystem</h2>
|
| 122 |
+
<p>
|
| 123 |
+
<a href="https://x402.wtf" target="_blank">x402.wtf</a> β main site Β· agents Β· gateway Β· skills<br>
|
| 124 |
+
<a href="https://github.com/Solizardking/solana-clawd" target="_blank">Solizardking/solana-clawd</a> β full source (MIT)<br>
|
| 125 |
+
<code style="background:rgba(20,241,149,0.1);padding:2px 6px;border-radius:4px;">$CLAWD: 8cHzQHUS2s2h8TzCmfqPKYiM4dSt4roa3n7MyRLApump</code>
|
| 126 |
+
</p>
|
| 127 |
+
</div>
|
| 128 |
<div class="card">
|
| 129 |
<h2>Secrets</h2>
|
| 130 |
+
<p>Set <code>HF_TOKEN</code> in <em>Space Settings β Secrets</em>. Injected as env var at runtime.</p>
|
| 131 |
</div>
|
| 132 |
</div>
|
| 133 |
|
| 134 |
<div class="terminal-wrap">
|
| 135 |
<div class="term-bar">
|
| 136 |
<span class="dot d1"></span><span class="dot d2"></span><span class="dot d3"></span>
|
| 137 |
+
<span class="title">clawd@sovereign: ~/app β x402.wtf</span>
|
| 138 |
</div>
|
| 139 |
<iframe src="/terminal/" title="Clawd Computer terminal"></iframe>
|
| 140 |
</div>
|
| 141 |
</main>
|
| 142 |
|
| 143 |
<footer>
|
| 144 |
+
π¦ Clawd Computer Β· <a href="https://huggingface.co/solanaclawd">solanaclawd</a> Β·
|
| 145 |
+
<a href="https://x402.wtf">x402.wtf</a> Β·
|
| 146 |
+
<a href="https://github.com/Solizardking/solana-clawd">GitHub</a> Β· MIT
|
| 147 |
</footer>
|
| 148 |
</body>
|
| 149 |
+
</html>
|