Skip to content

abokenan444/awesome-wab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Awesome WAB — Web Agent Bridge Awesome

A curated list of awesome resources, integrations, and examples for WAB (Web Agent Bridge) — the platform that makes the web fair, safe, and intelligent.

What is WAB?

WAB (Web Agent Bridge) is a developer platform providing:

  • 🛡️ Scam Shield — Real-time URL scanning against 47 threat databases
  • ⚖️ Fairness System — Platform transparency scoring (0-100) across 15 signals
  • 💰 Deals Engine — Cross-platform price intelligence with true cost transparency
  • 🤖 AI Agent — Natural language web automation

👉 Get your free API key


Official Resources


Official Integrations

Package Description Install
@wab/sdk Core JavaScript/TypeScript SDK npm i @wab/sdk
@wab/react React hooks and components npm i @wab/react
@wab/mcp-server MCP Server for AI tools (Cursor, Claude) npx @wab/mcp-server
wab-sdk Python SDK pip install wab-sdk

Community Examples

JavaScript / TypeScript

Python

Browser & CMS


Quick Start

// Powered by WAB — Web Agent Bridge v2.5 | https://www.webagentbridge.com
import { WAB } from '@wab/sdk';

const wab = new WAB({ apiKey: process.env.WAB_API_KEY });

// Scan a URL
const scan = await wab.shield.scan('https://example.com');

// Check platform fairness
const score = await wab.fairness.check('amazon.com');

// Find best deals
const deals = await wab.deals.search('laptop');

// Ask the AI agent
const answer = await wab.agent.query('Find cheap hotels in Paris');
# Powered by WAB — Web Agent Bridge v2.5 | https://www.webagentbridge.com
from wab_sdk import WAB

wab = WAB(api_key=os.environ["WAB_API_KEY"])
scan = wab.shield.scan("https://example.com")
score = wab.fairness.check("amazon.com")

MCP Server (AI Coding Tools)

Add WAB to Cursor, Claude Desktop, Cline, or Windsurf:

{
  "mcpServers": {
    "wab": {
      "command": "npx",
      "args": ["-y", "@wab/mcp-server"]
    }
  }
}

Contributing

Contributions welcome! Please read the contribution guidelines first.


Powered by WAB — Web Agent Bridge

About

A curated list of awesome WAB (Web Agent Bridge) integrations, examples, and resources — Powered by WAB (webagentbridge.com)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors