create-metaclaw 3.3.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 (92) hide show
  1. package/LICENSE +44 -0
  2. package/README.md +282 -0
  3. package/docs/assets/favicon.png +0 -0
  4. package/docs/assets/metaclaw-banner.svg +86 -0
  5. package/docs/assets/qis-logo.png +0 -0
  6. package/docs/assets/yz-favicon.png +0 -0
  7. package/docs/assets/yz-logo.png +0 -0
  8. package/docs/index.html +895 -0
  9. package/installer/assets/favicon.png +0 -0
  10. package/installer/auto-start.ts +330 -0
  11. package/installer/brand.ts +115 -0
  12. package/installer/core-scaffold.ts +448 -0
  13. package/installer/dashboard-generator.ts +657 -0
  14. package/installer/detect.ts +129 -0
  15. package/installer/index.ts +355 -0
  16. package/installer/module-loader.ts +412 -0
  17. package/installer/modules/boardroom/boardroom/client.ts.txt +201 -0
  18. package/installer/modules/boardroom/boardroom/db.ts.txt +322 -0
  19. package/installer/modules/boardroom/boardroom/meeting-agent.ts.txt +129 -0
  20. package/installer/modules/boardroom/boardroom/meeting-scheduler.ts.txt +194 -0
  21. package/installer/modules/boardroom/boardroom/server.ts.txt +473 -0
  22. package/installer/modules/boardroom/boardroom/start-boardroom.bat.txt +26 -0
  23. package/installer/modules/boardroom/boardroom/summons.ts.txt +76 -0
  24. package/installer/modules/boardroom/boardroom/turn-v2.ts.txt +172 -0
  25. package/installer/modules/boardroom/boardroom/turn.ts.txt +208 -0
  26. package/installer/modules/boardroom/boardroom/types.ts.txt +100 -0
  27. package/installer/modules/boardroom/metaclaw-module.json +35 -0
  28. package/installer/modules/boardroom/scripts/meeting-check.bat.txt +38 -0
  29. package/installer/modules/core/metaclaw-module.json +51 -0
  30. package/installer/modules/core/src/db.ts.txt +277 -0
  31. package/installer/modules/core/src/health-check.ts.txt +128 -0
  32. package/installer/modules/core/src/observability.ts.txt +20 -0
  33. package/installer/modules/core/src/safety.ts.txt +26 -0
  34. package/installer/modules/core/src/scan-capabilities.ts.txt +196 -0
  35. package/installer/modules/core/src/self-improve.ts.txt +48 -0
  36. package/installer/modules/core/src/self-update.ts.txt +345 -0
  37. package/installer/modules/core/src/sync-context.ts.txt +133 -0
  38. package/installer/modules/core/src/tasks.ts.txt +159 -0
  39. package/installer/modules/custom/metaclaw-module.json +15 -0
  40. package/installer/modules/custom/src/agent-custom.ts.txt +100 -0
  41. package/installer/modules/dashboard/metaclaw-module.json +23 -0
  42. package/installer/modules/dashboard/scripts/build-dashboard.cjs.txt +51 -0
  43. package/installer/modules/dashboard/src/update-dashboard.ts.txt +126 -0
  44. package/installer/modules/outreach/metaclaw-module.json +29 -0
  45. package/installer/modules/outreach/src/agent-outreach.ts.txt +193 -0
  46. package/installer/modules/outreach/src/inbox-agent.ts.txt +283 -0
  47. package/installer/modules/outreach/src/morning-report.ts.txt +124 -0
  48. package/installer/modules/research/metaclaw-module.json +15 -0
  49. package/installer/modules/research/src/agent-research.ts.txt +127 -0
  50. package/installer/modules/scheduler/metaclaw-module.json +27 -0
  51. package/installer/modules/scheduler/scripts/agent-cycle.bat.txt +85 -0
  52. package/installer/modules/scheduler/scripts/detect-session.bat.txt +41 -0
  53. package/installer/modules/scheduler/scripts/launch.bat.txt +120 -0
  54. package/installer/modules/scheduler/src/cron-manager.ts.txt +273 -0
  55. package/installer/modules/social/metaclaw-module.json +15 -0
  56. package/installer/modules/social/src/agent-social.ts.txt +110 -0
  57. package/installer/modules/support/metaclaw-module.json +15 -0
  58. package/installer/modules/support/src/agent-support.ts.txt +60 -0
  59. package/installer/modules/swarm/metaclaw-module.json +25 -0
  60. package/installer/modules/swarm/swarm/dht-client.ts.txt +376 -0
  61. package/installer/modules/swarm/swarm/relay-server.ts.txt +348 -0
  62. package/installer/modules/swarm/swarm/swarm-client.ts.txt +303 -0
  63. package/installer/modules/swarm/swarm/types.ts.txt +51 -0
  64. package/installer/modules/voice/metaclaw-module.json +16 -0
  65. package/installer/questionnaire.ts +277 -0
  66. package/installer/research.ts +258 -0
  67. package/installer/scaffold-from-config.ts +270 -0
  68. package/installer/task-generator.ts +324 -0
  69. package/installer/templates/agent-custom.ts.txt +100 -0
  70. package/installer/templates/agent-cycle.bat.txt +19 -0
  71. package/installer/templates/agent-outreach.ts.txt +193 -0
  72. package/installer/templates/agent-research.ts.txt +127 -0
  73. package/installer/templates/agent-social.ts.txt +110 -0
  74. package/installer/templates/agent-support.ts.txt +60 -0
  75. package/installer/templates/build-dashboard.cjs.txt +51 -0
  76. package/installer/templates/cron-manager.ts.txt +273 -0
  77. package/installer/templates/dashboard.html.txt +450 -0
  78. package/installer/templates/db.ts.txt +277 -0
  79. package/installer/templates/detect-session.bat.txt +41 -0
  80. package/installer/templates/health-check.ts.txt +128 -0
  81. package/installer/templates/inbox-agent.ts.txt +283 -0
  82. package/installer/templates/launch.bat.txt +120 -0
  83. package/installer/templates/morning-report.ts.txt +124 -0
  84. package/installer/templates/observability.ts.txt +20 -0
  85. package/installer/templates/safety.ts.txt +26 -0
  86. package/installer/templates/self-improve.ts.txt +48 -0
  87. package/installer/templates/self-update.ts.txt +345 -0
  88. package/installer/templates/state.json.txt +33 -0
  89. package/installer/templates/system-context.json.txt +33 -0
  90. package/installer/templates/update-dashboard.ts.txt +126 -0
  91. package/package.json +31 -0
  92. 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,282 @@
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/metaclaw-banner.svg" alt="MetaClaw" 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/MetaClaw/"><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 MetaClaw?
32
+
33
+ MetaClaw is an **autonomous agent factory**. Pick an agent template, answer a few questions, and MetaClaw 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
+ ║ MetaClaw 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
+ > MetaClaw 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, MetaClaw agents run unlimited on what you're already paying for.
52
+
53
+ ---
54
+
55
+ ## Quick Start
56
+
57
+ ```bash
58
+ # Clone and run — that's it
59
+ git clone https://github.com/YonderZenith/MetaClaw.git
60
+ cd MetaClaw
61
+ npm install
62
+ npm start
63
+ ```
64
+
65
+ Or on Windows — just double-click **`setup.bat`**.
66
+
67
+ The installer handles everything: detects your system, installs prerequisites, walks you through configuration, and deploys your agent.
68
+
69
+ ---
70
+
71
+ ## Agent Types
72
+
73
+ <table>
74
+ <tr>
75
+ <td width="20%" align="center">
76
+ <h3>🎯</h3>
77
+ <strong>Outreach Claw</strong><br/>
78
+ <sub>Email prospecting, follow-ups, auto-reply campaigns</sub>
79
+ </td>
80
+ <td width="20%" align="center">
81
+ <h3>🔬</h3>
82
+ <strong>Research Claw</strong><br/>
83
+ <sub>Deep web research, source synthesis, report generation</sub>
84
+ </td>
85
+ <td width="20%" align="center">
86
+ <h3>🛡️</h3>
87
+ <strong>Support Claw</strong><br/>
88
+ <sub>Inbox monitoring, ticket triage, intelligent auto-response</sub>
89
+ </td>
90
+ <td width="20%" align="center">
91
+ <h3>📡</h3>
92
+ <strong>Social Claw</strong><br/>
93
+ <sub>Content creation, scheduling, engagement tracking</sub>
94
+ </td>
95
+ <td width="20%" align="center">
96
+ <h3>⚡</h3>
97
+ <strong>Custom Claw</strong><br/>
98
+ <sub>Describe what you need — Claude configures it</sub>
99
+ </td>
100
+ </tr>
101
+ </table>
102
+
103
+ ---
104
+
105
+ ## Architecture
106
+
107
+ Every MetaClaw agent is a **self-contained autonomous system** with a file-based brain:
108
+
109
+ ```
110
+ ┌─────────────────────────────────┐
111
+ │ CLAUDE.md │
112
+ │ (Agent Identity + Rules) │
113
+ └────────────┬────────────────────┘
114
+ │ reads on every cycle
115
+ ┌────────────▼────────────────────┐
116
+ │ SOUL.md │
117
+ │ (Constitutional Principles) │
118
+ └────────────┬────────────────────┘
119
+
120
+ ┌──────────────────┼──────────────────┐
121
+ │ │ │
122
+ ┌────────▼───────┐ ┌───────▼────────┐ ┌───────▼───────┐
123
+ │ state.json │ │ tasks.json │ │ memory/ │
124
+ │ (Agent State) │ │ (Task Queue) │ │ (Knowledge) │
125
+ └────────┬───────┘ └───────┬────────┘ └───────┬───────┘
126
+ │ │ │
127
+ └─────────────────┼───────────────────┘
128
+
129
+ ┌───────────▼──────────────┐
130
+ │ agent.ts │
131
+ │ (13-Step Main Loop) │
132
+ │ │
133
+ │ ┌─ health-check.ts │
134
+ │ ├─ safety.ts │
135
+ │ ├─ self-improve.ts │
136
+ │ ├─ db.ts (SQLite) │
137
+ │ └─ cron-manager.ts │
138
+ └───────────┬──────────────┘
139
+
140
+ ┌───────────▼──────────────┐
141
+ │ dashboard.html │
142
+ │ (Real-time Command │
143
+ │ Center + Voice) │
144
+ └──────────────────────────┘
145
+ ```
146
+
147
+ ---
148
+
149
+ ## What Every Agent Gets
150
+
151
+ <table>
152
+ <tr>
153
+ <td>
154
+
155
+ **Core Engine**
156
+ - 13-step autonomous main loop
157
+ - SQLite database (WAL mode, 11 tables)
158
+ - Structured JSONL logging with 30-day rotation
159
+ - Health checks on every cycle
160
+
161
+ </td>
162
+ <td>
163
+
164
+ **Safety First**
165
+ - Circuit breakers with configurable thresholds
166
+ - Rate limiting (daily + hourly caps)
167
+ - Constitutional principles (SOUL.md)
168
+ - Dry-run mode for testing
169
+
170
+ </td>
171
+ </tr>
172
+ <tr>
173
+ <td>
174
+
175
+ **Self-Improvement**
176
+ - Prompt versioning and A/B testing
177
+ - Automatic strategy optimization
178
+ - Performance metrics tracking
179
+ - Logic logging for decision auditing
180
+
181
+ </td>
182
+ <td>
183
+
184
+ **Operations**
185
+ - HTML Command Center with voice control
186
+ - Windows Task Scheduler integration
187
+ - Auto-start on boot
188
+ - Desktop shortcut deployment
189
+
190
+ </td>
191
+ </tr>
192
+ </table>
193
+
194
+ ---
195
+
196
+ ## Generated Agent Structure
197
+
198
+ ```
199
+ my-agent/
200
+ ├── CLAUDE.md # Agent identity, rules, and context
201
+ ├── SOUL.md # Constitutional principles
202
+ ├── dashboard.html # Command Center (open in browser)
203
+ ├── src/
204
+ │ ├── agent.ts # Main 13-step autonomous loop
205
+ │ ├── db.ts # SQLite database layer
206
+ │ ├── safety.ts # Circuit breaker + rate limits
207
+ │ ├── self-improve.ts # Prompt evolution engine
208
+ │ ├── health-check.ts # System validation
209
+ │ └── cron-manager.ts # Scheduled task management
210
+ ├── data/
211
+ │ ├── state.json # Live agent state
212
+ │ ├── tasks.json # Human + AI task tracking
213
+ │ └── logs/ # Structured JSONL logs
214
+ ├── scripts/
215
+ │ ├── launch.bat # Start agent
216
+ │ └── agent-cycle.bat # Autonomous cron cycle
217
+ └── memory/ # Agent knowledge files
218
+ ```
219
+
220
+ ---
221
+
222
+ ## Optional: QIS Intelligence Network
223
+
224
+ <p align="center">
225
+ <img src="docs/assets/qis-logo.png" alt="QIS Protocol" width="120" />
226
+ </p>
227
+
228
+ MetaClaw agents can optionally connect to the **QIS (Quadratic Intelligence Swarm) Network** — a shared knowledge layer where agents deposit and query operational insights.
229
+
230
+ ```
231
+ Agent A ──deposit──▶ ┌──────────────┐ ◀──query── Agent C
232
+ │ QIS Relay │
233
+ Agent B ──deposit──▶ │ (Buckets) │ ◀──query── Agent D
234
+ └──────────────┘
235
+ ```
236
+
237
+ - **No PII** flows through the network — only anonymized operational intelligence
238
+ - All personal data (emails, contacts, transcripts) **stays on your machine**
239
+ - The QIS Intelligence Network is a separate service operated by Yonder Zenith LLC
240
+
241
+ > The QIS Protocol is protected by 39 pending US patent applications.
242
+ > See [QIS Protocol License](https://yonderzenith.github.io/QIS-Protocol-Website/licensing.html) for details.
243
+
244
+ ---
245
+
246
+ ## Requirements
247
+
248
+ | Requirement | Details |
249
+ |------------|---------|
250
+ | **Node.js** | v18 or higher (installer helps you get it) |
251
+ | **Claude Code CLI** | Installed globally (installer helps you get it) |
252
+ | **Claude Access** | Claude Max or Pro subscription required (or Anthropic API key) |
253
+ | **OS** | Windows 10/11 (macOS/Linux support coming) |
254
+
255
+ ---
256
+
257
+ ## Commands
258
+
259
+ ```bash
260
+ npm start # Launch installer / start agent
261
+ npm run dry-run # Test without taking actions
262
+ npm run status # Check agent status
263
+ npm run dashboard # Regenerate dashboard
264
+ npm run health-check # Run system validation
265
+ npm run self-update # Trigger self-optimization
266
+ ```
267
+
268
+ ---
269
+
270
+ ## License
271
+
272
+ MetaClaw is released under the **[MIT License](LICENSE)** — use it, modify it, build on it.
273
+
274
+ The optional QIS Intelligence Network is a separately licensed service by Yonder Zenith LLC.
275
+
276
+ ---
277
+
278
+ <p align="center">
279
+ <img src="docs/assets/yz-favicon.png" alt="YZ" width="32" /><br/>
280
+ <sub>Built by <a href="https://yonderzenith.github.io/QIS-Protocol-Website/"><strong>Yonder Zenith LLC</strong></a></sub><br/>
281
+ <sub><em>Redefining the Horizon</em></sub>
282
+ </p>
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