web-agent-bridge 2.9.0 → 3.2.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.
- package/LICENSE +51 -0
- package/README.ar.md +79 -0
- package/README.md +104 -4
- package/package.json +2 -1
- package/public/.well-known/ai-plugin.json +28 -0
- package/public/agent-workspace.html +3 -1
- package/public/ai.html +5 -3
- package/public/api.html +412 -0
- package/public/browser.html +4 -2
- package/public/cookies.html +4 -2
- package/public/dashboard.html +5 -3
- package/public/demo.html +1770 -1
- package/public/docs.html +6 -4
- package/public/growth.html +463 -0
- package/public/index.html +982 -738
- package/public/llms-full.txt +52 -1
- package/public/llms.txt +39 -0
- package/public/login.html +6 -4
- package/public/premium-dashboard.html +7 -5
- package/public/premium.html +6 -4
- package/public/privacy.html +4 -2
- package/public/register.html +6 -4
- package/public/score.html +263 -0
- package/public/terms.html +4 -2
- package/sdk/index.js +7 -1
- package/sdk/package.json +12 -1
- package/server/index.js +427 -375
- package/server/middleware/rateLimits.js +3 -3
- package/server/migrations/006_growth_suite.sql +138 -0
- package/server/routes/agent-workspace.js +162 -0
- package/server/routes/demo-showcase.js +332 -0
- package/server/routes/discovery.js +18 -7
- package/server/routes/gateway.js +157 -0
- package/server/routes/growth.js +962 -0
- package/server/routes/runtime.js +204 -0
- package/server/routes/universal.js +9 -1
- package/server/routes/wab-api.js +16 -6
- package/server/runtime/container-worker.js +111 -0
- package/server/runtime/container.js +448 -0
- package/server/runtime/distributed-worker.js +362 -0
- package/server/runtime/index.js +21 -1
- package/server/runtime/queue.js +599 -0
- package/server/runtime/replay.js +431 -29
- package/server/runtime/scheduler.js +194 -55
- package/server/services/api-key-engine.js +261 -0
- package/server/services/lfd.js +22 -3
- package/server/services/modules/affiliate-intelligence.js +93 -0
- package/server/services/modules/agent-firewall.js +90 -0
- package/server/services/modules/bounty.js +89 -0
- package/server/services/modules/collective-bargaining.js +92 -0
- package/server/services/modules/dark-pattern.js +66 -0
- package/server/services/modules/gov-intelligence.js +45 -0
- package/server/services/modules/neural.js +55 -0
- package/server/services/modules/notary.js +49 -0
- package/server/services/modules/price-time-machine.js +86 -0
- package/server/services/modules/protocol.js +104 -0
- package/server/services/premium.js +1 -1
- package/server/services/price-intelligence.js +2 -1
- package/server/services/vision.js +2 -2
package/public/index.html
CHANGED
|
@@ -1,738 +1,982 @@
|
|
|
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
|
-
<
|
|
11
|
-
<link rel="
|
|
12
|
-
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<li><a href="#
|
|
26
|
-
<li><a href="#
|
|
27
|
-
<li><a href="#
|
|
28
|
-
<li><a href="#
|
|
29
|
-
<li><a href="#
|
|
30
|
-
<li><a href="#
|
|
31
|
-
<li><a href="
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<a href="/
|
|
35
|
-
<a href="/
|
|
36
|
-
<a href="/
|
|
37
|
-
</
|
|
38
|
-
<
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
<
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
<
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
<
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
<
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
<
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
<
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
<
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
<
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
<
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
</
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
</
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
</
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
</
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
</
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
</
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
</
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
</
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
</
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
</
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
<
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
<
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
<
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
<
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
<
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
<
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
</
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
<
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
<
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
<
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
<
|
|
425
|
-
<
|
|
426
|
-
|
|
427
|
-
<
|
|
428
|
-
<span class="
|
|
429
|
-
|
|
430
|
-
<
|
|
431
|
-
|
|
432
|
-
<span class="
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
<span class="cm">//
|
|
440
|
-
<span class="kw">await</span> bridge.<span class="fn">
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
<li
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
<
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
<li>
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
<
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
<li>
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
<
|
|
529
|
-
<
|
|
530
|
-
|
|
531
|
-
</
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
<
|
|
541
|
-
<
|
|
542
|
-
<
|
|
543
|
-
|
|
544
|
-
</
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
<
|
|
554
|
-
<
|
|
555
|
-
<
|
|
556
|
-
|
|
557
|
-
</
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
<
|
|
581
|
-
<
|
|
582
|
-
<
|
|
583
|
-
|
|
584
|
-
</
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
<
|
|
594
|
-
<
|
|
595
|
-
<
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
<
|
|
607
|
-
<
|
|
608
|
-
<
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
<
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
<
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
<
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
<
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
<
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
</
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
</
|
|
688
|
-
<
|
|
689
|
-
</div>
|
|
690
|
-
<div
|
|
691
|
-
<
|
|
692
|
-
<
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
</
|
|
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 · React · Vue · Svelte · LangChain
|
|
53
|
+
</div>
|
|
54
|
+
<h1>
|
|
55
|
+
Bridge the Gap Between<br>
|
|
56
|
+
<span class="gradient-text">AI Agents</span> & <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
|
+
<<span class="keyword">script</span>><br>
|
|
76
|
+
window.<span class="property">AIBridgeConfig</span> = {<br>
|
|
77
|
+
<span class="property">licenseKey</span>: <span class="string">"WAB-XXXXX-XXXXX"</span>,<br>
|
|
78
|
+
<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
|
+
};<br>
|
|
80
|
+
</<span class="keyword">script</span>><br>
|
|
81
|
+
<<span class="keyword">script</span> <span class="property">src</span>=<span class="string">"/script/ai-agent-bridge.js"</span>></<span class="keyword">script</span>>
|
|
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 execute — no 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 & 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 & 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 & 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 & 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 & 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 & 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 & 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"><script</span> <span style="color:#a78bfa">src</span>=<span style="color:#86efac">"https://webagentbridge.com/script/ai-agent-bridge.js"</span><br>
|
|
714
|
+
<span style="color:#a78bfa">data-wab-key</span>=<span style="color:#86efac">"YOUR_API_KEY"</span><span style="color:#f472b6">></script></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 & 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
|
+
<span style="color:#d19a66">blockCritical</span>: <span style="color:#d19a66">true</span>,<br>
|
|
744
|
+
<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
|
+
"wab_certified": <span style="color:#22c55e">true</span>,<br>
|
|
798
|
+
"fairness_score": <span style="color:#3b82f6">92</span>,<br>
|
|
799
|
+
"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 & 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>© 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>
|