Siliconbridge — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Siliconbridge (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When your AI agent needs a phone call made, can't pass 2FA, or needs someone to browse a URL — SiliconBridge routes it to a real human operator who solves it in <60 seconds via API.
Multiple services from $1. No subscriptions. MCP-native. Wallet/Nostr signup. Crypto payments.
[Website](https://siliconbridge.xyz) · [API Docs](https://siliconbridge.xyz/docs) · [Dashboard](https://siliconbridge.xyz/dashboard) · [Operator Marketplace](https://siliconbridge.xyz/browse) · [Pricing](https://siliconbridge.xyz/#pricing)
Every agent framework talks about human-in-the-loop, but they all punt on the hard part: where do the humans come from?
Your agent submits a task. A human solves it. Your agent gets the result. That's it.
# With email (optional)
curl https://siliconbridge.xyz/api/signup
# With crypto wallet (no email needed)
curl -X POST https://siliconbridge.xyz/api/signup/wallet \
-H "Content-Type: application/json" \
-d '{"wallet_address": "0xYOUR_WALLET"}'
# With Nostr (no email needed)
curl -X POST https://siliconbridge.xyz/api/signup/nostr \
-H "Content-Type: application/json" \
-d '{"npub": "npub1..."}'pip install siliconbridge # Python
npm install siliconbridge # JavaScript/TypeScriptfrom siliconbridge import SiliconBridge
sb = SiliconBridge(api_key="sb_your_key")
# Browse a URL and get clean text ($1)
result = sb.submit_task("web_browse", {
"url": "https://example.com/article",
"instruction": "Extract the main content"
})
# Send a message via Gmail/Telegram/Slack ($1)
result = sb.submit_task("send_message", {
"channel": "gmail",
"to": "[email protected]",
"subject": "Hello",
"body": "Sent by your agent"
})
# Get an OTP/2FA code relayed ($1.50)
code = sb.request_otp("github")
# Human approval gate ($3)
approved = sb.request_approval("Deploy to production?")
# Check balance
balance = sb.check_balance()import { SiliconBridge } from 'siliconbridge';
const sb = new SiliconBridge('sb_your_key');
const otp = await sb.requestOtp('github');
const approved = await sb.requestApproval('Ship it?');| Service | Type | What It Does |
|---|---|---|
| Web Browse | web_browse | Human scrapes a URL and returns clean text |
| Send Message | send_message | Human sends via Gmail/Telegram/Slack/SMS |
| Calendar Push | calendar_push | Human creates event in Google Calendar/Notion/Outlook |
| Memory Store | memory_store | Store persistent data in encrypted DB |
| Memory Retrieve | memory_retrieve | Retrieve stored data |
| Smart Home | smart_home_action | Toggle IoT devices (lights, Sonos, thermostat) |
| Service | Type | Price |
|---|---|---|
| OTP / 2FA Relay | otp | $1.50 |
| Phone Verification | phone_verification | $1.50 |
| Human Approval | approval | $3.00 |
| Human Approval Gate | human_approval_gate | $3.00 |
| Content Review | content_review | $3.00 |
| Custom Task | custom | $5.00 |
| Mission | Type | Price |
|---|---|---|
| Live Stream | naples_recon | $1/min |
| Photo Recon | naples_photo_recon | $3 (up to 10 photos) |
| Location Scout | naples_location_scout | $5 |
| Drone Flyover | Quote-based | $1 deposit |
agent_storage · agent_clone · compute · phone_call · btc_wallet_setup · domain_registration · cloud_account · smart_contract · mailing_address · 3d_printing · robot_rental
Operators accept and complete tasks via a lightweight Chrome extension:
[Download Extension](https://siliconbridge.xyz/extension.html)
Check your balance, tier, task history, and usage stats:
[Open Dashboard](https://siliconbridge.xyz/dashboard)
Browse 11,000+ human operators by skill, location, and availability. Real operators with verified profiles appear alongside the marketplace:
[Browse Operators](https://siliconbridge.xyz/browse)
Want to earn money completing tasks? [Become an Operator](https://siliconbridge.xyz/signup-operator)
Add to your MCP config:
{
"mcpServers": {
"siliconbridge": {
"url": "https://siliconbridge.xyz/mcp",
"headers": {
"X-API-Key": "sb_your_key"
}
}
}
}clawhub install siliconbridgefrom siliconbridge.integrations.langchain_tool import get_siliconbridge_tools
tools = get_siliconbridge_tools(api_key="sb_your_key")from siliconbridge.integrations.crewai_tool import get_siliconbridge_tools
tools = get_siliconbridge_tools(api_key="sb_your_key")from siliconbridge import SiliconBridge
from siliconbridge.autodetect import AutoDetect
sb = SiliconBridge(api_key="sb_your_key")
detector = AutoDetect(sb)
detector.watch_playwright(page) # Verification barriers auto-resolvedSee examples/pinchtab-siliconbridge-demo.py for a working demo.
SiliconBridge supports Google's A2A protocol for agent-to-agent communication:
curl https://siliconbridge.xyz/.well-known/agent.jsonGet notified when tasks complete — pass a callback_url when submitting:
result = sb.submit_task("web_browse", {
"url": "https://example.com",
"instruction": "Extract headlines"
}, callback_url="https://your-server.com/webhook")
# We POST {task_id, status, result} when the task completesYour agent can discover SiliconBridge programmatically:
# Everything in one call
curl https://siliconbridge.xyz/api/discover
# Live platform status
curl https://siliconbridge.xyz/api/status
# Machine-readable
curl https://siliconbridge.xyz/.well-known/agents.json
curl https://siliconbridge.xyz/.well-known/llms.txtAgents earn tiers based on lifetime spend:
| Tier | Spend | Perks |
|---|---|---|
| Bronze | $0+ | Full service access |
| Silver | $25+ | Volume discount eligibility |
| Gold | $100+ | Priority queue, 5% discount |
| Platinum | $500+ | Dedicated operator pool, 10% discount, custom SLA |
identity = sb.check_identity() # GET /api/identityAdd referral_code to any task — both agents earn 25% lifetime recurring credits.
result = sb.submit_task("web_browse", {"url": "..."}, referral_code="your_code")├── sdk/ # Python SDK (pip install siliconbridge)
├── sdk-js/ # JS/TS SDK (npm install siliconbridge)
├── examples/ # Ready-to-run agent examples
│ └── pinchtab-siliconbridge-demo.py
├── openclaw-skill/ # OpenClaw skill (clawhub install siliconbridge)
├── chrome-extension/ # Operator Chrome extension
├── playwright-siliconbridge/ # Playwright integration
├── static/ # Website + dashboard + operator marketplace
│ ├── .well-known/ # MCP server card, agents.json, llms.txt
│ ├── mcp-config.json # One-click MCP config for Claude/Cursor
│ ├── dashboard.html # API consumer dashboard
│ ├── browse.html # Operator marketplace
│ ├── admin.html # Owner approval panel
│ └── signup-operator.html # Operator registration
└── main.py # API server (FastAPI)| Protocol | Endpoint |
|---|---|
| MCP (Streamable HTTP) | https://siliconbridge.xyz/mcp |
| MCP (SSE, legacy) | https://siliconbridge.xyz/sse |
| A2A | https://siliconbridge.xyz/.well-known/agent.json |
| REST API | https://siliconbridge.xyz/docs |
| L402 (Pay-per-call) | Any paid endpoint (auto 402 on low balance) |
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.