create-yonderclaw 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +44 -0
  2. package/README.md +288 -0
  3. package/bin/create-yonderclaw.mjs +43 -0
  4. package/docs/assets/favicon.png +0 -0
  5. package/docs/assets/metaclaw-banner.svg +86 -0
  6. package/docs/assets/qis-logo.png +0 -0
  7. package/docs/assets/yz-favicon.png +0 -0
  8. package/docs/assets/yz-logo.png +0 -0
  9. package/docs/index.html +1155 -0
  10. package/installer/assets/favicon.png +0 -0
  11. package/installer/auto-start.ts +330 -0
  12. package/installer/brand.ts +115 -0
  13. package/installer/core-scaffold.ts +448 -0
  14. package/installer/dashboard-generator.ts +657 -0
  15. package/installer/detect.ts +129 -0
  16. package/installer/index.ts +355 -0
  17. package/installer/module-loader.ts +412 -0
  18. package/installer/modules/boardroom/boardroom/client.ts.txt +201 -0
  19. package/installer/modules/boardroom/boardroom/db.ts.txt +322 -0
  20. package/installer/modules/boardroom/boardroom/meeting-agent.ts.txt +129 -0
  21. package/installer/modules/boardroom/boardroom/meeting-scheduler.ts.txt +194 -0
  22. package/installer/modules/boardroom/boardroom/server.ts.txt +473 -0
  23. package/installer/modules/boardroom/boardroom/start-boardroom.bat.txt +26 -0
  24. package/installer/modules/boardroom/boardroom/summons.ts.txt +76 -0
  25. package/installer/modules/boardroom/boardroom/turn-v2.ts.txt +172 -0
  26. package/installer/modules/boardroom/boardroom/turn.ts.txt +208 -0
  27. package/installer/modules/boardroom/boardroom/types.ts.txt +100 -0
  28. package/installer/modules/boardroom/metaclaw-module.json +35 -0
  29. package/installer/modules/boardroom/scripts/meeting-check.bat.txt +38 -0
  30. package/installer/modules/core/metaclaw-module.json +51 -0
  31. package/installer/modules/core/src/db.ts.txt +277 -0
  32. package/installer/modules/core/src/health-check.ts.txt +128 -0
  33. package/installer/modules/core/src/observability.ts.txt +20 -0
  34. package/installer/modules/core/src/safety.ts.txt +26 -0
  35. package/installer/modules/core/src/scan-capabilities.ts.txt +196 -0
  36. package/installer/modules/core/src/self-improve.ts.txt +48 -0
  37. package/installer/modules/core/src/self-update.ts.txt +345 -0
  38. package/installer/modules/core/src/sync-context.ts.txt +133 -0
  39. package/installer/modules/core/src/tasks.ts.txt +159 -0
  40. package/installer/modules/custom/metaclaw-module.json +15 -0
  41. package/installer/modules/custom/src/agent-custom.ts.txt +100 -0
  42. package/installer/modules/dashboard/metaclaw-module.json +23 -0
  43. package/installer/modules/dashboard/scripts/build-dashboard.cjs.txt +51 -0
  44. package/installer/modules/dashboard/src/update-dashboard.ts.txt +126 -0
  45. package/installer/modules/outreach/metaclaw-module.json +29 -0
  46. package/installer/modules/outreach/src/agent-outreach.ts.txt +193 -0
  47. package/installer/modules/outreach/src/inbox-agent.ts.txt +283 -0
  48. package/installer/modules/outreach/src/morning-report.ts.txt +124 -0
  49. package/installer/modules/research/metaclaw-module.json +15 -0
  50. package/installer/modules/research/src/agent-research.ts.txt +127 -0
  51. package/installer/modules/scheduler/metaclaw-module.json +27 -0
  52. package/installer/modules/scheduler/scripts/agent-cycle.bat.txt +85 -0
  53. package/installer/modules/scheduler/scripts/detect-session.bat.txt +41 -0
  54. package/installer/modules/scheduler/scripts/launch.bat.txt +120 -0
  55. package/installer/modules/scheduler/src/cron-manager.ts.txt +273 -0
  56. package/installer/modules/social/metaclaw-module.json +15 -0
  57. package/installer/modules/social/src/agent-social.ts.txt +110 -0
  58. package/installer/modules/support/metaclaw-module.json +15 -0
  59. package/installer/modules/support/src/agent-support.ts.txt +60 -0
  60. package/installer/modules/swarm/metaclaw-module.json +25 -0
  61. package/installer/modules/swarm/swarm/dht-client.ts.txt +376 -0
  62. package/installer/modules/swarm/swarm/relay-server.ts.txt +348 -0
  63. package/installer/modules/swarm/swarm/swarm-client.ts.txt +303 -0
  64. package/installer/modules/swarm/swarm/types.ts.txt +51 -0
  65. package/installer/modules/voice/metaclaw-module.json +16 -0
  66. package/installer/questionnaire.ts +277 -0
  67. package/installer/research.ts +258 -0
  68. package/installer/scaffold-from-config.ts +270 -0
  69. package/installer/task-generator.ts +324 -0
  70. package/installer/templates/agent-custom.ts.txt +100 -0
  71. package/installer/templates/agent-cycle.bat.txt +19 -0
  72. package/installer/templates/agent-outreach.ts.txt +193 -0
  73. package/installer/templates/agent-research.ts.txt +127 -0
  74. package/installer/templates/agent-social.ts.txt +110 -0
  75. package/installer/templates/agent-support.ts.txt +60 -0
  76. package/installer/templates/build-dashboard.cjs.txt +51 -0
  77. package/installer/templates/cron-manager.ts.txt +273 -0
  78. package/installer/templates/dashboard.html.txt +450 -0
  79. package/installer/templates/db.ts.txt +277 -0
  80. package/installer/templates/detect-session.bat.txt +41 -0
  81. package/installer/templates/health-check.ts.txt +128 -0
  82. package/installer/templates/inbox-agent.ts.txt +283 -0
  83. package/installer/templates/launch.bat.txt +120 -0
  84. package/installer/templates/morning-report.ts.txt +124 -0
  85. package/installer/templates/observability.ts.txt +20 -0
  86. package/installer/templates/safety.ts.txt +26 -0
  87. package/installer/templates/self-improve.ts.txt +48 -0
  88. package/installer/templates/self-update.ts.txt +345 -0
  89. package/installer/templates/state.json.txt +33 -0
  90. package/installer/templates/system-context.json.txt +33 -0
  91. package/installer/templates/update-dashboard.ts.txt +126 -0
  92. package/package.json +31 -0
  93. package/setup.bat +178 -0
