web-agent-bridge 3.2.0 → 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 (202) hide show
  1. package/LICENSE +72 -72
  2. package/README.ar.md +1286 -1152
  3. package/README.md +1764 -1635
  4. package/bin/agent-runner.js +474 -474
  5. package/bin/cli.js +237 -138
  6. package/bin/wab.js +80 -80
  7. package/examples/bidi-agent.js +119 -119
  8. package/examples/cross-site-agent.js +91 -91
  9. package/examples/mcp-agent.js +94 -94
  10. package/examples/next-app-router/README.md +44 -44
  11. package/examples/puppeteer-agent.js +108 -108
  12. package/examples/saas-dashboard/README.md +55 -55
  13. package/examples/shopify-hydrogen/README.md +74 -74
  14. package/examples/vision-agent.js +171 -171
  15. package/examples/wordpress-elementor/README.md +77 -77
  16. package/package.json +16 -3
  17. package/public/.well-known/agent-tools.json +180 -180
  18. package/public/.well-known/ai-assets.json +59 -59
  19. package/public/.well-known/security.txt +8 -0
  20. package/public/agent-workspace.html +349 -349
  21. package/public/ai.html +198 -198
  22. package/public/api.html +413 -412
  23. package/public/browser.html +486 -486
  24. package/public/commander-dashboard.html +243 -243
  25. package/public/cookies.html +210 -210
  26. package/public/css/agent-workspace.css +1713 -1713
  27. package/public/css/premium.css +317 -317
  28. package/public/css/styles.css +1235 -1235
  29. package/public/dashboard.html +706 -706
  30. package/public/dns.html +507 -0
  31. package/public/docs.html +587 -587
  32. package/public/feed.xml +89 -89
  33. package/public/growth.html +463 -463
  34. package/public/index.html +1070 -982
  35. package/public/integrations.html +556 -0
  36. package/public/js/agent-workspace.js +1740 -1740
  37. package/public/js/auth-nav.js +31 -31
  38. package/public/js/auth-redirect.js +12 -12
  39. package/public/js/cookie-consent.js +56 -56
  40. package/public/js/wab-demo-page.js +721 -721
  41. package/public/js/ws-client.js +74 -74
  42. package/public/llms-full.txt +360 -360
  43. package/public/llms.txt +125 -125
  44. package/public/login.html +85 -85
  45. package/public/mesh-dashboard.html +328 -328
  46. package/public/openapi.json +580 -580
  47. package/public/phone-shield.html +281 -0
  48. package/public/premium-dashboard.html +2489 -2489
  49. package/public/premium.html +793 -793
  50. package/public/privacy.html +297 -297
  51. package/public/register.html +105 -105
  52. package/public/robots.txt +87 -87
  53. package/public/script/wab-consent.d.ts +36 -36
  54. package/public/script/wab-consent.js +104 -104
  55. package/public/script/wab-schema.js +131 -131
  56. package/public/script/wab.d.ts +108 -108
  57. package/public/script/wab.min.js +580 -580
  58. package/public/security.txt +8 -0
  59. package/public/terms.html +256 -256
  60. package/script/ai-agent-bridge.js +1754 -1754
  61. package/sdk/README.md +99 -99
  62. package/sdk/agent-mesh.js +449 -449
  63. package/sdk/commander.js +262 -262
  64. package/sdk/index.d.ts +464 -464
  65. package/sdk/index.js +12 -1
  66. package/sdk/multi-agent.js +318 -318
  67. package/sdk/package.json +1 -1
  68. package/sdk/safety-shield.js +219 -0
  69. package/sdk/schema-discovery.js +83 -83
  70. package/server/adapters/index.js +520 -520
  71. package/server/config/plans.js +367 -367
  72. package/server/config/secrets.js +102 -102
  73. package/server/control-plane/index.js +301 -301
  74. package/server/data-plane/index.js +354 -354
  75. package/server/index.js +531 -427
  76. package/server/llm/index.js +404 -404
  77. package/server/middleware/adminAuth.js +35 -35
  78. package/server/middleware/auth.js +50 -50
  79. package/server/middleware/featureGate.js +88 -88
  80. package/server/middleware/rateLimits.js +100 -100
  81. package/server/middleware/sensitiveAction.js +157 -0
  82. package/server/migrations/001_add_analytics_indexes.sql +7 -7
  83. package/server/migrations/002_premium_features.sql +418 -418
  84. package/server/migrations/003_ads_integer_cents.sql +33 -33
  85. package/server/migrations/004_agent_os.sql +158 -158
  86. package/server/migrations/005_marketplace_metering.sql +126 -126
  87. package/server/models/adapters/index.js +33 -33
  88. package/server/models/adapters/mysql.js +183 -183
  89. package/server/models/adapters/postgresql.js +172 -172
  90. package/server/models/adapters/sqlite.js +7 -7
  91. package/server/models/db.js +681 -681
  92. package/server/observability/failure-analysis.js +337 -337
  93. package/server/observability/index.js +394 -394
  94. package/server/protocol/capabilities.js +223 -223
  95. package/server/protocol/index.js +243 -243
  96. package/server/protocol/schema.js +584 -584
  97. package/server/registry/certification.js +271 -271
  98. package/server/registry/index.js +326 -326
  99. package/server/routes/admin-premium.js +671 -671
  100. package/server/routes/admin.js +261 -261
  101. package/server/routes/ads.js +130 -130
  102. package/server/routes/agent-workspace.js +540 -540
  103. package/server/routes/api.js +150 -150
  104. package/server/routes/auth.js +71 -71
  105. package/server/routes/billing.js +45 -45
  106. package/server/routes/commander.js +316 -316
  107. package/server/routes/demo-showcase.js +332 -332
  108. package/server/routes/demo-store.js +154 -0
  109. package/server/routes/discovery.js +417 -417
  110. package/server/routes/gateway.js +173 -157
  111. package/server/routes/license.js +251 -240
  112. package/server/routes/mesh.js +469 -469
  113. package/server/routes/noscript.js +543 -543
  114. package/server/routes/premium-v2.js +686 -686
  115. package/server/routes/premium.js +724 -724
  116. package/server/routes/runtime.js +2148 -2147
  117. package/server/routes/sovereign.js +465 -385
  118. package/server/routes/universal.js +200 -185
  119. package/server/routes/wab-api.js +850 -501
  120. package/server/runtime/container-worker.js +111 -111
  121. package/server/runtime/container.js +448 -448
  122. package/server/runtime/distributed-worker.js +362 -362
  123. package/server/runtime/event-bus.js +210 -210
  124. package/server/runtime/index.js +253 -253
  125. package/server/runtime/queue.js +599 -599
  126. package/server/runtime/replay.js +666 -666
  127. package/server/runtime/sandbox.js +266 -266
  128. package/server/runtime/scheduler.js +534 -534
  129. package/server/runtime/session-engine.js +293 -293
  130. package/server/runtime/state-manager.js +188 -188
  131. package/server/security/cross-site-redactor.js +196 -0
  132. package/server/security/dry-run.js +180 -0
  133. package/server/security/human-gate-rate-limit.js +147 -0
  134. package/server/security/human-gate-transports.js +178 -0
  135. package/server/security/human-gate.js +281 -0
  136. package/server/security/index.js +368 -368
  137. package/server/security/intent-engine.js +245 -0
  138. package/server/security/reward-guard.js +171 -0
  139. package/server/security/rollback-store.js +239 -0
  140. package/server/security/token-scope.js +404 -0
  141. package/server/security/url-policy.js +139 -0
  142. package/server/services/agent-chat.js +506 -506
  143. package/server/services/agent-learning.js +601 -575
  144. package/server/services/agent-memory.js +625 -625
  145. package/server/services/agent-mesh.js +555 -539
  146. package/server/services/agent-symphony.js +717 -717
  147. package/server/services/agent-tasks.js +1807 -1807
  148. package/server/services/api-key-engine.js +292 -261
  149. package/server/services/cluster.js +894 -894
  150. package/server/services/commander.js +738 -738
  151. package/server/services/edge-compute.js +440 -440
  152. package/server/services/email.js +204 -204
  153. package/server/services/hosted-runtime.js +205 -205
  154. package/server/services/lfd.js +635 -635
  155. package/server/services/local-ai.js +389 -389
  156. package/server/services/marketplace.js +270 -270
  157. package/server/services/metering.js +182 -182
  158. package/server/services/modules/affiliate-intelligence.js +93 -93
  159. package/server/services/modules/agent-firewall.js +90 -90
  160. package/server/services/modules/bounty.js +89 -89
  161. package/server/services/modules/collective-bargaining.js +92 -92
  162. package/server/services/modules/dark-pattern.js +66 -66
  163. package/server/services/modules/gov-intelligence.js +45 -45
  164. package/server/services/modules/neural.js +55 -55
  165. package/server/services/modules/notary.js +49 -49
  166. package/server/services/modules/price-time-machine.js +86 -86
  167. package/server/services/modules/protocol.js +104 -104
  168. package/server/services/negotiation.js +439 -439
  169. package/server/services/plugins.js +771 -771
  170. package/server/services/price-intelligence.js +566 -566
  171. package/server/services/price-shield.js +1137 -1137
  172. package/server/services/reputation.js +465 -465
  173. package/server/services/search-engine.js +357 -357
  174. package/server/services/security.js +513 -513
  175. package/server/services/self-healing.js +843 -843
  176. package/server/services/sovereign-shield.js +542 -0
  177. package/server/services/stripe.js +192 -192
  178. package/server/services/swarm.js +788 -788
  179. package/server/services/universal-scraper.js +662 -661
  180. package/server/services/verification.js +481 -481
  181. package/server/services/vision.js +1163 -1163
  182. package/server/utils/cache.js +125 -125
  183. package/server/utils/migrate.js +81 -81
  184. package/server/utils/safe-fetch.js +228 -0
  185. package/server/utils/secureFields.js +50 -50
  186. package/server/ws.js +161 -161
  187. package/templates/artisan-marketplace.yaml +104 -104
  188. package/templates/book-price-scout.yaml +98 -98
  189. package/templates/electronics-price-tracker.yaml +108 -108
  190. package/templates/flight-deal-hunter.yaml +113 -113
  191. package/templates/freelancer-direct.yaml +116 -116
  192. package/templates/grocery-price-compare.yaml +93 -93
  193. package/templates/hotel-direct-booking.yaml +113 -113
  194. package/templates/local-services.yaml +98 -98
  195. package/templates/olive-oil-tunisia.yaml +88 -88
  196. package/templates/organic-farm-fresh.yaml +101 -101
  197. package/templates/restaurant-direct.yaml +97 -97
  198. package/public/score.html +0 -263
  199. package/server/migrations/006_growth_suite.sql +0 -138
  200. package/server/routes/growth.js +0 -962
  201. package/server/services/fairness-engine.js +0 -409
  202. package/server/services/fairness.js +0 -420
