web-agent-bridge 3.3.0 → 3.4.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 +12 -0
- package/README.ar.md +18 -0
- package/README.md +198 -1664
- package/bin/wab-init.js +223 -0
- package/examples/azure-dns-wab.js +83 -0
- package/examples/cloudflare-wab-dns.js +121 -0
- package/examples/cpanel-wab-dns.js +114 -0
- package/examples/dns-discovery-agent.js +166 -0
- package/examples/gcp-dns-wab.js +76 -0
- package/examples/governance-agent.js +169 -0
- package/examples/plesk-wab-dns.js +103 -0
- package/examples/route53-wab-dns.js +144 -0
- package/examples/safe-mode-agent.js +96 -0
- package/examples/wab-sign.js +74 -0
- package/examples/wab-verify.js +60 -0
- package/package.json +5 -5
- package/public/.well-known/wab.json +28 -0
- package/public/activate.html +368 -0
- package/public/adoption-metrics.html +188 -0
- package/public/api.html +1 -1
- package/public/azure-dns-integration.html +289 -0
- package/public/cloudflare-integration.html +380 -0
- package/public/cpanel-integration.html +398 -0
- package/public/css/styles.css +28 -0
- package/public/dashboard.html +1 -0
- package/public/dns.html +101 -172
- package/public/docs.html +1 -0
- package/public/gcp-dns-integration.html +318 -0
- package/public/growth.html +4 -2
- package/public/index.html +227 -31
- package/public/integrations.html +1 -1
- package/public/js/activate.js +145 -0
- package/public/js/auth-nav.js +34 -0
- package/public/js/dns.js +438 -0
- package/public/openapi.json +89 -0
- package/public/plesk-integration.html +375 -0
- package/public/premium.html +1 -1
- package/public/provider-onboarding.html +172 -0
- package/public/provider-sandbox.html +134 -0
- package/public/providers.html +359 -0
- package/public/registrar-integrations.html +141 -0
- package/public/robots.txt +12 -0
- package/public/route53-integration.html +531 -0
- package/public/shieldqr.html +231 -0
- package/public/sitemap.xml +6 -0
- package/public/wab-trust.html +200 -0
- package/public/wab-vs-protocols.html +210 -0
- package/public/whitepaper.html +449 -0
- package/sdk/auto-discovery.js +288 -0
- package/sdk/governance.js +262 -0
- package/sdk/index.js +13 -0
- package/sdk/package.json +2 -2
- package/sdk/safe-mode.js +221 -0
- package/server/index.js +144 -5
- package/server/migrations/007_governance.sql +106 -0
- package/server/migrations/008_plans.sql +144 -0
- package/server/migrations/009_shieldqr.sql +30 -0
- package/server/migrations/010_extended_trust.sql +33 -0
- package/server/models/adapters/mysql.js +1 -1
- package/server/models/adapters/postgresql.js +1 -1
- package/server/models/db.js +60 -1
- package/server/routes/admin-plans.js +76 -0
- package/server/routes/admin-premium.js +4 -2
- package/server/routes/admin-shieldqr.js +90 -0
- package/server/routes/admin-trust-monitor.js +83 -0
- package/server/routes/admin.js +289 -1
- package/server/routes/billing.js +16 -4
- package/server/routes/discovery.js +1933 -2
- package/server/routes/governance.js +208 -0
- package/server/routes/plans.js +33 -0
- package/server/routes/providers.js +650 -0
- package/server/routes/shieldqr.js +88 -0
- package/server/services/email.js +29 -0
- package/server/services/governance.js +466 -0
- package/server/services/plans.js +214 -0
- package/server/services/premium.js +1 -1
- package/server/services/provider-clients.js +740 -0
- package/server/services/shieldqr.js +322 -0
- package/server/services/ssl-inspector.js +42 -0
- package/server/services/ssl-monitor.js +167 -0
- package/server/services/stripe.js +18 -5
- package/server/services/vision.js +1 -1
- package/server/services/wab-crypto.js +178 -0
package/LICENSE
CHANGED
|
@@ -14,6 +14,12 @@ The following components are licensed under the MIT License:
|
|
|
14
14
|
• WAB Browser Extension (wab-extension/)
|
|
15
15
|
• Framework Integrations (packages/react/, packages/vue/, packages/svelte/, packages/langchain/)
|
|
16
16
|
• WAB Browser (wab-browser/)
|
|
17
|
+
• WAB VS Code Extension (vscode-wab/) — MIT, published on Marketplace + Open VSX
|
|
18
|
+
• WAB ShieldQR Reference Verifier (server/services/shieldqr.js, server/routes/shieldqr.js)
|
|
19
|
+
— open reference implementation of the DNS+Ed25519+SSL verification protocol
|
|
20
|
+
• WAB ShieldQR Public Scanner (public/shieldqr.html) — open browser-side QR scanner
|
|
21
|
+
• Signed Domain Trust Tooling (scripts/sign-wab-domain.js, public/.well-known/wab.json)
|
|
22
|
+
— open so any domain can self-sign and join the trust network
|
|
17
23
|
• API Documentation (docs/)
|
|
18
24
|
• Examples (examples/)
|
|
19
25
|
|
|
@@ -52,6 +58,12 @@ They run exclusively on the official WAB platform (webagentbridge.com):
|
|
|
52
58
|
• Fairness Algorithm — Neutrality-weighted search ranking system
|
|
53
59
|
• Trust Verifier — Server-side manifest verification engine
|
|
54
60
|
• Affiliate Fraud Detection — Network fraud analysis algorithms
|
|
61
|
+
• ShieldQR Threat Intelligence — Phishing/malware/scam URL feeds and ML scoring
|
|
62
|
+
(NOT the verifier — only the threat-data + ML model are proprietary)
|
|
63
|
+
• Plans Pricing Engine (server/services/plans.js)
|
|
64
|
+
— DB schema is open; the live plan/feature catalog stored in production DB
|
|
65
|
+
is proprietary commercial data
|
|
66
|
+
• Domain Signing Private Keys (server/secrets/) — operational secrets, never published
|
|
55
67
|
|
|
56
68
|
These components are protected by trade secret law. Unauthorized access,
|
|
57
69
|
reverse engineering, or reproduction is prohibited.
|
package/README.ar.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
[](https://nodejs.org/)
|
|
8
8
|
[](https://hub.docker.com/)
|
|
9
|
+
[](https://webagentbridge.com/activate)
|
|
9
10
|
[](https://discord.gg/NnbpJYEF)
|
|
10
11
|
|
|
11
12
|
**البروتوكول والمنصة المفتوحة للتفاعل بين الذكاء الاصطناعي والويب — واجهة أوامر موحّدة، متصفح سيادي، درع هاتف، اكتشاف عبر DNS، شبكة وكلاء، وبوابة API موحّدة لتفاعل آمن بين الذكاء الاصطناعي والمواقع.**
|
|
@@ -18,6 +19,22 @@
|
|
|
18
19
|
|
|
19
20
|
---
|
|
20
21
|
|
|
22
|
+
## 🌍 اكتشاف DNS بنقرة واحدة
|
|
23
|
+
|
|
24
|
+
اجعل موقعك قابلاً للاكتشاف فوراً من قِبَل وكلاء الذكاء الاصطناعي دون لمس سطر واحد من الكود. يستخدم WAB DNS Discovery سجل DNS TXT قياسياً لبث قدرات موقعك بشكل آمن عبر DNS over HTTPS (DoH).
|
|
25
|
+
|
|
26
|
+
**[فعّل اكتشاف WAB بنقرة واحدة](https://webagentbridge.com/activate)**
|
|
27
|
+
|
|
28
|
+
### كيف يعمل:
|
|
29
|
+
1. **أضف سجل TXT** إلى نطاقك (`_wab.yourdomain.com`)
|
|
30
|
+
2. **وجهه** إلى ملف قدراتك (`v=wab1; endpoint=https://yourdomain.com/.well-known/wab.json`)
|
|
31
|
+
3. **وكلاء الذكاء الاصطناعي** يستعلمون عن نطاقك عبر DoH ويعرفون فوراً ما يمكن لموقعك القيام به.
|
|
32
|
+
|
|
33
|
+
شاهد [فيديو الإعداد في 40 ثانية](https://webagentbridge.com/activate) أو استخدم [المدقق المباشر](https://webagentbridge.com/dns) لفحص نطاقك.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
|
|
21
38
|
## ✨ المميزات
|
|
22
39
|
|
|
23
40
|
- **اكتشاف تلقائي** — يكتشف الأزرار والنماذج وروابط التنقل تلقائياً
|
|
@@ -1284,3 +1301,4 @@ const out = await shield.safeExecute('deleteUser', { id: 42 });
|
|
|
1284
1301
|
MIT — مجاني للاستخدام والتعديل والتوزيع.
|
|
1285
1302
|
|
|
1286
1303
|
</div>
|
|
1304
|
+
|