package/LICENSE ADDED
@@ -0,0 +1,44 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Yonder Zenith LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ NOTICE REGARDING QIS PROTOCOL
26
+
27
+ MetaClaw includes optional integration with the QIS (Quadratic Intelligence
28
+ Swarm) Network, a service operated by Yonder Zenith LLC. The QIS
29
+ Protocol is separately licensed and protected by 39 pending US patent
30
+ applications covering distributed pattern synthesis methods.
31
+
32
+ Use of the QIS Intelligence Network relay is governed by the QIS Protocol
33
+ License v1.0, available at:
34
+ https://yonderzenith.github.io/QIS-Protocol-Website/licensing.html
35
+
36
+ The MIT License above applies to the MetaClaw installer and agent framework
37
+ code only. It does not grant any rights under the QIS Protocol License or
38
+ any associated patent rights.
39
+
40
+ MetaClaw agents may connect to the QIS relay as end users of the service.
41
+ Implementing, replicating, or reverse-engineering the QIS Protocol routing
42
+ methods requires a separate license from Yonder Zenith LLC.
43
+
44
+ Contact: contactyz@pm.me
package/README.md ADDED
@@ -0,0 +1,288 @@
1
+ <p align="center">
2
+ <img src="docs/assets/yz-logo.png" alt="Yonder Zenith" width="200" />
3
+ </p>
4
+
5
+ <p align="center">
6
+ <img src="docs/assets/yonderclaw-banner.svg" alt="YonderClaw" width="700" />
7
+ </p>
8
+
9
+ <p align="center">
10
+ <strong>Autonomous AI Agents — Plug & Play</strong><br/>
11
+ <em>Deploy self-improving AI agents in minutes, not months.</em>
12
+ </p>
13
+
14
+ <p align="center">
15
+ <a href="#quick-start"><img src="https://img.shields.io/badge/get_started-00BEEA?style=for-the-badge&logo=rocket&logoColor=white" alt="Get Started" /></a>
16
+ <a href="https://yonderzenith.github.io/YonderClaw/"><img src="https://img.shields.io/badge/docs-00D9FF?style=for-the-badge&logo=readthedocs&logoColor=white" alt="Docs" /></a>
17
+ <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-10B981?style=for-the-badge" alt="MIT License" /></a>
18
+ <img src="https://img.shields.io/badge/version-3.3.0-FFD700?style=for-the-badge" alt="Version 3.3.0" />
19
+ </p>
20
+
21
+ <p align="center">
22
+ <img src="https://img.shields.io/badge/node-18+-339933?style=flat-square&logo=node.js&logoColor=white" />
23
+ <img src="https://img.shields.io/badge/claude_code-CLI-00BEEA?style=flat-square&logo=anthropic&logoColor=white" />
24
+ <img src="https://img.shields.io/badge/platform-Windows-0078D6?style=flat-square&logo=windows&logoColor=white" />
25
+ <img src="https://img.shields.io/badge/database-SQLite-003B57?style=flat-square&logo=sqlite&logoColor=white" />
26
+ <img src="https://img.shields.io/badge/self--improving-yes-FFD700?style=flat-square" />
27
+ </p>
28
+
29
+ ---
30
+
31
+ ## What is YonderClaw?
32
+
33
+ YonderClaw is an **autonomous agent factory**. Pick an agent template, answer a few questions, and YonderClaw researches best practices, scaffolds the entire project, configures safety guardrails, builds a real-time dashboard, and launches your agent — all automatically.
34
+
35
+ Your agents don't just run. They **learn, adapt, and improve themselves** through prompt versioning, A/B testing, and automatic optimization — governed by constitutional principles you define.
36
+
37
+ ```
38
+ ╔══════════════════════════════════════════════════════════════╗
39
+ ║ ║
40
+ ║ You describe what you need. ║
41
+ ║ YonderClaw builds the agent. ║
42
+ ║ The agent improves itself. ║
43
+ ║ ║
44
+ ╚══════════════════════════════════════════════════════════════╝
45
+ ```
46
+
47
+ ### Built on Claude Code — Runs on Your Max/Pro Subscription
48
+
49
+ > **No API keys. No per-token billing. No surprise invoices.**
50
+ >
51
+ > YonderClaw is powered by **Claude Code CLI**, which means your agents run on your existing **Claude Max or Pro subscription** at a flat monthly rate. While other agent frameworks rack up per-token API costs, YonderClaw agents run unlimited on what you're already paying for.
52
+
53
+ ---
54
+
55
+ ## Quick Start
56
+
57
+ ```bash
58
+ # One command — that's it
59
+ npx create-yonderclaw
60
+ ```
61
+
62
+ Or clone the repo:
63
+
64
+ ```bash
65
+ git clone https://github.com/YonderZenith/YonderClaw.git
66
+ cd YonderClaw
67
+ npm install
68
+ npm start
69
+ ```
70
+
71
+ Or on Windows — just double-click **`setup.bat`**.
72
+
73
+ The installer handles everything: detects your system, installs prerequisites, walks you through configuration, and deploys your agent.
74
+
75
+ ---
76
+
77
+ ## Agent Types
78
+
79
+ <table>
80
+ <tr>
81
+ <td width="20%" align="center">
82
+ <h3>🎯</h3>
83
+ <strong>Outreach Claw</strong><br/>
84
+ <sub>Email prospecting, follow-ups, auto-reply campaigns</sub>
85
+ </td>
86
+ <td width="20%" align="center">
87
+ <h3>🔬</h3>
88
+ <strong>Research Claw</strong><br/>
89
+ <sub>Deep web research, source synthesis, report generation</sub>
90
+ </td>
91
+ <td width="20%" align="center">
92
+ <h3>🛡️</h3>
93
+ <strong>Support Claw</strong><br/>
94
+ <sub>Inbox monitoring, ticket triage, intelligent auto-response</sub>
95
+ </td>
96
+ <td width="20%" align="center">
97
+ <h3>📡</h3>
98
+ <strong>Social Claw</strong><br/>
99
+ <sub>Content creation, scheduling, engagement tracking</sub>
100
+ </td>
101
+ <td width="20%" align="center">
102
+ <h3>⚡</h3>
103
+ <strong>Custom Claw</strong><br/>
104
+ <sub>Describe what you need — Claude configures it</sub>
105
+ </td>
106
+ </tr>
107
+ </table>
108
+
109
+ ---
110
+
111
+ ## Architecture
112
+
113
+ Every YonderClaw agent is a **self-contained autonomous system** with a file-based brain:
114
+
115
+ ```
116
+ ┌─────────────────────────────────┐
117
+ │ CLAUDE.md │
118
+ │ (Agent Identity + Rules) │
119
+ └────────────┬────────────────────┘
120
+ │ reads on every cycle
121
+ ┌────────────▼────────────────────┐
122
+ │ SOUL.md │
123
+ │ (Constitutional Principles) │
124
+ └────────────┬────────────────────┘
125
+
126
+ ┌──────────────────┼──────────────────┐
127
+ │ │ │
128
+ ┌────────▼───────┐ ┌───────▼────────┐ ┌───────▼───────┐
129
+ │ state.json │ │ tasks.json │ │ memory/ │
130
+ │ (Agent State) │ │ (Task Queue) │ │ (Knowledge) │
131
+ └────────┬───────┘ └───────┬────────┘ └───────┬───────┘
132
+ │ │ │
133
+ └─────────────────┼───────────────────┘
134
+
135
+ ┌───────────▼──────────────┐
136
+ │ agent.ts │
137
+ │ (13-Step Main Loop) │
138
+ │ │
139
+ │ ┌─ health-check.ts │
140
+ │ ├─ safety.ts │
141
+ │ ├─ self-improve.ts │
142
+ │ ├─ db.ts (SQLite) │
143
+ │ └─ cron-manager.ts │
144
+ └───────────┬──────────────┘
145
+
146
+ ┌───────────▼──────────────┐
147
+ │ dashboard.html │
148
+ │ (Real-time Command │
149
+ │ Center + Voice) │
150
+ └──────────────────────────┘
151
+ ```
152
+
153
+ ---
154
+
155
+ ## What Every Agent Gets
156
+
157
+ <table>
158
+ <tr>
159
+ <td>
160
+
161
+ **Core Engine**
162
+ - 13-step autonomous main loop
163
+ - SQLite database (WAL mode, 11 tables)
164
+ - Structured JSONL logging with 30-day rotation
165
+ - Health checks on every cycle
166
+
167
+ </td>
168
+ <td>
169
+
170
+ **Safety First**
171
+ - Circuit breakers with configurable thresholds
172
+ - Rate limiting (daily + hourly caps)
173
+ - Constitutional principles (SOUL.md)
174
+ - Dry-run mode for testing
175
+
176
+ </td>
177
+ </tr>
178
+ <tr>
179
+ <td>
180
+
181
+ **Self-Improvement**
182
+ - Prompt versioning and A/B testing
183
+ - Automatic strategy optimization
184
+ - Performance metrics tracking
185
+ - Logic logging for decision auditing
186
+
187
+ </td>
188
+ <td>
189
+
190
+ **Operations**
191
+ - HTML Command Center with voice control
192
+ - Windows Task Scheduler integration
193
+ - Auto-start on boot
194
+ - Desktop shortcut deployment
195
+
196
+ </td>
197
+ </tr>
198
+ </table>
199
+
200
+ ---
201
+
202
+ ## Generated Agent Structure
203
+
204
+ ```
205
+ my-agent/
206
+ ├── CLAUDE.md # Agent identity, rules, and context
207
+ ├── SOUL.md # Constitutional principles
208
+ ├── dashboard.html # Command Center (open in browser)
209
+ ├── src/
210
+ │ ├── agent.ts # Main 13-step autonomous loop
211
+ │ ├── db.ts # SQLite database layer
212
+ │ ├── safety.ts # Circuit breaker + rate limits
213
+ │ ├── self-improve.ts # Prompt evolution engine
214
+ │ ├── health-check.ts # System validation
215
+ │ └── cron-manager.ts # Scheduled task management
216
+ ├── data/
217
+ │ ├── state.json # Live agent state
218
+ │ ├── tasks.json # Human + AI task tracking
219
+ │ └── logs/ # Structured JSONL logs
220
+ ├── scripts/
221
+ │ ├── launch.bat # Start agent
222
+ │ └── agent-cycle.bat # Autonomous cron cycle
223
+ └── memory/ # Agent knowledge files
224
+ ```
225
+
226
+ ---
227
+
228
+ ## Optional: QIS Intelligence Network
229
+
230
+ <p align="center">
231
+ <img src="docs/assets/qis-logo.png" alt="QIS Protocol" width="120" />
232
+ </p>
233
+
234
+ YonderClaw agents can optionally connect to the **QIS (Quadratic Intelligence Swarm) Network** — a shared knowledge layer where agents deposit and query operational insights.
235
+
236
+ ```
237
+ Agent A ──deposit──▶ ┌──────────────┐ ◀──query── Agent C
238
+ │ QIS Relay │
239
+ Agent B ──deposit──▶ │ (Buckets) │ ◀──query── Agent D
240
+ └──────────────┘
241
+ ```
242
+
243
+ - **No PII** flows through the network — only anonymized operational intelligence
244
+ - All personal data (emails, contacts, transcripts) **stays on your machine**
245
+ - The QIS Intelligence Network is a separate service operated by Yonder Zenith LLC
246
+
247
+ > The QIS Protocol is protected by 39 pending US patent applications.
248
+ > See [QIS Protocol License](https://yonderzenith.github.io/QIS-Protocol-Website/licensing.html) for details.
249
+
250
+ ---
251
+
252
+ ## Requirements
253
+
254
+ | Requirement | Details |
255
+ |------------|---------|
256
+ | **Node.js** | v18 or higher (installer helps you get it) |
257
+ | **Claude Code CLI** | Installed globally (installer helps you get it) |
258
+ | **Claude Access** | Claude Max or Pro subscription required (or Anthropic API key) |
259
+ | **OS** | Windows 10/11 (macOS/Linux support coming) |
260
+
261
+ ---
262
+
263
+ ## Commands
264
+
265
+ ```bash
266
+ npm start # Launch installer / start agent
267
+ npm run dry-run # Test without taking actions
268
+ npm run status # Check agent status
269
+ npm run dashboard # Regenerate dashboard
270
+ npm run health-check # Run system validation
271
+ npm run self-update # Trigger self-optimization
272
+ ```
273
+
274
+ ---
275
+
276
+ ## License
277
+
278
+ YonderClaw is released under the **[MIT License](LICENSE)** — use it, modify it, build on it.
279
+
280
+ The optional QIS Intelligence Network is a separately licensed service by Yonder Zenith LLC.
281
+
282
+ ---
283
+
284
+ <p align="center">
285
+ <img src="docs/assets/yz-favicon.png" alt="YZ" width="32" /><br/>
286
+ <sub>Built by <a href="https://yonderzenith.github.io/QIS-Protocol-Website/"><strong>Yonder Zenith LLC</strong></a></sub><br/>
287
+ <sub><em>Redefining the Horizon</em></sub>
288
+ </p>
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env node
2
+ import { execFileSync } from "child_process";
3
+ import { fileURLToPath } from "url";
4
+ import { dirname, join } from "path";
5
+ import { existsSync } from "fs";
6
+
7
+ const __dirname = dirname(fileURLToPath(import.meta.url));
8
+ const root = join(__dirname, "..");
9
+ const entry = join(root, "installer", "index.ts");
10
+
11
+ // Find tsx binary — check own node_modules, parent (npm flattened), and up
12
+ const search = [
13
+ join(root, "node_modules", ".bin"),
14
+ join(root, "..", ".bin"),
15
+ join(root, "..", "..", ".bin"),
16
+ ];
17
+
18
+ let tsxBin = null;
19
+ for (const dir of search) {
20
+ const cmd = join(dir, process.platform === "win32" ? "tsx.cmd" : "tsx");
21
+ if (existsSync(cmd)) { tsxBin = cmd; break; }
22
+ }
23
+
24
+ if (!tsxBin) {
25
+ // Last resort: try npx cache location
26
+ const npxCache = join(root, "..", "..", "node_modules", ".bin", process.platform === "win32" ? "tsx.cmd" : "tsx");
27
+ if (existsSync(npxCache)) tsxBin = npxCache;
28
+ }
29
+
30
+ if (!tsxBin) {
31
+ console.error("Error: Could not find tsx. Install YonderClaw via: git clone + npm install + npm start");
32
+ process.exit(1);
33
+ }
34
+
35
+ try {
36
+ execFileSync(tsxBin, [entry], {
37
+ stdio: "inherit",
38
+ cwd: root,
39
+ shell: tsxBin.endsWith(".cmd"),
40
+ });
41
+ } catch (e) {
42
+ process.exit(e.status || 1);
43
+ }
Binary file
@@ -0,0 +1,86 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 180">
2
+ <defs>
3
+ <linearGradient id="cyanGrad" x1="0%" y1="0%" x2="100%" y2="0%">
4
+ <stop offset="0%" style="stop-color:#00BEEA;stop-opacity:1" />
5
+ <stop offset="50%" style="stop-color:#00D9FF;stop-opacity:1" />
6
+ <stop offset="100%" style="stop-color:#00BEEA;stop-opacity:1" />
7
+ </linearGradient>
8
+ <linearGradient id="goldGrad" x1="0%" y1="0%" x2="100%" y2="0%">
9
+ <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
10
+ <stop offset="100%" style="stop-color:#00BEEA;stop-opacity:1" />
11
+ </linearGradient>
12
+ <filter id="glow">
13
+ <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
14
+ <feMerge>
15
+ <feMergeNode in="coloredBlur"/>
16
+ <feMergeNode in="SourceGraphic"/>
17
+ </feMerge>
18
+ </filter>
19
+ <filter id="softGlow">
20
+ <feGaussianBlur stdDeviation="8" result="coloredBlur"/>
21
+ <feMerge>
22
+ <feMergeNode in="coloredBlur"/>
23
+ <feMergeNode in="SourceGraphic"/>
24
+ </feMerge>
25
+ </filter>
26
+ </defs>
27
+
28
+ <!-- Background -->
29
+ <rect width="700" height="180" fill="#0a0e17" rx="12"/>
30
+
31
+ <!-- Subtle grid lines -->
32
+ <g opacity="0.05" stroke="#00BEEA">
33
+ <line x1="0" y1="45" x2="700" y2="45"/>
34
+ <line x1="0" y1="90" x2="700" y2="90"/>
35
+ <line x1="0" y1="135" x2="700" y2="135"/>
36
+ <line x1="175" y1="0" x2="175" y2="180"/>
37
+ <line x1="350" y1="0" x2="350" y2="180"/>
38
+ <line x1="525" y1="0" x2="525" y2="180"/>
39
+ </g>
40
+
41
+ <!-- Decorative nodes -->
42
+ <circle cx="80" cy="40" r="3" fill="#00BEEA" opacity="0.3" filter="url(#softGlow)"/>
43
+ <circle cx="620" cy="140" r="3" fill="#00BEEA" opacity="0.3" filter="url(#softGlow)"/>
44
+ <circle cx="150" cy="150" r="2" fill="#00D9FF" opacity="0.2"/>
45
+ <circle cx="550" cy="30" r="2" fill="#00D9FF" opacity="0.2"/>
46
+ <circle cx="650" cy="60" r="2" fill="#FFD700" opacity="0.15"/>
47
+ <circle cx="50" cy="120" r="2" fill="#FFD700" opacity="0.15"/>
48
+
49
+ <!-- Decorative connection lines -->
50
+ <line x1="80" y1="40" x2="150" y2="70" stroke="#00BEEA" stroke-width="0.5" opacity="0.1"/>
51
+ <line x1="550" y1="30" x2="620" y2="60" stroke="#00BEEA" stroke-width="0.5" opacity="0.1"/>
52
+ <line x1="550" y1="140" x2="620" y2="140" stroke="#00D9FF" stroke-width="0.5" opacity="0.1"/>
53
+
54
+ <!-- Claw icon -->
55
+ <g transform="translate(115, 55)" filter="url(#glow)">
56
+ <path d="M0 35 Q5 0 20 10 Q25 20 20 35" fill="none" stroke="url(#cyanGrad)" stroke-width="2.5" stroke-linecap="round"/>
57
+ <path d="M15 30 Q20 -5 35 5 Q40 15 35 35" fill="none" stroke="url(#cyanGrad)" stroke-width="2.5" stroke-linecap="round"/>
58
+ <path d="M30 30 Q35 0 50 10 Q55 20 50 35" fill="none" stroke="url(#cyanGrad)" stroke-width="2.5" stroke-linecap="round"/>
59
+ <!-- Palm arc -->
60
+ <path d="M5 35 Q25 55 45 35" fill="none" stroke="url(#goldGrad)" stroke-width="2" stroke-linecap="round"/>
61
+ </g>
62
+
63
+ <!-- Main title -->
64
+ <text x="185" y="95" font-family="'Segoe UI', system-ui, -apple-system, sans-serif" font-size="56" font-weight="700" fill="url(#cyanGrad)" filter="url(#glow)" letter-spacing="-1">
65
+ MetaClaw
66
+ </text>
67
+
68
+ <!-- Version badge -->
69
+ <rect x="470" y="70" width="70" height="24" rx="12" fill="#FFD700" opacity="0.15"/>
70
+ <rect x="470" y="70" width="70" height="24" rx="12" fill="none" stroke="#FFD700" stroke-width="1" opacity="0.4"/>
71
+ <text x="505" y="87" font-family="'Segoe UI', system-ui, sans-serif" font-size="12" font-weight="600" fill="#FFD700" text-anchor="middle">v3.3.0</text>
72
+
73
+ <!-- Tagline -->
74
+ <text x="188" y="125" font-family="'Segoe UI', system-ui, sans-serif" font-size="16" fill="#7F8C8D" letter-spacing="3">
75
+ AUTONOMOUS AI AGENTS
76
+ </text>
77
+
78
+ <!-- Bottom accent line -->
79
+ <rect x="185" y="140" width="120" height="2" rx="1" fill="url(#cyanGrad)" opacity="0.6"/>
80
+ <rect x="315" y="140" width="40" height="2" rx="1" fill="url(#goldGrad)" opacity="0.4"/>
81
+
82
+ <!-- Yonder Zenith -->
83
+ <text x="188" y="165" font-family="'Segoe UI', system-ui, sans-serif" font-size="11" fill="#7F8C8D" opacity="0.6">
84
+ by Yonder Zenith LLC
85
+ </text>
86
+ </svg>
Binary file
Binary file
Binary file