package/public/index.html CHANGED
@@ -1,982 +1,1070 @@
1
- <!DOCTYPE html>
2
- <html lang="en" dir="ltr">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Web Agent Bridge — AI Agent Middleware for the Web</title>
7
- <meta name="description" content="Open-source middleware that bridges AI agents and websites. Standardized commands, permissions, and analytics for intelligent automation.">
8
- <link rel="preconnect" href="https://fonts.googleapis.com">
9
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
- <style>body{background:#0a0e1a;color:#f0f4ff;font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;margin:0;min-height:100vh}</style>
11
- <link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
12
- <noscript><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"></noscript>
13
- <link rel="stylesheet" href="/css/styles.css?v=3.0.1">
14
- </head>
15
- <body>
16
-
17
- <!-- ═══════════ NAVBAR ═══════════ -->
18
- <nav class="navbar" id="navbar">
19
- <div class="container">
20
- <a href="/" class="navbar-brand">
21
- <div class="brand-icon">⚡</div>
22
- <span>WAB</span>
23
- </a>
24
- <ul class="navbar-links">
25
- <li><a href="#features">Features</a></li>
26
- <li><a href="#packages">Packages</a></li>
27
- <li><a href="#integrations">Integrations</a></li>
28
- <li><a href="#how-it-works">How It Works</a></li>
29
- <li><a href="#pricing">Pricing</a></li>
30
- <li><a href="#v2-features">v2.0</a></li>
31
- <li><a href="#agent-mesh">Agent Mesh</a></li>
32
- <li><a href="#agent-workspace">Workspace</a></li>
33
- <li><a href="/demo">Demo</a></li>
34
- <li><a href="/growth">Growth Suite</a></li>
35
- <li><a href="/api">API</a></li>
36
- <li><a href="/docs">Docs</a></li>
37
- </ul>
38
- <div class="navbar-actions">
39
- <a href="/login" class="btn btn-ghost" data-wab-auth="guest">Sign In</a>
40
- <a href="/dashboard" class="btn btn-ghost" data-wab-auth="signed-in" style="display:none">Dashboard</a>
41
- <a href="/register" class="btn btn-primary btn-sm" data-wab-auth="guest">Get Started</a>
42
- </div>
43
- <button class="mobile-menu-btn" onclick="document.querySelector('.navbar-links').classList.toggle('active')">☰</button>
44
- </div>
45
- </nav>
46
-
47
- <!-- ═══════════ HERO ═══════════ -->
48
- <section class="hero">
49
- <div class="container">
50
- <div class="hero-content fade-in">
51
- <div class="hero-badge">
52
- 🚀 Open Source &middot; React &middot; Vue &middot; Svelte &middot; LangChain
53
- </div>
54
- <h1>
55
- Bridge the Gap Between<br>
56
- <span class="gradient-text">AI Agents</span> &amp; <span class="gradient-text-accent">Websites</span>
57
- </h1>
58
- <p>
59
- An open-source middleware script that gives AI agents a standardized command interface
60
- to interact with any website — with permissions, rate limiting, and full control for site owners.
61
- </p>
62
- <div class="hero-actions">
63
- <a href="/register" class="btn btn-primary btn-lg">Start Free</a>
64
- <a href="/docs" class="btn btn-secondary btn-lg">Read the Docs</a>
65
- <a href="/browser" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#0ea5e9,#10b981);color:#fff;border:none">🌐 Download WAB Browser</a>
66
- <a href="/pwa/" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#8b5cf6,#0ea5e9);color:#fff;border:none">📱 Mobile PWA</a>
67
- <a href="/workspace" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#f59e0b,#ef4444);color:#fff;border:none">🤖 Agent Workspace</a>
68
- <a href="/demo" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#10b981,#059669);color:#fff;border:none">🧪 API Playground</a>
69
- <a href="/demo-1/" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#06b6d4,#0ea5e9);color:#fff;border:none">🎮 Interactive Demo</a>
70
- </div>
71
-
72
- <div class="hero-code fade-in fade-in-delay-2">
73
- <code>
74
- <span class="comment">// Add the bridge to your website</span><br>
75
- &lt;<span class="keyword">script</span>&gt;<br>
76
- &nbsp;&nbsp;window.<span class="property">AIBridgeConfig</span> = {<br>
77
- &nbsp;&nbsp;&nbsp;&nbsp;<span class="property">licenseKey</span>: <span class="string">"WAB-XXXXX-XXXXX"</span>,<br>
78
- &nbsp;&nbsp;&nbsp;&nbsp;<span class="property">agentPermissions</span>: { <span class="property">click</span>: <span class="boolean">true</span>, <span class="property">fillForms</span>: <span class="boolean">true</span> }<br>
79
- &nbsp;&nbsp;};<br>
80
- &lt;/<span class="keyword">script</span>&gt;<br>
81
- &lt;<span class="keyword">script</span> <span class="property">src</span>=<span class="string">"/script/ai-agent-bridge.js"</span>&gt;&lt;/<span class="keyword">script</span>&gt;
82
- </code>
83
- </div>
84
- </div>
85
- </div>
86
- </section>
87
-
88
- <!-- ═══════════ FEATURES ═══════════ -->
89
- <section class="section" id="features">
90
- <div class="container">
91
- <div class="section-header">
92
- <span class="label">Features</span>
93
- <h2>Everything AI Agents Need</h2>
94
- <p>A complete interface layer that makes websites AI-ready with security and control built in.</p>
95
- </div>
96
-
97
- <div class="grid-3">
98
- <div class="card fade-in">
99
- <div class="card-icon blue">🎯</div>
100
- <h3>Auto-Discovery</h3>
101
- <p>Automatically detects buttons, forms, and navigation elements — generating precise CSS selectors and action descriptions for AI agents.</p>
102
- </div>
103
- <div class="card fade-in fade-in-delay-1">
104
- <div class="card-icon purple">🔐</div>
105
- <h3>Permission System</h3>
106
- <p>Granular control over what AI agents can do. Enable clicking, form filling, API access, and more each toggled independently.</p>
107
- </div>
108
- <div class="card fade-in fade-in-delay-2">
109
- <div class="card-icon cyan">⚡</div>
110
- <h3>Standardized Commands</h3>
111
- <p>Unified <code>window.AICommands</code> interface that any AI agent can read and executeno more DOM guessing.</p>
112
- </div>
113
- <div class="card fade-in fade-in-delay-1">
114
- <div class="card-icon green">🛡️</div>
115
- <h3>Rate Limiting</h3>
116
- <p>Built-in rate limiting prevents abuse. Configure max calls per minute to protect your site from aggressive automation.</p>
117
- </div>
118
- <div class="card fade-in fade-in-delay-2">
119
- <div class="card-icon orange">📊</div>
120
- <h3>Analytics Dashboard</h3>
121
- <p>Track how AI agents interact with your site. See which actions are used most, success rates, and usage patterns.</p>
122
- </div>
123
- <div class="card fade-in fade-in-delay-3">
124
- <div class="card-icon pink">🔌</div>
125
- <h3>Custom Actions</h3>
126
- <p>Register your own actions with custom handlers. Create complex workflows that AI agents can trigger with a single command.</p>
127
- </div>
128
- <div class="card fade-in">
129
- <div class="card-icon cyan">🛒</div>
130
- <h3>Commerce &amp; Booking Intents</h3>
131
- <p>Automatically detects add-to-cart, checkout, booking, and reservation flows mapping them to named actions agents can call directly.</p>
132
- </div>
133
- <div class="card fade-in fade-in-delay-1">
134
- <div class="card-icon blue">📦</div>
135
- <h3>Structured Data Scanning</h3>
136
- <p>Reads schema.org JSON-LD and microdata (Products, Offers, Prices) and exposes them as queryable actions zero manual setup.</p>
137
- </div>
138
- <div class="card fade-in fade-in-delay-2">
139
- <div class="card-icon green">🩹</div>
140
- <h3>Self-Healing Selectors</h3>
141
- <p>7-strategy resilient element resolution. When the DOM changes, selectors auto-heal via ARIA, text similarity, and position heuristics.</p>
142
- </div>
143
- <div class="card fade-in">
144
- <div class="card-icon purple">🔏</div>
145
- <h3>GDPR / CCPA Consent</h3>
146
- <p>Optional consent banner gates agent actions behind user approval. SDK agents can check <code>hasConsent()</code> or <code>waitForConsent()</code> programmatically.</p>
147
- </div>
148
- <div class="card fade-in fade-in-delay-1">
149
- <div class="card-icon orange">🤖</div>
150
- <h3>Agent SDK</h3>
151
- <p>Built-in SDK for Puppeteer and Playwright: <code>runPipeline()</code>, <code>executeParallel()</code>, <code>screenshot()</code>, and consent-aware workflows.</p>
152
- </div>
153
- <div class="card fade-in fade-in-delay-2">
154
- <div class="card-icon pink">🌐</div>
155
- <h3>WebDriver BiDi</h3>
156
- <p>Standard WebDriver BiDi protocol support via <code>window.__wab_bidi</code> compatible with any automation framework that speaks the standard.</p>
157
- </div>
158
- </div>
159
- </div>
160
- </section>
161
-
162
- <!-- ═══════════ V2 FEATURES ═══════════ -->
163
- <section class="section" id="v2-features" style="background: var(--bg-secondary);">
164
- <div class="container">
165
- <div class="section-header">
166
- <span class="label">v2.0 — Digital Fortress</span>
167
- <h2>Internet Sovereignty Features</h2>
168
- <p>WAB v2.0 goes beyond bridging — it protects users with negotiation, verification, and decentralized trust.</p>
169
- </div>
170
-
171
- <div class="grid-3">
172
- <div class="card fade-in" style="border-left: 3px solid #f59e0b;">
173
- <div class="card-icon orange">💰</div>
174
- <h3>Real-time Negotiation Engine</h3>
175
- <p>AI agents negotiate prices directly with WAB-enabled sites. Site owners define negotiation rules (bulk discounts, loyalty rewards, time-based offers). Agents submit counter-offers in multi-round sessions — no middleman, no hidden fees.</p>
176
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
177
- <li>8 condition types (bulk, loyalty, time, first-buy...)</li>
178
- <li>4 discount types (percentage, fixed, free shipping, bundle)</li>
179
- <li>Multi-round negotiation with counter-offers</li>
180
- <li>Savings tracking per agent</li>
181
- </ul>
182
- </div>
183
- <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #ef4444;">
184
- <div class="card-icon pink">🛡️</div>
185
- <h3>Anti-Hallucination Shield</h3>
186
- <p>Cross-verification engine that catches AI lies before they reach users. Compares DOM values against vision screenshots, validates prices against market benchmarks, and checks temporal consistency across sessions.</p>
187
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
188
- <li>DOM vs Vision verification</li>
189
- <li>Market benchmark price validation</li>
190
- <li>Temporal consistency checks</li>
191
- <li>Text similarity scoring (Levenshtein)</li>
192
- </ul>
193
- </div>
194
- <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #10b981;">
195
- <div class="card-icon green">⭐</div>
196
- <h3>Decentralized Reputation</h3>
197
- <p>Agents and sites build trust through cryptographic attestations. Every interaction gets scored — purchase success, data accuracy, delivery fulfillment. Scores are aggregated into transparent reputation profiles visible to all agents.</p>
198
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
199
- <li>Trust attestations from agent network</li>
200
- <li>Weighted scoring by interaction type</li>
201
- <li>Trust levels: emerging → verified → exemplary</li>
202
- <li>Global leaderboard</li>
203
- </ul>
204
- </div>
205
- <div class="card fade-in" style="border-left: 3px solid #3b82f6;">
206
- <div class="card-icon blue">🏰</div>
207
- <h3>Sovereign Dashboard</h3>
208
- <p>A real-time command center showing your digital fortress status — protected sites, fairness radar, privacy shield, negotiation logs, and verification checks all in one beautiful dark-mode dashboard.</p>
209
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
210
- <li>Live fairness radar with safety scoring</li>
211
- <li>Privacy shield metrics</li>
212
- <li>AI model switcher (Llama, GPT-4, Claude...)</li>
213
- <li>Protected sites table with trust levels</li>
214
- </ul>
215
- </div>
216
- <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #8b5cf6;">
217
- <div class="card-icon purple">📦</div>
218
- <h3>Community Agent Hub</h3>
219
- <p>Pre-built YAML agent templates for common use cases — hotel booking, grocery comparison, artisan marketplace, flight deals. Run any template with a single CLI command: <code>npx wab-agent run template.yaml</code>.</p>
220
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
221
- <li>11 production-ready templates</li>
222
- <li>CLI runner with variable substitution</li>
223
- <li>Fairness rules built into every template</li>
224
- <li>Supports negotiation + verification</li>
225
- </ul>
226
- </div>
227
- <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #0ea5e9;">
228
- <div class="card-icon cyan">🌐</div>
229
- <h3>Cross-Site Agent Orchestration</h3>
230
- <p>One agent manages multiple WAB-enabled sites simultaneously. Compare prices across stores, aggregate product data, run parallel actions — all from a single <code>WABMultiAgent</code> instance in the SDK.</p>
231
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
232
- <li>Parallel multi-site browser sessions</li>
233
- <li>comparePrices() with cheapest-deal finder</li>
234
- <li>Schema.org + WAB action price extraction</li>
235
- <li>Cross-site screenshots for vision verification</li>
236
- </ul>
237
- </div>
238
- <div class="card fade-in" style="border-left: 3px solid #06b6d4;">
239
- <div class="card-icon cyan">🔄</div>
240
- <h3>AI Brain Swapping</h3>
241
- <p>WAB is the bridge — the AI model is your choice. Switch between Llama 3, GPT-4, Claude, Gemini, Mistral, or run fully local with Ollama. Your data, your model, your sovereignty.</p>
242
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
243
- <li>6 supported AI engines</li>
244
- <li>Local-first with Ollama support</li>
245
- <li>Hot-swap without reconfiguration</li>
246
- <li>Your data never leaves your machine</li>
247
- </ul>
248
- </div>
249
- </div>
250
-
251
- <div style="text-align:center; margin-top:32px;">
252
- <a href="/sovereign" class="btn btn-primary btn-lg">Open Sovereign Dashboard</a>
253
- </div>
254
- </div>
255
- </section>
256
-
257
- <!-- ═══════════ PRIVATE AGENT MESH ═══════════ -->
258
- <section class="section" id="agent-mesh">
259
- <div class="container">
260
- <div class="section-header">
261
- <span class="label" style="background: rgba(139,92,246,0.15); color: #8b5cf6;">v2.3 — Distributed Mind</span>
262
- <h2>Private Agent Mesh</h2>
263
- <p>Agents communicate, learn, and orchestrate autonomously — zero external LLM dependency. Your private fortress now has a distributed intelligence layer.</p>
264
- </div>
265
-
266
- <div class="grid-3">
267
- <div class="card fade-in" style="border-left: 3px solid #8b5cf6;">
268
- <div class="card-icon purple">🕸️</div>
269
- <h3>Inter-Agent Protocol</h3>
270
- <p>Agents communicate through a private mesh — sharing discoveries, broadcasting alerts, and exchanging tactics in real-time. 5 built-in channels: alerts, discoveries, tactics, negotiations, votes.</p>
271
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
272
- <li>Real-time agent-to-agent messaging</li>
273
- <li>Shared knowledge base with confidence scoring</li>
274
- <li>Priority-based message routing</li>
275
- <li>Auto-expiring messages with TTL</li>
276
- </ul>
277
- </div>
278
- <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #10b981;">
279
- <div class="card-icon green">🧠</div>
280
- <h3>Local Reinforcement Learning</h3>
281
- <p>Agents learn from every user decision — accepted, rejected, or modified. Multi-armed bandit action selection, gradient-descent policy updates, and behavioral pattern mining. All local, zero tokens consumed.</p>
282
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
283
- <li>UCB1 multi-armed bandit for action selection</li>
284
- <li>Sigmoid prediction with gradient descent</li>
285
- <li>Behavioral sequence pattern mining</li>
286
- <li>Bayesian confidence estimation</li>
287
- </ul>
288
- </div>
289
- <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #f59e0b;">
290
- <div class="card-icon orange">🎼</div>
291
- <h3>Symphony Orchestrator</h3>
292
- <p>Four specialized agents (Researcher, Analyst, Negotiator, Guardian) collaborate autonomously through rule-based engines. No external AI needed — the symphony runs entirely on local heuristics and learned preferences.</p>
293
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
294
- <li>5 templates: purchase, price comparison, negotiation, exploration, audit</li>
295
- <li>6-phase pipeline: compose → discover → analyze → negotiate → guard → decide</li>
296
- <li>Guardian veto for safety-critical decisions</li>
297
- <li>Weighted consensus with agreement scoring</li>
298
- </ul>
299
- </div>
300
- </div>
301
-
302
- <div style="text-align:center; margin-top:32px;">
303
- <a href="/mesh-dashboard" class="btn btn-primary btn-lg" style="background: #8b5cf6;">Open Agent Mesh Dashboard</a>
304
- </div>
305
- </div>
306
- </section>
307
-
308
- <!-- ═══════════ AGENT WORKSPACE (v2.5) ═══════════ -->
309
- <section class="section" id="agent-workspace" style="background: var(--bg-secondary);">
310
- <div class="container">
311
- <div class="section-header">
312
- <span class="label" style="background: rgba(245,158,11,0.15); color: #f59e0b;">v2.5 — Agent Workspace</span>
313
- <h2>Smart Agent Workspace</h2>
314
- <p>A premium 4-panel workspace for non-technical users — search, negotiate, and buy with AI assistance. Available in Arabic &amp; English with multilingual agent support.</p>
315
- </div>
316
-
317
- <div class="grid-3">
318
- <div class="card fade-in" style="border-left: 3px solid #0ea5e9;">
319
- <div class="card-icon blue">🌐</div>
320
- <h3>Embedded Browser</h3>
321
- <p>Full browser panel with URL bar, navigation controls, and secure iframe rendering. The agent opens pages, loads deals, and navigates sites — all visible in real-time.</p>
322
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
323
- <li>Address bar with SSL indicator</li>
324
- <li>Back, forward, refresh controls</li>
325
- <li>Maximize any panel to full screen</li>
326
- </ul>
327
- </div>
328
- <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #10b981;">
329
- <div class="card-icon green">🤖</div>
330
- <h3>Smart Agent Chat</h3>
331
- <p>Chat with the AI agent in any language — Arabic, English, French, Turkish, or mix them all. The agent understands your intent from any style, dialect, or slang.</p>
332
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
333
- <li>Suggestion chips for quick start</li>
334
- <li>Multilingual responds in your language</li>
335
- <li>Clarifying questions for precise results</li>
336
- </ul>
337
- </div>
338
- <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #f59e0b;">
339
- <div class="card-icon orange">📊</div>
340
- <h3>Negotiation Monitor</h3>
341
- <p>Watch the agent work in real-time — step-by-step progress tracking, per-agent status cards, and live negotiation rounds with savings details.</p>
342
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
343
- <li>Multi-step progress visualization</li>
344
- <li>Per-agent cards with progress bars</li>
345
- <li>Negotiation round-by-round log</li>
346
- </ul>
347
- </div>
348
- <div class="card fade-in" style="border-left: 3px solid #8b5cf6;">
349
- <div class="card-icon purple">🏆</div>
350
- <h3>Results &amp; Actions</h3>
351
- <p>Compare offers ranked by value with savings percentages, one-click deal links, and an "Agent Do It" button that lets the AI complete the purchase for you.</p>
352
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
353
- <li>Deal cards with price comparison</li>
354
- <li>One-click \"Open Deal\" links</li>
355
- <li>\"Agent Do It\" auto-completion</li>
356
- </ul>
357
- </div>
358
- <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #ef4444;">
359
- <div class="card-icon pink">🌍</div>
360
- <h3>Bilingual UI (AR/EN)</h3>
361
- <p>Full Arabic and English interface with auto-detection from browser language. Toggle instantly between languages with complete RTL/LTR layout support.</p>
362
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
363
- <li>100+ translated UI strings</li>
364
- <li>Auto-detect browser language</li>
365
- <li>RTL LTR with one click</li>
366
- </ul>
367
- </div>
368
- <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #06b6d4;">
369
- <div class="card-icon cyan">💎</div>
370
- <h3>Subscription Plans</h3>
371
- <p>Free tier (5 tasks/day), Starter, Pro (unlimited + advanced negotiation), and Enterprise plans. Admin dashboard for managing users, deals, and analytics.</p>
372
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
373
- <li>Free, Starter, Pro, Enterprise</li>
374
- <li>Usage tracking with daily limits</li>
375
- <li>Admin management panel</li>
376
- </ul>
377
- </div>
378
- <div class="card fade-in" style="border-left: 3px solid #a855f7;">
379
- <div class="card-icon purple">🛡️</div>
380
- <h3>Dynamic Pricing Shield</h3>
381
- <p>Detects when websites manipulate prices based on your device, location, cookies, or browsing history. The agent probes with 12 distinct identities to expose hidden pricing and find the lowest price invisible to normal users.</p>
382
- <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
383
- <li>12 identity personas (device, geo, referral, privacy)</li>
384
- <li>Statistical variance &amp; z-score outlier detection</li>
385
- <li>Manipulation scoring with actionable tips</li>
386
- <li>Historical price-trend analysis</li>
387
- </ul>
388
- </div>
389
- </div>
390
-
391
- <div style="text-align:center; margin-top:32px;">
392
- <a href="/workspace" class="btn btn-primary btn-lg" style="background: linear-gradient(135deg,#f59e0b,#ef4444);">Open Agent Workspace</a>
393
- </div>
394
- </div>
395
- </section>
396
-
397
- <!-- ═══════════ HOW IT WORKS ═══════════ -->
398
- <section class="section" id="how-it-works" style="background: var(--bg-secondary);">
399
- <div class="container">
400
- <div class="section-header">
401
- <span class="label">How It Works</span>
402
- <h2>Three Steps to AI-Ready</h2>
403
- <p>Get your website ready for AI agents in minutes, not days.</p>
404
- </div>
405
-
406
- <div class="grid-3">
407
- <div class="card" style="text-align:center;">
408
- <div style="font-size:2.5rem; margin-bottom:16px;">1️⃣</div>
409
- <h3>Add the Script</h3>
410
- <p>Include the bridge script in your HTML with your configuration. Set permissions, restrictions, and your license key.</p>
411
- </div>
412
- <div class="card" style="text-align:center;">
413
- <div style="font-size:2.5rem; margin-bottom:16px;">2️⃣</div>
414
- <h3>Configure Permissions</h3>
415
- <p>Use the dashboard to fine-tune which actions AI agents can perform. Block sensitive areas and set rate limits.</p>
416
- </div>
417
- <div class="card" style="text-align:center;">
418
- <div style="font-size:2.5rem; margin-bottom:16px;">3️⃣</div>
419
- <h3>AI Agents Connect</h3>
420
- <p>AI agents read <code>window.AICommands</code>, discover available actions, and execute them precisely no DOM scraping needed.</p>
421
- </div>
422
- </div>
423
-
424
- <div style="margin-top:48px;">
425
- <div class="code-block">
426
- <div class="code-header">
427
- <div class="code-dots"><span></span><span></span><span></span></div>
428
- <span class="code-lang">JavaScript — AI Agent Side</span>
429
- </div>
430
- <div class="code-body">
431
- <pre><span class="cm">// AI Agent reads available commands</span>
432
- <span class="kw">const</span> bridge = window.<span class="prop">AICommands</span>;
433
-
434
- <span class="cm">// Discover all available actions</span>
435
- <span class="kw">const</span> actions = bridge.<span class="fn">getActions</span>();
436
- console.<span class="fn">log</span>(actions);
437
- <span class="cm">// [{ name: "signup", trigger: "click", ... }, ...]</span>
438
-
439
- <span class="cm">// Execute a form fill action</span>
440
- <span class="kw">const</span> result = <span class="kw">await</span> bridge.<span class="fn">execute</span>(<span class="str">"fill_contact_form"</span>, {
441
- <span class="prop">name</span>: <span class="str">"John Doe"</span>,
442
- <span class="prop">email</span>: <span class="str">"john@example.com"</span>,
443
- <span class="prop">message</span>: <span class="str">"Hello from AI!"</span>
444
- });
445
-
446
- <span class="cm">// Wait for dynamic content</span>
447
- <span class="kw">await</span> bridge.<span class="fn">waitForElement</span>(<span class="str">".success-message"</span>);</pre>
448
- </div>
449
- </div>
450
- </div>
451
- </div>
452
- </section>
453
-
454
- <!-- ═══════════ PRICING ═══════════ -->
455
- <section class="section" id="pricing">
456
- <div class="container">
457
- <div class="section-header">
458
- <span class="label">Pricing</span>
459
- <h2>Simple, Transparent Pricing</h2>
460
- <p>Start free, upgrade when you need advanced features. Open source forever.</p>
461
- </div>
462
-
463
- <div class="grid-3">
464
- <div class="pricing-card">
465
- <div class="pricing-tier">Free</div>
466
- <div class="pricing-price">$0 <span>/mo</span></div>
467
- <div class="pricing-desc">Perfect for personal projects and experimentation.</div>
468
- <ul class="pricing-features">
469
- <li>Auto-discovery of actions</li>
470
- <li>Click &amp; scroll permissions</li>
471
- <li>Rate limiting (60/min)</li>
472
- <li>Basic logging</li>
473
- <li>1 site</li>
474
- <li class="disabled">Form filling</li>
475
- <li class="disabled">API access</li>
476
- <li class="disabled">Analytics dashboard</li>
477
- </ul>
478
- <a href="/register" class="btn btn-secondary" style="width:100%;">Get Started Free</a>
479
- </div>
480
-
481
- <div class="pricing-card featured">
482
- <div class="pricing-tier">Pro</div>
483
- <div class="pricing-price">$29 <span>/mo</span></div>
484
- <div class="pricing-desc">For businesses that want full AI agent integration.</div>
485
- <ul class="pricing-features">
486
- <li>Everything in Free</li>
487
- <li>Form filling &amp; submission</li>
488
- <li>Internal API access</li>
489
- <li>Advanced analytics</li>
490
- <li>Up to 10 sites</li>
491
- <li>Automated login support</li>
492
- <li>Data extraction</li>
493
- <li>Priority support</li>
494
- </ul>
495
- <a href="/register" class="btn btn-primary" style="width:100%;">Start Pro Trial</a>
496
- </div>
497
-
498
- <div class="pricing-card">
499
- <div class="pricing-tier">Enterprise</div>
500
- <div class="pricing-price">Custom</div>
501
- <div class="pricing-desc">Custom solutions for large-scale deployments.</div>
502
- <ul class="pricing-features">
503
- <li>Everything in Pro</li>
504
- <li>Unlimited sites</li>
505
- <li>Custom rate limits</li>
506
- <li>Webhook integrations</li>
507
- <li>SSO / SAML</li>
508
- <li>Dedicated support</li>
509
- <li>SLA guarantee</li>
510
- <li>Custom development</li>
511
- </ul>
512
- <a href="mailto:sales@webagentbridge.com" class="btn btn-secondary" style="width:100%;">Contact Sales</a>
513
- </div>
514
- </div>
515
- </div>
516
- </section>
517
-
518
- <!-- ═══════════ FRAMEWORK PACKAGES ═══════════ -->
519
- <section class="section" id="packages" style="background: var(--bg-secondary);">
520
- <div class="container">
521
- <div class="section-header">
522
- <span class="label">Packages</span>
523
- <h2>Use WAB with Your Favorite Framework</h2>
524
- <p>Official packages for React, Vue, Svelte, and LangChain — with full TypeScript support.</p>
525
- </div>
526
-
527
- <div class="grid-3">
528
- <div class="card fade-in" style="text-align:center;">
529
- <div style="font-size:2.5rem; margin-bottom:16px;">⚛️</div>
530
- <h3>React</h3>
531
- <p><code>@web-agent-bridge/react</code></p>
532
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Hooks: <code>useWAB</code>, <code>useWABAction</code>, <code>useWABActions</code> + <code>WABProvider</code> for auto-loading the script.</p>
533
- <div class="code-block" style="margin-top:16px; text-align:left;">
534
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
535
- <pre><span class="kw">const</span> { run, result } = <span class="fn">useWABAction</span>(<span class="str">'addToCart'</span>);
536
- <span class="kw">await</span> <span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });</pre>
537
- </div>
538
- </div>
539
- </div>
540
- <div class="card fade-in fade-in-delay-1" style="text-align:center;">
541
- <div style="font-size:2.5rem; margin-bottom:16px;">💚</div>
542
- <h3>Vue 3</h3>
543
- <p><code>@web-agent-bridge/vue</code></p>
544
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Composables: <code>useWAB</code>, <code>useWABAction</code>, <code>useWABActions</code> — reactive refs with loading/error/result state.</p>
545
- <div class="code-block" style="margin-top:16px; text-align:left;">
546
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
547
- <pre><span class="kw">const</span> cart = <span class="fn">useWABAction</span>(<span class="str">'addToCart'</span>);
548
- <span class="kw">await</span> cart.<span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });
549
- <span class="cm">// cart.result.value, cart.loading.value</span></pre>
550
- </div>
551
- </div>
552
- </div>
553
- <div class="card fade-in fade-in-delay-2" style="text-align:center;">
554
- <div style="font-size:2.5rem; margin-bottom:16px;">🔥</div>
555
- <h3>Svelte</h3>
556
- <p><code>@web-agent-bridge/svelte</code></p>
557
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Stores: <code>createWAB</code>, <code>createWABAction</code> — subscribe to <code>$store</code> for reactive state.</p>
558
- <div class="code-block" style="margin-top:16px; text-align:left;">
559
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
560
- <pre><span class="kw">const</span> cart = <span class="fn">createWABAction</span>(<span class="str">'addToCart'</span>);
561
- <span class="kw">await</span> cart.<span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });
562
- <span class="cm">// {#if $cart.loading}Adding...{/if}</span></pre>
563
- </div>
564
- </div>
565
- </div>
566
- </div>
567
- </div>
568
- </section>
569
-
570
- <!-- ═══════════ LLM / AGENT INTEGRATION ═══════════ -->
571
- <section class="section" id="integrations">
572
- <div class="container">
573
- <div class="section-header">
574
- <span class="label">Agent Integrations</span>
575
- <h2>Connect Any AI Agent Framework</h2>
576
- <p>Use WAB with LangChain, MCP, or build your own agent — every action becomes a tool the LLM can call.</p>
577
- </div>
578
-
579
- <div class="grid-3">
580
- <div class="card fade-in" style="text-align:center;">
581
- <div style="font-size:2.5rem; margin-bottom:16px;">🦜</div>
582
- <h3>LangChain / LangGraph</h3>
583
- <p><code>@web-agent-bridge/langchain</code></p>
584
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">WABToolkit wraps every WAB action as a LangChain <code>StructuredTool</code>. Works in HTTP mode (server) or browser mode (Puppeteer).</p>
585
- <div class="code-block" style="margin-top:16px; text-align:left;">
586
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
587
- <pre><span class="kw">const</span> tk = <span class="kw">new</span> <span class="fn">WABToolkit</span>({ <span class="prop">siteUrl</span>: <span class="str">'https://shop.example.com'</span> });
588
- <span class="kw">const</span> tools = <span class="kw">await</span> tk.<span class="fn">getTools</span>();
589
- <span class="cm">// Pass tools to any LangChain agent</span></pre>
590
- </div>
591
- </div>
592
- </div>
593
- <div class="card fade-in fade-in-delay-1" style="text-align:center;">
594
- <div style="font-size:2.5rem; margin-bottom:16px;">🔗</div>
595
- <h3>MCP Adapter</h3>
596
- <p><code>wab-mcp-adapter</code></p>
597
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Converts WAB actions into MCP tools so any MCP-compatible agent (Claude, etc.) can interact with WAB sites through MCP.</p>
598
- <div class="code-block" style="margin-top:16px; text-align:left;">
599
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
600
- <pre><span class="kw">const</span> adapter = <span class="kw">new</span> <span class="fn">WABMCPAdapter</span>({ <span class="prop">siteUrl</span>: <span class="str">'...'</span> });
601
- <span class="kw">const</span> tools = adapter.<span class="fn">listTools</span>();
602
- <span class="cm">// Built-in: discover, execute, read, search</span></pre>
603
- </div>
604
- </div>
605
- </div>
606
- <div class="card fade-in fade-in-delay-2" style="text-align:center;">
607
- <div style="font-size:2.5rem; margin-bottom:16px;">🧰</div>
608
- <h3>Agent SDK</h3>
609
- <p><code>web-agent-bridge/sdk</code></p>
610
- <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">First-class Puppeteer/Playwright SDK with pipeline execution, parallel actions, screenshot capture, and consent-aware workflows.</p>
611
- <div class="code-block" style="margin-top:16px; text-align:left;">
612
- <div class="code-body" style="padding:12px; font-size:0.82rem;">
613
- <pre><span class="kw">const</span> agent = <span class="kw">new</span> <span class="fn">WABAgent</span>(page);
614
- <span class="kw">await</span> agent.<span class="fn">waitForConsent</span>();
615
- <span class="kw">await</span> agent.<span class="fn">runPipeline</span>([...steps]);</pre>
616
- </div>
617
- </div>
618
- </div>
619
- </div>
620
- </div>
621
- </section>
622
-
623
- <!-- ═══════════ EXAMPLES ═══════════ -->
624
- <section class="section" id="examples" style="background: var(--bg-secondary);">
625
- <div class="container">
626
- <div class="section-header">
627
- <span class="label">Examples</span>
628
- <h2>Framework &amp; CMS Integration Examples</h2>
629
- <p>Ready-to-use examples for popular platforms — see how WAB fits into your stack.</p>
630
- </div>
631
-
632
- <div class="grid-3">
633
- <div class="card fade-in" style="text-align:center;">
634
- <div style="font-size:2.2rem; margin-bottom:12px;">▲</div>
635
- <h3>Next.js App Router</h3>
636
- <p style="color:var(--text-secondary); font-size:0.9rem;">React Server Components + WABProvider for client-side bridge with <code>useWABAction</code> hooks.</p>
637
- </div>
638
- <div class="card fade-in fade-in-delay-1" style="text-align:center;">
639
- <div style="font-size:2.2rem; margin-bottom:12px;">🛍️</div>
640
- <h3>Shopify Hydrogen</h3>
641
- <p style="color:var(--text-secondary); font-size:0.9rem;">Hydrogen storefront with cart actions: <code>getCartCount</code>, <code>addFirstVisibleProductToCart</code>.</p>
642
- </div>
643
- <div class="card fade-in fade-in-delay-2" style="text-align:center;">
644
- <div style="font-size:2.2rem; margin-bottom:12px;">📝</div>
645
- <h3>WordPress + Elementor</h3>
646
- <p style="color:var(--text-secondary); font-size:0.9rem;">Elementor page builder + WAB schema scanner for auto-discovered product and form actions.</p>
647
- </div>
648
- <div class="card fade-in" style="text-align:center;">
649
- <div style="font-size:2.2rem; margin-bottom:12px;">📊</div>
650
- <h3>SaaS Dashboard</h3>
651
- <p style="color:var(--text-secondary); font-size:0.9rem;">Notion-style SaaS with KPI reads, customer lookup, and invoice workflow triggers.</p>
652
- </div>
653
- <div class="card fade-in fade-in-delay-1" style="text-align:center;">
654
- <div style="font-size:2.2rem; margin-bottom:12px;">🤖</div>
655
- <h3>Puppeteer Agent</h3>
656
- <p style="color:var(--text-secondary); font-size:0.9rem;">Headless browser agent that discovers and executes actions automatically via the SDK.</p>
657
- </div>
658
- <div class="card fade-in fade-in-delay-2" style="text-align:center;">
659
- <div style="font-size:2.2rem; margin-bottom:12px;">👁️</div>
660
- <h3>Vision Agent</h3>
661
- <p style="color:var(--text-secondary); font-size:0.9rem;">Natural language intent resolution "add product to cart" maps to the right WAB action.</p>
662
- </div>
663
- </div>
664
-
665
- <div style="text-align:center; margin-top:32px;">
666
- <a href="https://github.com/abokenan444/web-agent-bridge/tree/master/examples" class="btn btn-secondary" target="_blank" rel="noopener">View All Examples on GitHub →</a>
667
- </div>
668
- </div>
669
- </section>
670
-
671
- <!-- ═══════════ GROWTH SUITE ═══════════ -->
672
- <section class="section" id="growth-suite" style="background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); color: #fff;">
673
- <div class="container" style="text-align:center;">
674
- <div style="display:inline-block; background:rgba(59,130,246,0.15); color:#60a5fa; padding:6px 16px; border-radius:20px; font-size:13px; font-weight:600; margin-bottom:20px;">WAB Growth Suite v2.5</div>
675
- <h2 style="margin-bottom:16px; color:#fff;">8 Modules to Protect & Power the Web</h2>
676
- <p style="color:#94a3b8; max-width:600px; margin:0 auto 40px; font-size:1.05rem; line-height:1.6;">
677
- From link protection widgets to AI safety layers, bounty networks to threat intelligence — everything you need to build a safer, fairer web.
678
- </p>
679
- <div style="display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:16px; max-width:960px; margin:0 auto 40px;">
680
- <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
681
- <div style="font-size:28px; margin-bottom:8px;">🛡️</div>
682
- <div style="font-weight:700; font-size:15px;">WAB Widget</div>
683
- <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Drop-in link protection</div>
684
- </div>
685
- <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
686
- <div style="font-size:28px; margin-bottom:8px;">🤖</div>
687
- <div style="font-weight:700; font-size:15px;">AI Safety Layer</div>
688
- <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Security for AI agents</div>
689
- </div>
690
- <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
691
- <div style="font-size:28px; margin-bottom:8px;">📊</div>
692
- <div style="font-weight:700; font-size:15px;">WAB Score</div>
693
- <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Platform credit rating</div>
694
- </div>
695
- <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
696
- <div style="font-size:28px; margin-bottom:8px;">💰</div>
697
- <div style="font-weight:700; font-size:15px;">Bounty Network</div>
698
- <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Earn by finding scams</div>
699
- </div>
700
- </div>
701
- <a href="/growth" class="btn btn-primary btn-lg">Explore All 8 Modules →</a>
702
- </div>
703
- </section>
704
-
705
- <!-- ═══════════ 1. WAB WIDGET ═══════════ -->
706
- <section class="wab-widget-section" style="padding: 80px 20px; background: #f8fafc; text-align: center;">
707
- <div style="max-width: 800px; margin: 0 auto;">
708
- <h2 style="font-size: 36px; color: #0f172a; margin-bottom: 16px;">One Line of Code. Full Link Protection.</h2>
709
- <p style="font-size: 18px; color: #64748b; margin-bottom: 32px;">
710
- Add a <strong>WAB Widget</strong> next to every external link on your site, blocking phishing and scam URLs in real-time for your visitors.
711
- </p>
712
- <div style="background: #0f172a; color: #e2e8f0; padding: 24px; border-radius: 12px; font-family: 'JetBrains Mono', monospace; font-size: 14px; text-align: left; margin-bottom: 24px; overflow-x: auto;">
713
- <span style="color:#f472b6">&lt;script</span> <span style="color:#a78bfa">src</span>=<span style="color:#86efac">"https://webagentbridge.com/script/ai-agent-bridge.js"</span><br>
714
- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#a78bfa">data-wab-key</span>=<span style="color:#86efac">"YOUR_API_KEY"</span><span style="color:#f472b6">&gt;&lt;/script&gt;</span>
715
- </div>
716
- <div style="display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;">
717
- <a href="/growth#modules" class="btn btn-primary">See Widget Demo</a>
718
- <a href="/workspace" class="btn btn-secondary">Get Your API Key →</a>
719
- </div>
720
- </div>
721
- </section>
722
-
723
- <!-- ═══════════ 2. AI SAFETY LAYER ═══════════ -->
724
- <section class="ai-safety-section" style="padding: 80px 20px; background: #0f172a; color: #fff;">
725
- <div style="max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;">
726
- <div>
727
- <div style="color: #3b82f6; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; font-size: 12px;">FOR AI COMPANIES</div>
728
- <h2 style="font-size: 32px; margin-bottom: 16px;">Mandatory Safety for AI Agents</h2>
729
- <p style="color: #94a3b8; font-size: 16px; line-height: 1.6; margin-bottom: 24px;">
730
- Building an AI agent that browses the web? Use <strong>WAB AI Safety Layer</strong> as a mandatory security wrapper. It scans every URL before your agent visits it.
731
- </p>
732
- <ul style="list-style: none; padding: 0; color: #cbd5e1; margin-bottom: 32px;">
733
- <li style="margin-bottom: 12px;">✅ Compatible with OpenAI Operator &amp; Anthropic Computer Use</li>
734
- <li style="margin-bottom: 12px;">✅ Blocks fraudulent financial transactions automatically</li>
735
- <li style="margin-bottom: 12px;">✅ Lifts legal liability from your company</li>
736
- </ul>
737
- <a href="/docs" class="btn btn-primary">Read AI Safety Docs →</a>
738
- </div>
739
- <div style="background: #1e293b; padding: 24px; border-radius: 16px; border: 1px solid #334155; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.7; overflow-x: auto;">
740
- <span style="color:#c678dd">import</span> { WABAgentWrapper } <span style="color:#c678dd">from</span> <span style="color:#98c379">'@wab/sdk'</span>;<br><br>
741
- <span style="color:#5c6370">// Wrap your AI Agent with WAB Safety</span><br>
742
- <span style="color:#c678dd">const</span> safeAgent = <span style="color:#c678dd">new</span> <span style="color:#61afef">WABAgentWrapper</span>(myAgent, {<br>
743
- &nbsp;&nbsp;<span style="color:#d19a66">blockCritical</span>: <span style="color:#d19a66">true</span>,<br>
744
- &nbsp;&nbsp;<span style="color:#d19a66">minFairness</span>: <span style="color:#d19a66">60</span>,<br>
745
- });<br><br>
746
- <span style="color:#5c6370">// WAB will block this if the site is a scam</span><br>
747
- <span style="color:#c678dd">await</span> safeAgent.<span style="color:#61afef">browse</span>(<span style="color:#98c379">'https://scam-site.xyz'</span>);<br>
748
- <span style="color:#e06c75">→ WABBlockedError: Phishing detected</span>
749
- </div>
750
- </div>
751
- </section>
752
-
753
- <!-- ═══════════ 3. WAB SCORE ═══════════ -->
754
- <section class="wab-score-section" style="padding: 80px 20px; background: white; text-align: center;">
755
- <div style="max-width: 800px; margin: 0 auto;">
756
- <h2 style="font-size: 36px; color: #0f172a; margin-bottom: 16px;">The Digital World's Credit Rating</h2>
757
- <p style="font-size: 18px; color: #64748b; margin-bottom: 40px;">
758
- Like credit agencies rate banks, <strong>WAB Score</strong> rates digital platforms. Search any platform and get a transparency score based on 15 fairness signals.
759
- </p>
760
- <div style="display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px;">
761
- <div style="border: 2px solid #22c55e; border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; background: #fff;">
762
- <div style="font-size: 32px; font-weight: 900; color: #22c55e; line-height: 1;">A-</div>
763
- <div>
764
- <div style="font-weight: 700; color: #1e293b;">Very Good</div>
765
- <div style="font-size: 12px; color: #64748b;">86/100 · amazon.com</div>
766
- </div>
767
- </div>
768
- <div style="border: 2px solid #f59e0b; border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; background: #fff;">
769
- <div style="font-size: 32px; font-weight: 900; color: #f59e0b; line-height: 1;">C+</div>
770
- <div>
771
- <div style="font-weight: 700; color: #1e293b;">Below Average</div>
772
- <div style="font-size: 12px; color: #64748b;">68/100 · aliexpress.com</div>
773
- </div>
774
- </div>
775
- </div>
776
- <form action="/score" method="GET" style="display: flex; max-width: 500px; margin: 0 auto; gap: 8px;">
777
- <input type="text" name="domain" placeholder="Enter platform domain (e.g. shein.com)" style="flex: 1; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 15px;">
778
- <button type="submit" style="background: #0f172a; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-weight: 700; cursor: pointer;">Check Score</button>
779
- </form>
780
- </div>
781
- </section>
782
-
783
- <!-- ═══════════ 4. TRUST LAYER PROTOCOL ═══════════ -->
784
- <section style="padding: 60px 20px; background: #f1f5f9; border-top: 1px solid #e2e8f0;">
785
- <div style="max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;">
786
- <div style="flex: 1; min-width: 280px;">
787
- <h3 style="font-size: 24px; color: #0f172a; margin-bottom: 12px;">The Open Trust Protocol</h3>
788
- <p style="color: #475569; line-height: 1.6; margin-bottom: 20px;">
789
- Prove to your customers that your store is fair and safe. Add a <code>wab.json</code> file to your site and print a verified trust badge — the SSL padlock for platform fairness.
790
- </p>
791
- <a href="/docs" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Learn how to get WAB Certified →</a>
792
- </div>
793
- <div style="flex: 1; min-width: 280px; background: white; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0;">
794
- <div style="font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #334155;">
795
- <span style="color:#94a3b8">// /.well-known/wab.json</span><br>
796
- {<br>
797
- &nbsp;&nbsp;"wab_certified": <span style="color:#22c55e">true</span>,<br>
798
- &nbsp;&nbsp;"fairness_score": <span style="color:#3b82f6">92</span>,<br>
799
- &nbsp;&nbsp;"last_audit": <span style="color:#a3e635">"2026-04-01"</span><br>
800
- }
801
- </div>
802
- </div>
803
- </div>
804
- </section>
805
-
806
- <!-- ═══════════ 5. BOUNTY NETWORK ═══════════ -->
807
- <section style="padding: 80px 20px; background: #0f172a; color: white; text-align: center;">
808
- <div style="max-width: 700px; margin: 0 auto;">
809
- <div style="font-size: 48px; margin-bottom: 16px;">💰</div>
810
- <h2 style="font-size: 36px; margin-bottom: 16px;">Earn Money by Discovering Fraud</h2>
811
- <p style="font-size: 18px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6;">
812
- Join the <strong>WAB Bounty Network</strong> and report phishing, scams, and malware that automated systems haven't caught yet. Earn credits redeemable for cash.
813
- </p>
814
- <div style="display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap;">
815
- <div style="background: #1e293b; padding: 16px 24px; border-radius: 8px;">
816
- <div style="font-size: 24px; font-weight: 700; color: #ef4444;">50 Credits</div>
817
- <div style="font-size: 13px; color: #94a3b8;">Critical Threats</div>
818
- </div>
819
- <div style="background: #1e293b; padding: 16px 24px; border-radius: 8px;">
820
- <div style="font-size: 24px; font-weight: 700; color: #f59e0b;">25 Credits</div>
821
- <div style="font-size: 13px; color: #94a3b8;">Confirmed Scams</div>
822
- </div>
823
- </div>
824
- <a href="/register" class="btn btn-primary btn-lg">Start Earning →</a>
825
- </div>
826
- </section>
827
-
828
- <!-- ═══════════ 6. DATA MARKETPLACE ═══════════ -->
829
- <section style="padding: 80px 20px; background: white;">
830
- <div style="max-width: 1000px; margin: 0 auto; text-align: center;">
831
- <h2 style="font-size: 32px; color: #0f172a; margin-bottom: 16px;">Threat Intelligence for AI &amp; Security</h2>
832
- <p style="font-size: 18px; color: #64748b; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto;">
833
- <strong>WAB Data Marketplace</strong> provides curated threat intelligence datasets for cybersecurity companies and AI model training.
834
- </p>
835
- <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;">
836
- <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
837
- <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Threat Intelligence Feed</h4>
838
- <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Real-time phishing, malware, and scam URL data from 47 databases. Updated continuously.</p>
839
- <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
840
- </div>
841
- <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
842
- <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Platform Fairness Data</h4>
843
- <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Quarterly transparency scores for 500+ marketplaces hidden fees, return policies, dark patterns.</p>
844
- <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
845
- </div>
846
- <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
847
- <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Affiliate Intelligence</h4>
848
- <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Commission benchmarks, fraud patterns, and network reliability scores across all major affiliate platforms.</p>
849
- <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
850
- </div>
851
- </div>
852
- </div>
853
- </section>
854
-
855
- <!-- ═══════════ 7. EMAIL PROTECTION ═══════════ -->
856
- <section style="padding: 60px 20px; background: #f8fafc;">
857
- <div style="max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;">
858
- <div style="flex: 1; min-width: 280px;">
859
- <h3 style="font-size: 28px; color: #0f172a; margin-bottom: 16px;">Email Protection</h3>
860
- <p style="color: #475569; font-size: 16px; line-height: 1.6; margin-bottom: 24px;">
861
- 94% of cyber breaches start with a phishing email. Install the WAB extension and every link and sender in your inbox gets scanned by WAB automatically.
862
- </p>
863
- <div style="display: flex; gap: 12px; flex-wrap: wrap;">
864
- <a href="/downloads" style="background: #fff; border: 1px solid #cbd5e1; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #1e293b; font-weight: 600; font-size: 14px;">🌐 Chrome Extension</a>
865
- <a href="/downloads" style="background: #fff; border: 1px solid #cbd5e1; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #1e293b; font-weight: 600; font-size: 14px;">🦊 Firefox Add-on</a>
866
- </div>
867
- </div>
868
- <div style="flex: 1; min-width: 280px; background: white; padding: 16px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);">
869
- <div style="background: #fef2f2; border-left: 4px solid #ef4444; padding: 12px 16px; border-radius: 4px; margin-bottom: 16px;">
870
- <strong style="color: #991b1b; font-size: 13px;">🚫 WAB Security Alert:</strong>
871
- <span style="color: #991b1b; font-size: 13px;"> Dangerous link detected</span>
872
- <div style="color: #b91c1c; font-size: 12px; margin-top: 4px;">PHISHING DETECTED — paypa1-secure-login.xyz scored 95/100 risk</div>
873
- </div>
874
- <div style="height: 12px; background: #f1f5f9; width: 60%; margin-bottom: 8px; border-radius: 4px;"></div>
875
- <div style="height: 12px; background: #f1f5f9; width: 80%; margin-bottom: 8px; border-radius: 4px;"></div>
876
- <div style="height: 12px; background: #f1f5f9; width: 40%; border-radius: 4px;"></div>
877
- </div>
878
- </div>
879
- </section>
880
-
881
- <!-- ═══════════ 8. AFFILIATE INTELLIGENCE ═══════════ -->
882
- <section style="padding: 80px 20px; background: #0f172a; color: white; text-align: center;">
883
- <div style="max-width: 800px; margin: 0 auto;">
884
- <h2 style="font-size: 36px; margin-bottom: 16px;">Are Affiliate Networks Stealing Your Commissions?</h2>
885
- <p style="font-size: 18px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6;">
886
- <strong>WAB Affiliate Intelligence</strong> analyzes your affiliate data and compares it with industry benchmarks to detect commission shaving, cookie stuffing, and payment delays.
887
- </p>
888
- <div style="background: #1e293b; border: 1px solid #334155; border-radius: 16px; padding: 24px; text-align: left; max-width: 600px; margin: 0 auto 32px; font-family: 'JetBrains Mono', monospace;">
889
- <div style="display: flex; justify-content: space-between; border-bottom: 1px solid #334155; padding-bottom: 12px; margin-bottom: 12px;">
890
- <div>
891
- <div style="color: #94a3b8; font-size: 12px; margin-bottom: 4px;">Network</div>
892
- <div style="font-weight: 700; font-size: 16px;">ClickBank</div>
893
- </div>
894
- <div style="text-align: right;">
895
- <div style="color: #94a3b8; font-size: 12px; margin-bottom: 4px;">Fraud Risk</div>
896
- <div style="font-weight: 700; font-size: 16px; color: #f59e0b;">MEDIUM</div>
897
- </div>
898
- </div>
899
- <div style="color: #cbd5e1; font-size: 14px; margin-bottom: 8px;">⚠️ <strong>Commission Shaving:</strong> 12% of valid sales cancelled</div>
900
- <div style="color: #cbd5e1; font-size: 14px;">⚠️ <strong>Payment Delays:</strong> Average 45 days vs industry 30</div>
901
- </div>
902
- <a href="/register" class="btn btn-primary btn-lg">Analyze Your Networks →</a>
903
- </div>
904
- </section>
905
-
906
- <!-- ═══════════ CTA ═══════════ -->
907
- <section class="section" style="text-align:center;">
908
- <div class="container">
909
- <h2 style="margin-bottom:16px;">Ready to Make Your Site <span class="gradient-text">AI-Ready</span>?</h2>
910
- <p style="color:var(--text-secondary); max-width:540px; margin:0 auto 32px; font-size:1.1rem;">
911
- Join the open-source movement that's bridging the gap between AI agents and the web.
912
- </p>
913
- <div style="display:flex; gap:16px; justify-content:center; flex-wrap:wrap;">
914
- <a href="/register" class="btn btn-primary btn-lg">Create Free Account</a>
915
- <a href="https://github.com/abokenan444/web-agent-bridge" class="btn btn-secondary btn-lg" target="_blank" rel="noopener">⭐ Star on GitHub</a>
916
- <a href="/docs" class="btn btn-secondary btn-lg">View Documentation</a>
917
- </div>
918
- </div>
919
- </section>
920
-
921
- <!-- ═══════════ FOOTER ═══════════ -->
922
- <footer class="footer">
923
- <div class="container">
924
- <div class="footer-grid">
925
- <div class="footer-brand">
926
- <a href="/" class="navbar-brand">
927
- <div class="brand-icon">⚡</div>
928
- <span>Web Agent Bridge</span>
929
- </a>
930
- <p>Open-source middleware for AI agent and website interaction. Built for the future of intelligent automation.</p>
931
- </div>
932
- <div class="footer-col">
933
- <h4>Product</h4>
934
- <ul>
935
- <li><a href="#features">Features</a></li>
936
- <li><a href="#packages">Framework Packages</a></li>
937
- <li><a href="#integrations">Agent Integrations</a></li>
938
- <li><a href="#pricing">Pricing</a></li>
939
- <li><a href="/docs">Documentation</a></li>
940
- <li><a href="/api">API Gateway</a></li>
941
- <li><a href="/sovereign">Sovereign Dashboard</a></li>
942
- <li><a href="/workspace">Agent Workspace</a></li>
943
- <li data-wab-auth="signed-in" style="display:none"><a href="/dashboard">Dashboard</a></li>
944
- </ul>
945
- </div>
946
- <div class="footer-col">
947
- <h4>Developers</h4>
948
- <ul>
949
- <li><a href="/docs#quick-start">Quick Start</a></li>
950
- <li><a href="/docs#api-reference">API Reference</a></li>
951
- <li><a href="/api">API Modules</a></li>
952
- <li><a href="#examples">Examples</a></li>
953
- <li><a href="https://github.com/abokenan444/web-agent-bridge" target="_blank" rel="noopener">GitHub</a></li>
954
- </ul>
955
- </div>
956
- <div class="footer-col">
957
- <h4>Legal</h4>
958
- <ul>
959
- <li><a href="/privacy">Privacy Policy</a></li>
960
- <li><a href="/terms">Terms of Service</a></li>
961
- <li><a href="/cookies">Cookie Policy</a></li>
962
- </ul>
963
- </div>
964
- </div>
965
- <div class="footer-bottom">
966
- <span>&copy; 2026 Web Agent Bridge. MIT License. Operated from the Netherlands.</span>
967
- </div>
968
- </div>
969
- </footer>
970
-
971
- <script src="/js/auth-nav.js?v=3.0.1"></script>
972
- <script>
973
- const navbar = document.getElementById('navbar');
974
- window.addEventListener('scroll', () => {
975
- navbar.style.background = window.scrollY > 50
976
- ? 'rgba(10, 14, 26, 0.95)'
977
- : 'rgba(10, 14, 26, 0.8)';
978
- });
979
- </script>
980
- <script src="/js/cookie-consent.js?v=3.0.1"></script>
981
- </body>
982
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en" dir="ltr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Web Agent Bridge — Open AI↔Web Protocol & Agent Platform</title>
7
+ <meta name="description" content="The open AI↔Web protocol & agent platform: standardized command interface, sovereign browser, phone shield, DNS discovery, agent mesh, and unified API gateway.">
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <style>body{background:#0a0e1a;color:#f0f4ff;font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;margin:0;min-height:100vh}</style>
11
+ <link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
12
+ <noscript><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"></noscript>
13
+ <link rel="stylesheet" href="/css/styles.css?v=3.0.1">
14
+ </head>
15
+ <body>
16
+
17
+ <!-- ═══════════ NAVBAR ═══════════ -->
18
+ <nav class="navbar" id="navbar">
19
+ <div class="container">
20
+ <a href="/" class="navbar-brand">
21
+ <div class="brand-icon">⚡</div>
22
+ <span>WAB</span>
23
+ </a>
24
+ <ul class="navbar-links">
25
+ <li><a href="#features">Features</a></li>
26
+ <li><a href="#packages">Packages</a></li>
27
+ <li><a href="#integrations">Integrations</a></li>
28
+ <li><a href="#how-it-works">How It Works</a></li>
29
+ <li><a href="#pricing">Pricing</a></li>
30
+ <li><a href="#v2-features">v2.0</a></li>
31
+ <li><a href="#agent-mesh">Agent Mesh</a></li>
32
+ <li><a href="#agent-workspace">Workspace</a></li>
33
+ <li><a href="/demo">Demo</a></li>
34
+ <li><a href="/integrations">Integrations</a></li>
35
+ <li><a href="#latest-additions">What's New</a></li>
36
+ <li><a href="/dns">AI Discovery</a></li>
37
+ <li><a href="/phone-shield">Phone Shield</a></li>
38
+ <li><a href="/growth">Growth Suite</a></li>
39
+ <li><a href="/api">API</a></li>
40
+ <li><a href="/docs">Docs</a></li>
41
+ </ul>
42
+ <div class="navbar-actions">
43
+ <a href="/login" class="btn btn-ghost" data-wab-auth="guest">Sign In</a>
44
+ <a href="/dashboard" class="btn btn-ghost" data-wab-auth="signed-in" style="display:none">Dashboard</a>
45
+ <a href="/register" class="btn btn-primary btn-sm" data-wab-auth="guest">Get Started</a>
46
+ </div>
47
+ <button class="mobile-menu-btn" onclick="document.querySelector('.navbar-links').classList.toggle('active')">☰</button>
48
+ </div>
49
+ </nav>
50
+
51
+ <!-- ═══════════ HERO ═══════════ -->
52
+ <section class="hero">
53
+ <div class="container">
54
+ <div class="hero-content fade-in">
55
+ <div class="hero-badge">
56
+ 🚀 Open Source &middot; React &middot; Vue &middot; Svelte &middot; LangChain
57
+ </div>
58
+ <h1>
59
+ Bridge the Gap Between<br>
60
+ <span class="gradient-text">AI Agents</span> &amp; <span class="gradient-text-accent">Websites</span>
61
+ </h1>
62
+ <p>
63
+ The open <strong>AI↔Web protocol & agent platform</strong>. A standardized command interface, sovereign browser,
64
+ phone shield, DNS discovery, agent mesh, and unified API gateway — with permissions, rate limiting,
65
+ and full control for site owners.
66
+ </p>
67
+ <div class="hero-actions">
68
+ <a href="/register" class="btn btn-primary btn-lg">Start Free</a>
69
+ <a href="/docs" class="btn btn-secondary btn-lg">Read the Docs</a>
70
+ <a href="/browser" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#0ea5e9,#10b981);color:#fff;border:none">🌐 Download WAB Browser</a>
71
+ <a href="/pwa/" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#8b5cf6,#0ea5e9);color:#fff;border:none">📱 Mobile PWA</a>
72
+ <a href="/workspace" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#f59e0b,#ef4444);color:#fff;border:none">🤖 Agent Workspace</a>
73
+ <a href="/demo" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#10b981,#059669);color:#fff;border:none">🧪 API Playground</a>
74
+ <a href="/demo" class="btn btn-secondary btn-lg" style="background:linear-gradient(135deg,#06b6d4,#0ea5e9);color:#fff;border:none">🎮 Interactive Demo</a>
75
+ </div>
76
+
77
+ <div class="hero-code fade-in fade-in-delay-2">
78
+ <code>
79
+ <span class="comment">// Add the bridge to your website</span><br>
80
+ &lt;<span class="keyword">script</span>&gt;<br>
81
+ &nbsp;&nbsp;window.<span class="property">AIBridgeConfig</span> = {<br>
82
+ &nbsp;&nbsp;&nbsp;&nbsp;<span class="property">licenseKey</span>: <span class="string">"WAB-XXXXX-XXXXX"</span>,<br>
83
+ &nbsp;&nbsp;&nbsp;&nbsp;<span class="property">agentPermissions</span>: { <span class="property">click</span>: <span class="boolean">true</span>, <span class="property">fillForms</span>: <span class="boolean">true</span> }<br>
84
+ &nbsp;&nbsp;};<br>
85
+ &lt;/<span class="keyword">script</span>&gt;<br>
86
+ &lt;<span class="keyword">script</span> <span class="property">src</span>=<span class="string">"/script/ai-agent-bridge.js"</span>&gt;&lt;/<span class="keyword">script</span>&gt;
87
+ </code>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </section>
92
+
93
+ <!-- ═══════════ FEATURES ═══════════ -->
94
+ <section class="section" id="features">
95
+ <div class="container">
96
+ <div class="section-header">
97
+ <span class="label">Features</span>
98
+ <h2>Everything AI Agents Need</h2>
99
+ <p>A complete interface layer that makes websites AI-ready with security and control built in.</p>
100
+ </div>
101
+
102
+ <div class="grid-3">
103
+ <div class="card fade-in">
104
+ <div class="card-icon blue">🎯</div>
105
+ <h3>Auto-Discovery</h3>
106
+ <p>Automatically detects buttons, forms, and navigation elements generating precise CSS selectors and action descriptions for AI agents.</p>
107
+ </div>
108
+ <div class="card fade-in fade-in-delay-1">
109
+ <div class="card-icon purple">🔐</div>
110
+ <h3>Permission System</h3>
111
+ <p>Granular control over what AI agents can do. Enable clicking, form filling, API access, and moreeach toggled independently.</p>
112
+ </div>
113
+ <div class="card fade-in fade-in-delay-2">
114
+ <div class="card-icon cyan">⚡</div>
115
+ <h3>Standardized Commands</h3>
116
+ <p>Unified <code>window.AICommands</code> interface that any AI agent can read and execute no more DOM guessing.</p>
117
+ </div>
118
+ <div class="card fade-in fade-in-delay-1">
119
+ <div class="card-icon green">🛡️</div>
120
+ <h3>Rate Limiting</h3>
121
+ <p>Built-in rate limiting prevents abuse. Configure max calls per minute to protect your site from aggressive automation.</p>
122
+ </div>
123
+ <div class="card fade-in fade-in-delay-2">
124
+ <div class="card-icon orange">📊</div>
125
+ <h3>Analytics Dashboard</h3>
126
+ <p>Track how AI agents interact with your site. See which actions are used most, success rates, and usage patterns.</p>
127
+ </div>
128
+ <div class="card fade-in fade-in-delay-3">
129
+ <div class="card-icon pink">🔌</div>
130
+ <h3>Custom Actions</h3>
131
+ <p>Register your own actions with custom handlers. Create complex workflows that AI agents can trigger with a single command.</p>
132
+ </div>
133
+ <div class="card fade-in">
134
+ <div class="card-icon cyan">🛒</div>
135
+ <h3>Commerce &amp; Booking Intents</h3>
136
+ <p>Automatically detects add-to-cart, checkout, booking, and reservation flows — mapping them to named actions agents can call directly.</p>
137
+ </div>
138
+ <div class="card fade-in fade-in-delay-1">
139
+ <div class="card-icon blue">📦</div>
140
+ <h3>Structured Data Scanning</h3>
141
+ <p>Reads schema.org JSON-LD and microdata (Products, Offers, Prices) and exposes them as queryable actions zero manual setup.</p>
142
+ </div>
143
+ <div class="card fade-in fade-in-delay-2">
144
+ <div class="card-icon green">🩹</div>
145
+ <h3>Self-Healing Selectors</h3>
146
+ <p>7-strategy resilient element resolution. When the DOM changes, selectors auto-heal via ARIA, text similarity, and position heuristics.</p>
147
+ </div>
148
+ <div class="card fade-in">
149
+ <div class="card-icon purple">🔏</div>
150
+ <h3>GDPR / CCPA Consent</h3>
151
+ <p>Optional consent banner gates agent actions behind user approval. SDK agents can check <code>hasConsent()</code> or <code>waitForConsent()</code> programmatically.</p>
152
+ </div>
153
+ <div class="card fade-in fade-in-delay-1">
154
+ <div class="card-icon orange">🤖</div>
155
+ <h3>Agent SDK</h3>
156
+ <p>Built-in SDK for Puppeteer and Playwright: <code>runPipeline()</code>, <code>executeParallel()</code>, <code>screenshot()</code>, and consent-aware workflows.</p>
157
+ </div>
158
+ <div class="card fade-in fade-in-delay-2">
159
+ <div class="card-icon pink">🌐</div>
160
+ <h3>WebDriver BiDi</h3>
161
+ <p>Standard WebDriver BiDi protocol support via <code>window.__wab_bidi</code> — compatible with any automation framework that speaks the standard.</p>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ </section>
166
+
167
+ <!-- ═══════════ V2 FEATURES ═══════════ -->
168
+ <section class="section" id="v2-features" style="background: var(--bg-secondary);">
169
+ <div class="container">
170
+ <div class="section-header">
171
+ <span class="label">v2.0 — Digital Fortress</span>
172
+ <h2>Internet Sovereignty Features</h2>
173
+ <p>WAB v2.0 goes beyond bridging — it protects users with negotiation, verification, and decentralized trust.</p>
174
+ </div>
175
+
176
+ <div class="grid-3">
177
+ <div class="card fade-in" style="border-left: 3px solid #f59e0b;">
178
+ <div class="card-icon orange">💰</div>
179
+ <h3>Real-time Negotiation Engine</h3>
180
+ <p>AI agents negotiate prices directly with WAB-enabled sites. Site owners define negotiation rules (bulk discounts, loyalty rewards, time-based offers). Agents submit counter-offers in multi-round sessions — no middleman, no hidden fees.</p>
181
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
182
+ <li>8 condition types (bulk, loyalty, time, first-buy...)</li>
183
+ <li>4 discount types (percentage, fixed, free shipping, bundle)</li>
184
+ <li>Multi-round negotiation with counter-offers</li>
185
+ <li>Savings tracking per agent</li>
186
+ </ul>
187
+ </div>
188
+ <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #ef4444;">
189
+ <div class="card-icon pink">🛡️</div>
190
+ <h3>Anti-Hallucination Shield</h3>
191
+ <p>Cross-verification engine that catches AI lies before they reach users. Compares DOM values against vision screenshots, validates prices against market benchmarks, and checks temporal consistency across sessions.</p>
192
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
193
+ <li>DOM vs Vision verification</li>
194
+ <li>Market benchmark price validation</li>
195
+ <li>Temporal consistency checks</li>
196
+ <li>Text similarity scoring (Levenshtein)</li>
197
+ </ul>
198
+ </div>
199
+ <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #10b981;">
200
+ <div class="card-icon green">⭐</div>
201
+ <h3>Decentralized Reputation</h3>
202
+ <p>Agents and sites build trust through cryptographic attestations. Every interaction gets scored — purchase success, data accuracy, delivery fulfillment. Scores are aggregated into transparent reputation profiles visible to all agents.</p>
203
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
204
+ <li>Trust attestations from agent network</li>
205
+ <li>Weighted scoring by interaction type</li>
206
+ <li>Trust levels: emerging → verified → exemplary</li>
207
+ <li>Global leaderboard</li>
208
+ </ul>
209
+ </div>
210
+ <div class="card fade-in" style="border-left: 3px solid #3b82f6;">
211
+ <div class="card-icon blue">🏰</div>
212
+ <h3>Sovereign Dashboard</h3>
213
+ <p>A real-time command center showing your digital fortress status — protected sites, fairness radar, privacy shield, negotiation logs, and verification checks all in one beautiful dark-mode dashboard.</p>
214
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
215
+ <li>Live fairness radar with safety scoring</li>
216
+ <li>Privacy shield metrics</li>
217
+ <li>AI model switcher (Llama, GPT-4, Claude...)</li>
218
+ <li>Protected sites table with trust levels</li>
219
+ </ul>
220
+ </div>
221
+ <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #8b5cf6;">
222
+ <div class="card-icon purple">📦</div>
223
+ <h3>Community Agent Hub</h3>
224
+ <p>Pre-built YAML agent templates for common use cases — hotel booking, grocery comparison, artisan marketplace, flight deals. Run any template with a single CLI command: <code>npx wab-agent run template.yaml</code>.</p>
225
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
226
+ <li>11 production-ready templates</li>
227
+ <li>CLI runner with variable substitution</li>
228
+ <li>Fairness rules built into every template</li>
229
+ <li>Supports negotiation + verification</li>
230
+ </ul>
231
+ </div>
232
+ <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #0ea5e9;">
233
+ <div class="card-icon cyan">🌐</div>
234
+ <h3>Cross-Site Agent Orchestration</h3>
235
+ <p>One agent manages multiple WAB-enabled sites simultaneously. Compare prices across stores, aggregate product data, run parallel actions — all from a single <code>WABMultiAgent</code> instance in the SDK.</p>
236
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
237
+ <li>Parallel multi-site browser sessions</li>
238
+ <li>comparePrices() with cheapest-deal finder</li>
239
+ <li>Schema.org + WAB action price extraction</li>
240
+ <li>Cross-site screenshots for vision verification</li>
241
+ </ul>
242
+ </div>
243
+ <div class="card fade-in" style="border-left: 3px solid #06b6d4;">
244
+ <div class="card-icon cyan">🔄</div>
245
+ <h3>AI Brain Swapping</h3>
246
+ <p>WAB is the bridge — the AI model is your choice. Switch between Llama 3, GPT-4, Claude, Gemini, Mistral, or run fully local with Ollama. Your data, your model, your sovereignty.</p>
247
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
248
+ <li>6 supported AI engines</li>
249
+ <li>Local-first with Ollama support</li>
250
+ <li>Hot-swap without reconfiguration</li>
251
+ <li>Your data never leaves your machine</li>
252
+ </ul>
253
+ </div>
254
+ </div>
255
+
256
+ <div style="text-align:center; margin-top:32px;">
257
+ <a href="/sovereign" class="btn btn-primary btn-lg">Open Sovereign Dashboard</a>
258
+ </div>
259
+ </div>
260
+ </section>
261
+
262
+ <!-- ═══════════ PRIVATE AGENT MESH ═══════════ -->
263
+ <section class="section" id="agent-mesh">
264
+ <div class="container">
265
+ <div class="section-header">
266
+ <span class="label" style="background: rgba(139,92,246,0.15); color: #8b5cf6;">v2.3 — Distributed Mind</span>
267
+ <h2>Private Agent Mesh</h2>
268
+ <p>Agents communicate, learn, and orchestrate autonomously — zero external LLM dependency. Your private fortress now has a distributed intelligence layer.</p>
269
+ </div>
270
+
271
+ <div class="grid-3">
272
+ <div class="card fade-in" style="border-left: 3px solid #8b5cf6;">
273
+ <div class="card-icon purple">🕸️</div>
274
+ <h3>Inter-Agent Protocol</h3>
275
+ <p>Agents communicate through a private mesh — sharing discoveries, broadcasting alerts, and exchanging tactics in real-time. 5 built-in channels: alerts, discoveries, tactics, negotiations, votes.</p>
276
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
277
+ <li>Real-time agent-to-agent messaging</li>
278
+ <li>Shared knowledge base with confidence scoring</li>
279
+ <li>Priority-based message routing</li>
280
+ <li>Auto-expiring messages with TTL</li>
281
+ </ul>
282
+ </div>
283
+ <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #10b981;">
284
+ <div class="card-icon green">🧠</div>
285
+ <h3>Local Reinforcement Learning</h3>
286
+ <p>Agents learn from every user decision — accepted, rejected, or modified. Multi-armed bandit action selection, gradient-descent policy updates, and behavioral pattern mining. All local, zero tokens consumed.</p>
287
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
288
+ <li>UCB1 multi-armed bandit for action selection</li>
289
+ <li>Sigmoid prediction with gradient descent</li>
290
+ <li>Behavioral sequence pattern mining</li>
291
+ <li>Bayesian confidence estimation</li>
292
+ </ul>
293
+ </div>
294
+ <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #f59e0b;">
295
+ <div class="card-icon orange">🎼</div>
296
+ <h3>Symphony Orchestrator</h3>
297
+ <p>Four specialized agents (Researcher, Analyst, Negotiator, Guardian) collaborate autonomously through rule-based engines. No external AI needed — the symphony runs entirely on local heuristics and learned preferences.</p>
298
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
299
+ <li>5 templates: purchase, price comparison, negotiation, exploration, audit</li>
300
+ <li>6-phase pipeline: compose → discover → analyze → negotiate → guard → decide</li>
301
+ <li>Guardian veto for safety-critical decisions</li>
302
+ <li>Weighted consensus with agreement scoring</li>
303
+ </ul>
304
+ </div>
305
+ </div>
306
+
307
+ <div style="text-align:center; margin-top:32px;">
308
+ <a href="/mesh-dashboard" class="btn btn-primary btn-lg" style="background: #8b5cf6;">Open Agent Mesh Dashboard</a>
309
+ </div>
310
+ </div>
311
+ </section>
312
+
313
+ <!-- ═══════════ AGENT WORKSPACE (v2.5) ═══════════ -->
314
+ <section class="section" id="agent-workspace" style="background: var(--bg-secondary);">
315
+ <div class="container">
316
+ <div class="section-header">
317
+ <span class="label" style="background: rgba(245,158,11,0.15); color: #f59e0b;">v2.5 — Agent Workspace</span>
318
+ <h2>Smart Agent Workspace</h2>
319
+ <p>A premium 4-panel workspace for non-technical users — search, negotiate, and buy with AI assistance. Available in Arabic &amp; English with multilingual agent support.</p>
320
+ </div>
321
+
322
+ <div class="grid-3">
323
+ <div class="card fade-in" style="border-left: 3px solid #0ea5e9;">
324
+ <div class="card-icon blue">🌐</div>
325
+ <h3>Embedded Browser</h3>
326
+ <p>Full browser panel with URL bar, navigation controls, and secure iframe rendering. The agent opens pages, loads deals, and navigates sites — all visible in real-time.</p>
327
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
328
+ <li>Address bar with SSL indicator</li>
329
+ <li>Back, forward, refresh controls</li>
330
+ <li>Maximize any panel to full screen</li>
331
+ </ul>
332
+ </div>
333
+ <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #10b981;">
334
+ <div class="card-icon green">🤖</div>
335
+ <h3>Smart Agent Chat</h3>
336
+ <p>Chat with the AI agent in any language — Arabic, English, French, Turkish, or mix them all. The agent understands your intent from any style, dialect, or slang.</p>
337
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
338
+ <li>Suggestion chips for quick start</li>
339
+ <li>Multilingual responds in your language</li>
340
+ <li>Clarifying questions for precise results</li>
341
+ </ul>
342
+ </div>
343
+ <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #f59e0b;">
344
+ <div class="card-icon orange">📊</div>
345
+ <h3>Negotiation Monitor</h3>
346
+ <p>Watch the agent work in real-time — step-by-step progress tracking, per-agent status cards, and live negotiation rounds with savings details.</p>
347
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
348
+ <li>Multi-step progress visualization</li>
349
+ <li>Per-agent cards with progress bars</li>
350
+ <li>Negotiation round-by-round log</li>
351
+ </ul>
352
+ </div>
353
+ <div class="card fade-in" style="border-left: 3px solid #8b5cf6;">
354
+ <div class="card-icon purple">🏆</div>
355
+ <h3>Results &amp; Actions</h3>
356
+ <p>Compare offers ranked by value with savings percentages, one-click deal links, and an "Agent Do It" button that lets the AI complete the purchase for you.</p>
357
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
358
+ <li>Deal cards with price comparison</li>
359
+ <li>One-click \"Open Deal\" links</li>
360
+ <li>\"Agent Do It\" auto-completion</li>
361
+ </ul>
362
+ </div>
363
+ <div class="card fade-in fade-in-delay-1" style="border-left: 3px solid #ef4444;">
364
+ <div class="card-icon pink">🌍</div>
365
+ <h3>Bilingual UI (AR/EN)</h3>
366
+ <p>Full Arabic and English interface with auto-detection from browser language. Toggle instantly between languages with complete RTL/LTR layout support.</p>
367
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
368
+ <li>100+ translated UI strings</li>
369
+ <li>Auto-detect browser language</li>
370
+ <li>RTL ↔ LTR with one click</li>
371
+ </ul>
372
+ </div>
373
+ <div class="card fade-in fade-in-delay-2" style="border-left: 3px solid #06b6d4;">
374
+ <div class="card-icon cyan">💎</div>
375
+ <h3>Subscription Plans</h3>
376
+ <p>Free tier (5 tasks/day), Starter, Pro (unlimited + advanced negotiation), and Enterprise plans. Admin dashboard for managing users, deals, and analytics.</p>
377
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
378
+ <li>Free, Starter, Pro, Enterprise</li>
379
+ <li>Usage tracking with daily limits</li>
380
+ <li>Admin management panel</li>
381
+ </ul>
382
+ </div>
383
+ <div class="card fade-in" style="border-left: 3px solid #a855f7;">
384
+ <div class="card-icon purple">🛡️</div>
385
+ <h3>Dynamic Pricing Shield</h3>
386
+ <p>Detects when websites manipulate prices based on your device, location, cookies, or browsing history. The agent probes with 12 distinct identities to expose hidden pricing and find the lowest price invisible to normal users.</p>
387
+ <ul style="margin-top:12px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
388
+ <li>12 identity personas (device, geo, referral, privacy)</li>
389
+ <li>Statistical variance &amp; z-score outlier detection</li>
390
+ <li>Manipulation scoring with actionable tips</li>
391
+ <li>Historical price-trend analysis</li>
392
+ </ul>
393
+ </div>
394
+ </div>
395
+
396
+ <div style="text-align:center; margin-top:32px;">
397
+ <a href="/workspace" class="btn btn-primary btn-lg" style="background: linear-gradient(135deg,#f59e0b,#ef4444);">Open Agent Workspace</a>
398
+ </div>
399
+ </div>
400
+ </section>
401
+
402
+ <!-- ═══════════ HOW IT WORKS ═══════════ -->
403
+ <section class="section" id="how-it-works" style="background: var(--bg-secondary);">
404
+ <div class="container">
405
+ <div class="section-header">
406
+ <span class="label">How It Works</span>
407
+ <h2>Three Steps to AI-Ready</h2>
408
+ <p>Get your website ready for AI agents in minutes, not days.</p>
409
+ </div>
410
+
411
+ <div class="grid-3">
412
+ <div class="card" style="text-align:center;">
413
+ <div style="font-size:2.5rem; margin-bottom:16px;">1️⃣</div>
414
+ <h3>Add the Script</h3>
415
+ <p>Include the bridge script in your HTML with your configuration. Set permissions, restrictions, and your license key.</p>
416
+ </div>
417
+ <div class="card" style="text-align:center;">
418
+ <div style="font-size:2.5rem; margin-bottom:16px;">2️⃣</div>
419
+ <h3>Configure Permissions</h3>
420
+ <p>Use the dashboard to fine-tune which actions AI agents can perform. Block sensitive areas and set rate limits.</p>
421
+ </div>
422
+ <div class="card" style="text-align:center;">
423
+ <div style="font-size:2.5rem; margin-bottom:16px;">3️⃣</div>
424
+ <h3>AI Agents Connect</h3>
425
+ <p>AI agents read <code>window.AICommands</code>, discover available actions, and execute them precisely — no DOM scraping needed.</p>
426
+ </div>
427
+ </div>
428
+
429
+ <div style="margin-top:48px;">
430
+ <div class="code-block">
431
+ <div class="code-header">
432
+ <div class="code-dots"><span></span><span></span><span></span></div>
433
+ <span class="code-lang">JavaScript — AI Agent Side</span>
434
+ </div>
435
+ <div class="code-body">
436
+ <pre><span class="cm">// AI Agent reads available commands</span>
437
+ <span class="kw">const</span> bridge = window.<span class="prop">AICommands</span>;
438
+
439
+ <span class="cm">// Discover all available actions</span>
440
+ <span class="kw">const</span> actions = bridge.<span class="fn">getActions</span>();
441
+ console.<span class="fn">log</span>(actions);
442
+ <span class="cm">// [{ name: "signup", trigger: "click", ... }, ...]</span>
443
+
444
+ <span class="cm">// Execute a form fill action</span>
445
+ <span class="kw">const</span> result = <span class="kw">await</span> bridge.<span class="fn">execute</span>(<span class="str">"fill_contact_form"</span>, {
446
+ <span class="prop">name</span>: <span class="str">"John Doe"</span>,
447
+ <span class="prop">email</span>: <span class="str">"john@example.com"</span>,
448
+ <span class="prop">message</span>: <span class="str">"Hello from AI!"</span>
449
+ });
450
+
451
+ <span class="cm">// Wait for dynamic content</span>
452
+ <span class="kw">await</span> bridge.<span class="fn">waitForElement</span>(<span class="str">".success-message"</span>);</pre>
453
+ </div>
454
+ </div>
455
+ </div>
456
+ </div>
457
+ </section>
458
+
459
+ <!-- ═══════════ PRICING ═══════════ -->
460
+ <section class="section" id="pricing">
461
+ <div class="container">
462
+ <div class="section-header">
463
+ <span class="label">Pricing</span>
464
+ <h2>Simple, Transparent Pricing</h2>
465
+ <p>Start free, upgrade when you need advanced features. Open source forever.</p>
466
+ </div>
467
+
468
+ <div class="grid-3">
469
+ <div class="pricing-card">
470
+ <div class="pricing-tier">Free</div>
471
+ <div class="pricing-price">$0 <span>/mo</span></div>
472
+ <div class="pricing-desc">Perfect for personal projects and experimentation.</div>
473
+ <ul class="pricing-features">
474
+ <li>Auto-discovery of actions</li>
475
+ <li>Click &amp; scroll permissions</li>
476
+ <li>Rate limiting (60/min)</li>
477
+ <li>Basic logging</li>
478
+ <li>1 site</li>
479
+ <li class="disabled">Form filling</li>
480
+ <li class="disabled">API access</li>
481
+ <li class="disabled">Analytics dashboard</li>
482
+ </ul>
483
+ <a href="/register" class="btn btn-secondary" style="width:100%;">Get Started Free</a>
484
+ </div>
485
+
486
+ <div class="pricing-card featured">
487
+ <div class="pricing-tier">Pro</div>
488
+ <div class="pricing-price">$29 <span>/mo</span></div>
489
+ <div class="pricing-desc">For businesses that want full AI agent integration.</div>
490
+ <ul class="pricing-features">
491
+ <li>Everything in Free</li>
492
+ <li>Form filling &amp; submission</li>
493
+ <li>Internal API access</li>
494
+ <li>Advanced analytics</li>
495
+ <li>Up to 10 sites</li>
496
+ <li>Automated login support</li>
497
+ <li>Data extraction</li>
498
+ <li>Priority support</li>
499
+ </ul>
500
+ <a href="/register" class="btn btn-primary" style="width:100%;">Start Pro Trial</a>
501
+ </div>
502
+
503
+ <div class="pricing-card">
504
+ <div class="pricing-tier">Enterprise</div>
505
+ <div class="pricing-price">Custom</div>
506
+ <div class="pricing-desc">Custom solutions for large-scale deployments.</div>
507
+ <ul class="pricing-features">
508
+ <li>Everything in Pro</li>
509
+ <li>Unlimited sites</li>
510
+ <li>Custom rate limits</li>
511
+ <li>Webhook integrations</li>
512
+ <li>SSO / SAML</li>
513
+ <li>Dedicated support</li>
514
+ <li>SLA guarantee</li>
515
+ <li>Custom development</li>
516
+ </ul>
517
+ <a href="mailto:sales@webagentbridge.com" class="btn btn-secondary" style="width:100%;">Contact Sales</a>
518
+ </div>
519
+ </div>
520
+ </div>
521
+ </section>
522
+
523
+ <!-- ═══════════ FRAMEWORK PACKAGES ═══════════ -->
524
+ <section class="section" id="packages" style="background: var(--bg-secondary);">
525
+ <div class="container">
526
+ <div class="section-header">
527
+ <span class="label">Packages</span>
528
+ <h2>Use WAB with Your Favorite Framework</h2>
529
+ <p>Official packages for React, Vue, Svelte, and LangChain — with full TypeScript support.</p>
530
+ </div>
531
+
532
+ <div class="grid-3">
533
+ <div class="card fade-in" style="text-align:center;">
534
+ <div style="font-size:2.5rem; margin-bottom:16px;">⚛️</div>
535
+ <h3>React</h3>
536
+ <p><code>@web-agent-bridge/react</code></p>
537
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Hooks: <code>useWAB</code>, <code>useWABAction</code>, <code>useWABActions</code> + <code>WABProvider</code> for auto-loading the script.</p>
538
+ <div class="code-block" style="margin-top:16px; text-align:left;">
539
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
540
+ <pre><span class="kw">const</span> { run, result } = <span class="fn">useWABAction</span>(<span class="str">'addToCart'</span>);
541
+ <span class="kw">await</span> <span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });</pre>
542
+ </div>
543
+ </div>
544
+ </div>
545
+ <div class="card fade-in fade-in-delay-1" style="text-align:center;">
546
+ <div style="font-size:2.5rem; margin-bottom:16px;">💚</div>
547
+ <h3>Vue 3</h3>
548
+ <p><code>@web-agent-bridge/vue</code></p>
549
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Composables: <code>useWAB</code>, <code>useWABAction</code>, <code>useWABActions</code> — reactive refs with loading/error/result state.</p>
550
+ <div class="code-block" style="margin-top:16px; text-align:left;">
551
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
552
+ <pre><span class="kw">const</span> cart = <span class="fn">useWABAction</span>(<span class="str">'addToCart'</span>);
553
+ <span class="kw">await</span> cart.<span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });
554
+ <span class="cm">// cart.result.value, cart.loading.value</span></pre>
555
+ </div>
556
+ </div>
557
+ </div>
558
+ <div class="card fade-in fade-in-delay-2" style="text-align:center;">
559
+ <div style="font-size:2.5rem; margin-bottom:16px;">🔥</div>
560
+ <h3>Svelte</h3>
561
+ <p><code>@web-agent-bridge/svelte</code></p>
562
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Stores: <code>createWAB</code>, <code>createWABAction</code> — subscribe to <code>$store</code> for reactive state.</p>
563
+ <div class="code-block" style="margin-top:16px; text-align:left;">
564
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
565
+ <pre><span class="kw">const</span> cart = <span class="fn">createWABAction</span>(<span class="str">'addToCart'</span>);
566
+ <span class="kw">await</span> cart.<span class="fn">run</span>({ <span class="prop">sku</span>: <span class="str">'ABC123'</span> });
567
+ <span class="cm">// {#if $cart.loading}Adding...{/if}</span></pre>
568
+ </div>
569
+ </div>
570
+ </div>
571
+ </div>
572
+ </div>
573
+ </section>
574
+
575
+ <!-- ═══════════ LLM / AGENT INTEGRATION ═══════════ -->
576
+ <section class="section" id="integrations">
577
+ <div class="container">
578
+ <div class="section-header">
579
+ <span class="label">Agent Integrations</span>
580
+ <h2>Connect Any AI Agent Framework</h2>
581
+ <p>Use WAB with LangChain, MCP, or build your own agent — every action becomes a tool the LLM can call.</p>
582
+ </div>
583
+
584
+ <div class="grid-3">
585
+ <div class="card fade-in" style="text-align:center;">
586
+ <div style="font-size:2.5rem; margin-bottom:16px;">🦜</div>
587
+ <h3>LangChain / LangGraph</h3>
588
+ <p><code>@web-agent-bridge/langchain</code></p>
589
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">WABToolkit wraps every WAB action as a LangChain <code>StructuredTool</code>. Works in HTTP mode (server) or browser mode (Puppeteer).</p>
590
+ <div class="code-block" style="margin-top:16px; text-align:left;">
591
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
592
+ <pre><span class="kw">const</span> tk = <span class="kw">new</span> <span class="fn">WABToolkit</span>({ <span class="prop">siteUrl</span>: <span class="str">'https://shop.example.com'</span> });
593
+ <span class="kw">const</span> tools = <span class="kw">await</span> tk.<span class="fn">getTools</span>();
594
+ <span class="cm">// Pass tools to any LangChain agent</span></pre>
595
+ </div>
596
+ </div>
597
+ </div>
598
+ <div class="card fade-in fade-in-delay-1" style="text-align:center;">
599
+ <div style="font-size:2.5rem; margin-bottom:16px;">🔗</div>
600
+ <h3>MCP Adapter</h3>
601
+ <p><code>wab-mcp-adapter</code></p>
602
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">Converts WAB actions into MCP tools so any MCP-compatible agent (Claude, etc.) can interact with WAB sites through MCP.</p>
603
+ <div class="code-block" style="margin-top:16px; text-align:left;">
604
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
605
+ <pre><span class="kw">const</span> adapter = <span class="kw">new</span> <span class="fn">WABMCPAdapter</span>({ <span class="prop">siteUrl</span>: <span class="str">'...'</span> });
606
+ <span class="kw">const</span> tools = adapter.<span class="fn">listTools</span>();
607
+ <span class="cm">// Built-in: discover, execute, read, search</span></pre>
608
+ </div>
609
+ </div>
610
+ </div>
611
+ <div class="card fade-in fade-in-delay-2" style="text-align:center;">
612
+ <div style="font-size:2.5rem; margin-bottom:16px;">🧰</div>
613
+ <h3>Agent SDK</h3>
614
+ <p><code>web-agent-bridge/sdk</code></p>
615
+ <p style="color:var(--text-secondary); font-size:0.9rem; margin-top:8px;">First-class Puppeteer/Playwright SDK with pipeline execution, parallel actions, screenshot capture, and consent-aware workflows.</p>
616
+ <div class="code-block" style="margin-top:16px; text-align:left;">
617
+ <div class="code-body" style="padding:12px; font-size:0.82rem;">
618
+ <pre><span class="kw">const</span> agent = <span class="kw">new</span> <span class="fn">WABAgent</span>(page);
619
+ <span class="kw">await</span> agent.<span class="fn">waitForConsent</span>();
620
+ <span class="kw">await</span> agent.<span class="fn">runPipeline</span>([...steps]);</pre>
621
+ </div>
622
+ </div>
623
+ </div>
624
+ </div>
625
+ </div>
626
+ </section>
627
+
628
+ <!-- ═══════════ EXAMPLES ═══════════ -->
629
+ <section class="section" id="examples" style="background: var(--bg-secondary);">
630
+ <div class="container">
631
+ <div class="section-header">
632
+ <span class="label">Examples</span>
633
+ <h2>Framework &amp; CMS Integration Examples</h2>
634
+ <p>Ready-to-use examples for popular platforms — see how WAB fits into your stack.</p>
635
+ </div>
636
+
637
+ <div class="grid-3">
638
+ <div class="card fade-in" style="text-align:center;">
639
+ <div style="font-size:2.2rem; margin-bottom:12px;">▲</div>
640
+ <h3>Next.js App Router</h3>
641
+ <p style="color:var(--text-secondary); font-size:0.9rem;">React Server Components + WABProvider for client-side bridge with <code>useWABAction</code> hooks.</p>
642
+ </div>
643
+ <div class="card fade-in fade-in-delay-1" style="text-align:center;">
644
+ <div style="font-size:2.2rem; margin-bottom:12px;">🛍️</div>
645
+ <h3>Shopify Hydrogen</h3>
646
+ <p style="color:var(--text-secondary); font-size:0.9rem;">Hydrogen storefront with cart actions: <code>getCartCount</code>, <code>addFirstVisibleProductToCart</code>.</p>
647
+ </div>
648
+ <div class="card fade-in fade-in-delay-2" style="text-align:center;">
649
+ <div style="font-size:2.2rem; margin-bottom:12px;">📝</div>
650
+ <h3>WordPress + Elementor</h3>
651
+ <p style="color:var(--text-secondary); font-size:0.9rem;">Elementor page builder + WAB schema scanner for auto-discovered product and form actions.</p>
652
+ </div>
653
+ <div class="card fade-in" style="text-align:center;">
654
+ <div style="font-size:2.2rem; margin-bottom:12px;">📊</div>
655
+ <h3>SaaS Dashboard</h3>
656
+ <p style="color:var(--text-secondary); font-size:0.9rem;">Notion-style SaaS with KPI reads, customer lookup, and invoice workflow triggers.</p>
657
+ </div>
658
+ <div class="card fade-in fade-in-delay-1" style="text-align:center;">
659
+ <div style="font-size:2.2rem; margin-bottom:12px;">🤖</div>
660
+ <h3>Puppeteer Agent</h3>
661
+ <p style="color:var(--text-secondary); font-size:0.9rem;">Headless browser agent that discovers and executes actions automatically via the SDK.</p>
662
+ </div>
663
+ <div class="card fade-in fade-in-delay-2" style="text-align:center;">
664
+ <div style="font-size:2.2rem; margin-bottom:12px;">👁️</div>
665
+ <h3>Vision Agent</h3>
666
+ <p style="color:var(--text-secondary); font-size:0.9rem;">Natural language intent resolution — "add product to cart" maps to the right WAB action.</p>
667
+ </div>
668
+ </div>
669
+
670
+ <div style="text-align:center; margin-top:32px;">
671
+ <a href="https://github.com/abokenan444/web-agent-bridge/tree/master/examples" class="btn btn-secondary" target="_blank" rel="noopener">View All Examples on GitHub →</a>
672
+ </div>
673
+ </div>
674
+ </section>
675
+
676
+ <!-- ═══════════ GROWTH SUITE ═══════════ -->
677
+ <section class="section" id="growth-suite" style="background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); color: #fff;">
678
+ <div class="container" style="text-align:center;">
679
+ <div style="display:inline-block; background:rgba(59,130,246,0.15); color:#60a5fa; padding:6px 16px; border-radius:20px; font-size:13px; font-weight:600; margin-bottom:20px;">WAB Growth Suite v2.5</div>
680
+ <h2 style="margin-bottom:16px; color:#fff;">8 Modules to Protect & Power the Web</h2>
681
+ <p style="color:#94a3b8; max-width:600px; margin:0 auto 40px; font-size:1.05rem; line-height:1.6;">
682
+ From link protection widgets to AI safety layers, bounty networks to threat intelligence — everything you need to build a safer, fairer web.
683
+ </p>
684
+ <div style="display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:16px; max-width:960px; margin:0 auto 40px;">
685
+ <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
686
+ <div style="font-size:28px; margin-bottom:8px;">🛡️</div>
687
+ <div style="font-weight:700; font-size:15px;">WAB Widget</div>
688
+ <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Drop-in link protection</div>
689
+ </div>
690
+ <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
691
+ <div style="font-size:28px; margin-bottom:8px;">🤖</div>
692
+ <div style="font-weight:700; font-size:15px;">AI Safety Layer</div>
693
+ <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Security for AI agents</div>
694
+ </div>
695
+ <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
696
+ <div style="font-size:28px; margin-bottom:8px;">📊</div>
697
+ <div style="font-weight:700; font-size:15px;">WAB Score</div>
698
+ <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Platform credit rating</div>
699
+ </div>
700
+ <div style="background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:20px;">
701
+ <div style="font-size:28px; margin-bottom:8px;">💰</div>
702
+ <div style="font-weight:700; font-size:15px;">Bounty Network</div>
703
+ <div style="color:#94a3b8; font-size:13px; margin-top:4px;">Earn by finding scams</div>
704
+ </div>
705
+ </div>
706
+ <a href="/growth" class="btn btn-primary btn-lg">Explore All 8 Modules →</a>
707
+ </div>
708
+ </section>
709
+
710
+ <!-- ═══════════ 1. WAB WIDGET ═══════════ -->
711
+ <section class="wab-widget-section" style="padding: 80px 20px; background: #f8fafc; text-align: center;">
712
+ <div style="max-width: 800px; margin: 0 auto;">
713
+ <h2 style="font-size: 36px; color: #0f172a; margin-bottom: 16px;">One Line of Code. Full Link Protection.</h2>
714
+ <p style="font-size: 18px; color: #64748b; margin-bottom: 32px;">
715
+ Add a <strong>WAB Widget</strong> next to every external link on your site, blocking phishing and scam URLs in real-time for your visitors.
716
+ </p>
717
+ <div style="background: #0f172a; color: #e2e8f0; padding: 24px; border-radius: 12px; font-family: 'JetBrains Mono', monospace; font-size: 14px; text-align: left; margin-bottom: 24px; overflow-x: auto;">
718
+ <span style="color:#f472b6">&lt;script</span> <span style="color:#a78bfa">src</span>=<span style="color:#86efac">"https://webagentbridge.com/script/ai-agent-bridge.js"</span><br>
719
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#a78bfa">data-wab-key</span>=<span style="color:#86efac">"YOUR_API_KEY"</span><span style="color:#f472b6">&gt;&lt;/script&gt;</span>
720
+ </div>
721
+ <div style="display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;">
722
+ <a href="/growth#modules" class="btn btn-primary">See Widget Demo</a>
723
+ <a href="/workspace" class="btn btn-secondary">Get Your API Key →</a>
724
+ </div>
725
+ </div>
726
+ </section>
727
+
728
+ <!-- ═══════════ 2. AI SAFETY LAYER ═══════════ -->
729
+ <section class="ai-safety-section" style="padding: 80px 20px; background: #0f172a; color: #fff;">
730
+ <div style="max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;">
731
+ <div>
732
+ <div style="color: #3b82f6; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; font-size: 12px;">FOR AI COMPANIES</div>
733
+ <h2 style="font-size: 32px; margin-bottom: 16px;">Mandatory Safety for AI Agents</h2>
734
+ <p style="color: #94a3b8; font-size: 16px; line-height: 1.6; margin-bottom: 24px;">
735
+ Building an AI agent that browses the web? Use <strong>WAB AI Safety Layer</strong> as a mandatory security wrapper. It scans every URL before your agent visits it.
736
+ </p>
737
+ <ul style="list-style: none; padding: 0; color: #cbd5e1; margin-bottom: 32px;">
738
+ <li style="margin-bottom: 12px;">✅ Compatible with OpenAI Operator &amp; Anthropic Computer Use</li>
739
+ <li style="margin-bottom: 12px;">✅ Blocks fraudulent financial transactions automatically</li>
740
+ <li style="margin-bottom: 12px;">✅ Lifts legal liability from your company</li>
741
+ </ul>
742
+ <a href="/docs" class="btn btn-primary">Read AI Safety Docs →</a>
743
+ </div>
744
+ <div style="background: #1e293b; padding: 24px; border-radius: 16px; border: 1px solid #334155; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.7; overflow-x: auto;">
745
+ <span style="color:#c678dd">import</span> { WABAgentWrapper } <span style="color:#c678dd">from</span> <span style="color:#98c379">'@wab/sdk'</span>;<br><br>
746
+ <span style="color:#5c6370">// Wrap your AI Agent with WAB Safety</span><br>
747
+ <span style="color:#c678dd">const</span> safeAgent = <span style="color:#c678dd">new</span> <span style="color:#61afef">WABAgentWrapper</span>(myAgent, {<br>
748
+ &nbsp;&nbsp;<span style="color:#d19a66">blockCritical</span>: <span style="color:#d19a66">true</span>,<br>
749
+ &nbsp;&nbsp;<span style="color:#d19a66">minFairness</span>: <span style="color:#d19a66">60</span>,<br>
750
+ });<br><br>
751
+ <span style="color:#5c6370">// WAB will block this if the site is a scam</span><br>
752
+ <span style="color:#c678dd">await</span> safeAgent.<span style="color:#61afef">browse</span>(<span style="color:#98c379">'https://scam-site.xyz'</span>);<br>
753
+ <span style="color:#e06c75">→ WABBlockedError: Phishing detected</span>
754
+ </div>
755
+ </div>
756
+ </section>
757
+
758
+ <!-- ═══════════ 3. WAB SCORE ═══════════ -->
759
+ <section class="wab-score-section" style="padding: 80px 20px; background: white; text-align: center;">
760
+ <div style="max-width: 800px; margin: 0 auto;">
761
+ <h2 style="font-size: 36px; color: #0f172a; margin-bottom: 16px;">The Digital World's Credit Rating</h2>
762
+ <p style="font-size: 18px; color: #64748b; margin-bottom: 40px;">
763
+ Like credit agencies rate banks, <strong>WAB Score</strong> rates digital platforms. Search any platform and get a transparency score based on 15 fairness signals.
764
+ </p>
765
+ <div style="display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px;">
766
+ <div style="border: 2px solid #22c55e; border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; background: #fff;">
767
+ <div style="font-size: 32px; font-weight: 900; color: #22c55e; line-height: 1;">A-</div>
768
+ <div>
769
+ <div style="font-weight: 700; color: #1e293b;">Very Good</div>
770
+ <div style="font-size: 12px; color: #64748b;">86/100 · amazon.com</div>
771
+ </div>
772
+ </div>
773
+ <div style="border: 2px solid #f59e0b; border-radius: 12px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; background: #fff;">
774
+ <div style="font-size: 32px; font-weight: 900; color: #f59e0b; line-height: 1;">C+</div>
775
+ <div>
776
+ <div style="font-weight: 700; color: #1e293b;">Below Average</div>
777
+ <div style="font-size: 12px; color: #64748b;">68/100 · aliexpress.com</div>
778
+ </div>
779
+ </div>
780
+ </div>
781
+ <form action="/score" method="GET" style="display: flex; max-width: 500px; margin: 0 auto; gap: 8px;">
782
+ <input type="text" name="domain" placeholder="Enter platform domain (e.g. shein.com)" style="flex: 1; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 15px;">
783
+ <button type="submit" style="background: #0f172a; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-weight: 700; cursor: pointer;">Check Score</button>
784
+ </form>
785
+ </div>
786
+ </section>
787
+
788
+ <!-- ═══════════ 4. TRUST LAYER PROTOCOL ═══════════ -->
789
+ <section style="padding: 60px 20px; background: #f1f5f9; border-top: 1px solid #e2e8f0;">
790
+ <div style="max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;">
791
+ <div style="flex: 1; min-width: 280px;">
792
+ <h3 style="font-size: 24px; color: #0f172a; margin-bottom: 12px;">The Open Trust Protocol</h3>
793
+ <p style="color: #475569; line-height: 1.6; margin-bottom: 20px;">
794
+ Prove to your customers that your store is fair and safe. Add a <code>wab.json</code> file to your site and print a verified trust badge — the SSL padlock for platform fairness.
795
+ </p>
796
+ <a href="/docs" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Learn how to get WAB Certified →</a>
797
+ </div>
798
+ <div style="flex: 1; min-width: 280px; background: white; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0;">
799
+ <div style="font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #334155;">
800
+ <span style="color:#94a3b8">// /.well-known/wab.json</span><br>
801
+ {<br>
802
+ &nbsp;&nbsp;"wab_certified": <span style="color:#22c55e">true</span>,<br>
803
+ &nbsp;&nbsp;"fairness_score": <span style="color:#3b82f6">92</span>,<br>
804
+ &nbsp;&nbsp;"last_audit": <span style="color:#a3e635">"2026-04-01"</span><br>
805
+ }
806
+ </div>
807
+ </div>
808
+ </div>
809
+ </section>
810
+
811
+ <!-- ═══════════ 5. BOUNTY NETWORK ═══════════ -->
812
+ <section style="padding: 80px 20px; background: #0f172a; color: white; text-align: center;">
813
+ <div style="max-width: 700px; margin: 0 auto;">
814
+ <div style="font-size: 48px; margin-bottom: 16px;">💰</div>
815
+ <h2 style="font-size: 36px; margin-bottom: 16px;">Earn Money by Discovering Fraud</h2>
816
+ <p style="font-size: 18px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6;">
817
+ Join the <strong>WAB Bounty Network</strong> and report phishing, scams, and malware that automated systems haven't caught yet. Earn credits redeemable for cash.
818
+ </p>
819
+ <div style="display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap;">
820
+ <div style="background: #1e293b; padding: 16px 24px; border-radius: 8px;">
821
+ <div style="font-size: 24px; font-weight: 700; color: #ef4444;">50 Credits</div>
822
+ <div style="font-size: 13px; color: #94a3b8;">Critical Threats</div>
823
+ </div>
824
+ <div style="background: #1e293b; padding: 16px 24px; border-radius: 8px;">
825
+ <div style="font-size: 24px; font-weight: 700; color: #f59e0b;">25 Credits</div>
826
+ <div style="font-size: 13px; color: #94a3b8;">Confirmed Scams</div>
827
+ </div>
828
+ </div>
829
+ <a href="/register" class="btn btn-primary btn-lg">Start Earning →</a>
830
+ </div>
831
+ </section>
832
+
833
+ <!-- ═══════════ 6. DATA MARKETPLACE ═══════════ -->
834
+ <section style="padding: 80px 20px; background: white;">
835
+ <div style="max-width: 1000px; margin: 0 auto; text-align: center;">
836
+ <h2 style="font-size: 32px; color: #0f172a; margin-bottom: 16px;">Threat Intelligence for AI &amp; Security</h2>
837
+ <p style="font-size: 18px; color: #64748b; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto;">
838
+ <strong>WAB Data Marketplace</strong> provides curated threat intelligence datasets for cybersecurity companies and AI model training.
839
+ </p>
840
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;">
841
+ <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
842
+ <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Threat Intelligence Feed</h4>
843
+ <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Real-time phishing, malware, and scam URL data from 47 databases. Updated continuously.</p>
844
+ <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
845
+ </div>
846
+ <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
847
+ <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Platform Fairness Data</h4>
848
+ <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Quarterly transparency scores for 500+ marketplaces hidden fees, return policies, dark patterns.</p>
849
+ <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
850
+ </div>
851
+ <div style="border: 1px solid #e2e8f0; padding: 24px; border-radius: 12px; text-align: left;">
852
+ <h4 style="font-size: 18px; margin-bottom: 8px; color: #0f172a;">Affiliate Intelligence</h4>
853
+ <p style="color: #64748b; font-size: 14px; margin-bottom: 16px;">Commission benchmarks, fraud patterns, and network reliability scores across all major affiliate platforms.</p>
854
+ <a href="/workspace" style="color: #3b82f6; font-weight: 600; text-decoration: none;">Explore Data →</a>
855
+ </div>
856
+ </div>
857
+ </div>
858
+ </section>
859
+
860
+ <!-- ═══════════ 7. EMAIL PROTECTION ═══════════ -->
861
+ <section style="padding: 60px 20px; background: #f8fafc;">
862
+ <div style="max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;">
863
+ <div style="flex: 1; min-width: 280px;">
864
+ <h3 style="font-size: 28px; color: #0f172a; margin-bottom: 16px;">Email Protection</h3>
865
+ <p style="color: #475569; font-size: 16px; line-height: 1.6; margin-bottom: 24px;">
866
+ 94% of cyber breaches start with a phishing email. Install the WAB extension and every link and sender in your inbox gets scanned by WAB automatically.
867
+ </p>
868
+ <div style="display: flex; gap: 12px; flex-wrap: wrap;">
869
+ <a href="/downloads" style="background: #fff; border: 1px solid #cbd5e1; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #1e293b; font-weight: 600; font-size: 14px;">🌐 Chrome Extension</a>
870
+ <a href="/downloads" style="background: #fff; border: 1px solid #cbd5e1; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #1e293b; font-weight: 600; font-size: 14px;">🦊 Firefox Add-on</a>
871
+ </div>
872
+ </div>
873
+ <div style="flex: 1; min-width: 280px; background: white; padding: 16px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);">
874
+ <div style="background: #fef2f2; border-left: 4px solid #ef4444; padding: 12px 16px; border-radius: 4px; margin-bottom: 16px;">
875
+ <strong style="color: #991b1b; font-size: 13px;">🚫 WAB Security Alert:</strong>
876
+ <span style="color: #991b1b; font-size: 13px;"> Dangerous link detected</span>
877
+ <div style="color: #b91c1c; font-size: 12px; margin-top: 4px;">PHISHING DETECTED — paypa1-secure-login.xyz scored 95/100 risk</div>
878
+ </div>
879
+ <div style="height: 12px; background: #f1f5f9; width: 60%; margin-bottom: 8px; border-radius: 4px;"></div>
880
+ <div style="height: 12px; background: #f1f5f9; width: 80%; margin-bottom: 8px; border-radius: 4px;"></div>
881
+ <div style="height: 12px; background: #f1f5f9; width: 40%; border-radius: 4px;"></div>
882
+ </div>
883
+ </div>
884
+ </section>
885
+
886
+ <!-- ═══════════ 8. AFFILIATE INTELLIGENCE ═══════════ -->
887
+ <section style="padding: 80px 20px; background: #0f172a; color: white; text-align: center;">
888
+ <div style="max-width: 800px; margin: 0 auto;">
889
+ <h2 style="font-size: 36px; margin-bottom: 16px;">Are Affiliate Networks Stealing Your Commissions?</h2>
890
+ <p style="font-size: 18px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6;">
891
+ <strong>WAB Affiliate Intelligence</strong> analyzes your affiliate data and compares it with industry benchmarks to detect commission shaving, cookie stuffing, and payment delays.
892
+ </p>
893
+ <div style="background: #1e293b; border: 1px solid #334155; border-radius: 16px; padding: 24px; text-align: left; max-width: 600px; margin: 0 auto 32px; font-family: 'JetBrains Mono', monospace;">
894
+ <div style="display: flex; justify-content: space-between; border-bottom: 1px solid #334155; padding-bottom: 12px; margin-bottom: 12px;">
895
+ <div>
896
+ <div style="color: #94a3b8; font-size: 12px; margin-bottom: 4px;">Network</div>
897
+ <div style="font-weight: 700; font-size: 16px;">ClickBank</div>
898
+ </div>
899
+ <div style="text-align: right;">
900
+ <div style="color: #94a3b8; font-size: 12px; margin-bottom: 4px;">Fraud Risk</div>
901
+ <div style="font-weight: 700; font-size: 16px; color: #f59e0b;">MEDIUM</div>
902
+ </div>
903
+ </div>
904
+ <div style="color: #cbd5e1; font-size: 14px; margin-bottom: 8px;">⚠️ <strong>Commission Shaving:</strong> 12% of valid sales cancelled</div>
905
+ <div style="color: #cbd5e1; font-size: 14px;">⚠️ <strong>Payment Delays:</strong> Average 45 days vs industry 30</div>
906
+ </div>
907
+ <a href="/register" class="btn btn-primary btn-lg">Analyze Your Networks →</a>
908
+ </div>
909
+ </section>
910
+
911
+ <!-- ═══════════ LATEST ADDITIONS ═══════════ -->
912
+ <section class="section" id="latest-additions" style="background: var(--bg-secondary);">
913
+ <div class="container">
914
+ <div class="section-header">
915
+ <span class="label">Latest Additions</span>
916
+ <h2>All New Modules, Integrations &amp; Security Layers</h2>
917
+ <p>Everything added recently is listed here with direct links, so teams and users can immediately open what they need.</p>
918
+ </div>
919
+
920
+ <div class="grid-3">
921
+ <div class="card fade-in" style="border-left:3px solid #0ea5e9;">
922
+ <div class="card-icon cyan">📱</div>
923
+ <h3>Sovereign Phone Shield</h3>
924
+ <p>Communication protection stack with behavioral IDS, threat-intel feed, community reporting, and personal vault encryption.</p>
925
+ <ul style="margin-top:10px;font-size:0.85rem;color:var(--text-secondary);list-style:disc;padding-left:20px;">
926
+ <li>Connection analysis: allow / warn / block</li>
927
+ <li>Mobile device telemetry endpoints</li>
928
+ <li>AES-256-GCM personal vault</li>
929
+ </ul>
930
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
931
+ <a href="/phone-shield" class="btn btn-primary btn-sm">Open Shield</a>
932
+ <a href="/api/sovereign/shield/stats" class="btn btn-secondary btn-sm">Live Stats API</a>
933
+ </div>
934
+ </div>
935
+
936
+ <div class="card fade-in fade-in-delay-1" style="border-left:3px solid #6366f1;">
937
+ <div class="card-icon purple">🚀</div>
938
+ <h3>One-Click Integrations Hub</h3>
939
+ <p>Ready deploy packs for Vercel, Netlify, Railway, Cloudflare Workers, Docker, Linux installer, and WordPress MU plugin.</p>
940
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
941
+ <a href="/integrations" class="btn btn-primary btn-sm">Open Integrations</a>
942
+ <a href="https://github.com/abokenan444/web-agent-bridge/tree/master/integrations" target="_blank" rel="noopener" class="btn btn-secondary btn-sm">GitHub Templates</a>
943
+ </div>
944
+ </div>
945
+
946
+ <div class="card fade-in fade-in-delay-2" style="border-left:3px solid #10b981;">
947
+ <div class="card-icon green">🧩</div>
948
+ <h3>Shared Hosting PHP Bridge</h3>
949
+ <p>Production-ready PHP bridge for shared hosting environments where Node daemons are not available.</p>
950
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
951
+ <a href="https://github.com/abokenan444/web-agent-bridge/tree/master/integrations/shared-hosting" target="_blank" rel="noopener" class="btn btn-primary btn-sm">Shared Hosting Pack</a>
952
+ <a href="https://github.com/abokenan444/web-agent-bridge/blob/master/integrations/shared-hosting/README.ar.md" target="_blank" rel="noopener" class="btn btn-secondary btn-sm">Arabic Guide</a>
953
+ </div>
954
+ </div>
955
+
956
+ <div class="card fade-in" style="border-left:3px solid #f59e0b;">
957
+ <div class="card-icon orange">🌐</div>
958
+ <h3>Make Your Site AI-Discoverable in 5 Minutes</h3>
959
+ <p>One TXT record at <code>_wab.yourdomain.com</code> and any compatible AI agent finds your <code>wab.json</code> automatically — no HTTP probing, no manual integration. Run <code>npx wab init</code> to scaffold everything in seconds, then paste one line into your DNS panel. Live DoH-based verifier included for Cloudflare, cPanel, GoDaddy, Namecheap, Route 53, and more.</p>
960
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
961
+ <a href="/dns" class="btn btn-primary btn-sm">Make my site AI-discoverable</a>
962
+ <a href="/dns#verifier" class="btn btn-secondary btn-sm">Live Verifier</a>
963
+ <a href="https://github.com/abokenan444/web-agent-bridge/blob/master/DNS-DISCOVERY.md" target="_blank" rel="noopener" class="btn btn-secondary btn-sm">EN Guide</a>
964
+ <a href="https://github.com/abokenan444/web-agent-bridge/blob/master/DNS-DISCOVERY.ar.md" target="_blank" rel="noopener" class="btn btn-secondary btn-sm">AR Guide</a>
965
+ </div>
966
+ </div>
967
+
968
+ <div class="card fade-in fade-in-delay-1" style="border-left:3px solid #06b6d4;">
969
+ <div class="card-icon cyan">🎮</div>
970
+ <h3>New Interactive Demo Store</h3>
971
+ <p>Fully interactive WAB demo at <code>/demo</code> with live product API, agent activity stream, and wab.json discovery.</p>
972
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
973
+ <a href="/demo" class="btn btn-primary btn-sm">Open Demo</a>
974
+ <a href="/demo/.well-known/wab.json" class="btn btn-secondary btn-sm">Demo wab.json</a>
975
+ </div>
976
+ </div>
977
+
978
+ <div class="card fade-in fade-in-delay-2" style="border-left:3px solid #ec4899;">
979
+ <div class="card-icon pink">🔌</div>
980
+ <h3>API Gateway + 10 Modules</h3>
981
+ <p>Unified authenticated gateway for protocol discovery, firewall, bounty, price shield, notary, neural analysis, and more.</p>
982
+ <div style="margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;">
983
+ <a href="/api" class="btn btn-primary btn-sm">Open API Page</a>
984
+ <a href="/api/v1/health" class="btn btn-secondary btn-sm">Gateway Health</a>
985
+ </div>
986
+ </div>
987
+ </div>
988
+ </div>
989
+ </section>
990
+
991
+ <!-- ═══════════ CTA ═══════════ -->
992
+ <section class="section" style="text-align:center;">
993
+ <div class="container">
994
+ <h2 style="margin-bottom:16px;">Ready to Make Your Site <span class="gradient-text">AI-Ready</span>?</h2>
995
+ <p style="color:var(--text-secondary); max-width:540px; margin:0 auto 32px; font-size:1.1rem;">
996
+ Join the open-source movement that's bridging the gap between AI agents and the web.
997
+ </p>
998
+ <div style="display:flex; gap:16px; justify-content:center; flex-wrap:wrap;">
999
+ <a href="/register" class="btn btn-primary btn-lg">Create Free Account</a>
1000
+ <a href="https://github.com/abokenan444/web-agent-bridge" class="btn btn-secondary btn-lg" target="_blank" rel="noopener">⭐ Star on GitHub</a>
1001
+ <a href="/docs" class="btn btn-secondary btn-lg">View Documentation</a>
1002
+ </div>
1003
+ </div>
1004
+ </section>
1005
+
1006
+ <!-- ═══════════ FOOTER ═══════════ -->
1007
+ <footer class="footer">
1008
+ <div class="container">
1009
+ <div class="footer-grid">
1010
+ <div class="footer-brand">
1011
+ <a href="/" class="navbar-brand">
1012
+ <div class="brand-icon">⚡</div>
1013
+ <span>Web Agent Bridge</span>
1014
+ </a>
1015
+ <p>The open AI↔Web protocol & agent platform — standardized commands, sovereign browser, phone shield, DNS discovery, agent mesh, and unified API gateway. Built for the future of intelligent automation.</p>
1016
+ </div>
1017
+ <div class="footer-col">
1018
+ <h4>Product</h4>
1019
+ <ul>
1020
+ <li><a href="#features">Features</a></li>
1021
+ <li><a href="#packages">Framework Packages</a></li>
1022
+ <li><a href="#integrations">Agent Integrations</a></li>
1023
+ <li><a href="#pricing">Pricing</a></li>
1024
+ <li><a href="/docs">Documentation</a></li>
1025
+ <li><a href="/api">API Gateway</a></li>
1026
+ <li><a href="/integrations">Integrations</a></li>
1027
+ <li><a href="/dns">AI Discovery</a></li>
1028
+ <li><a href="/phone-shield">Phone Shield</a></li>
1029
+ <li><a href="/sovereign">Sovereign Dashboard</a></li>
1030
+ <li><a href="/workspace">Agent Workspace</a></li>
1031
+ <li data-wab-auth="signed-in" style="display:none"><a href="/dashboard">Dashboard</a></li>
1032
+ </ul>
1033
+ </div>
1034
+ <div class="footer-col">
1035
+ <h4>Developers</h4>
1036
+ <ul>
1037
+ <li><a href="/docs#quick-start">Quick Start</a></li>
1038
+ <li><a href="/docs#api-reference">API Reference</a></li>
1039
+ <li><a href="/api">API Modules</a></li>
1040
+ <li><a href="#examples">Examples</a></li>
1041
+ <li><a href="https://github.com/abokenan444/web-agent-bridge" target="_blank" rel="noopener">GitHub</a></li>
1042
+ </ul>
1043
+ </div>
1044
+ <div class="footer-col">
1045
+ <h4>Legal</h4>
1046
+ <ul>
1047
+ <li><a href="/privacy">Privacy Policy</a></li>
1048
+ <li><a href="/terms">Terms of Service</a></li>
1049
+ <li><a href="/cookies">Cookie Policy</a></li>
1050
+ </ul>
1051
+ </div>
1052
+ </div>
1053
+ <div class="footer-bottom">
1054
+ <span>&copy; 2026 Web Agent Bridge. MIT License. Operated from the Netherlands.</span>
1055
+ </div>
1056
+ </div>
1057
+ </footer>
1058
+
1059
+ <script src="/js/auth-nav.js?v=3.0.1"></script>
1060
+ <script>
1061
+ const navbar = document.getElementById('navbar');
1062
+ window.addEventListener('scroll', () => {
1063
+ navbar.style.background = window.scrollY > 50
1064
+ ? 'rgba(10, 14, 26, 0.95)'
1065
+ : 'rgba(10, 14, 26, 0.8)';
1066
+ });
1067
+ </script>
1068
+ <script src="/js/cookie-consent.js?v=3.0.1"></script>
1069
+ </body>
1070
+ </html>