Agentweb Python — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agentweb Python (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.
Python SDK for AgentWeb.live — the global business directory for AI agents.
Search 11M+ businesses across 195 countries via a simple API.
pip install agentwebfrom agentweb import AgentWebClient
client = AgentWebClient(api_key="your-api-key")
# Search for businesses
results = client.search("coffee shop", country="US", limit=5)
print(results)
# Geo search
results = client.search("restaurant", lat=40.7128, lng=-74.0060, radius_km=2)
# Get a single business
biz = client.get_business("some-business-id")
# Health check
status = client.health()AgentWebClient(api_key, base_url=..., timeout=30)Create a client. Get your API key at agentweb.live.
client.search(q, *, lat, lng, radius_km, country, limit)Search for businesses. All parameters except q are optional.
client.get_business(business_id)Fetch a single business by its AgentWeb ID.
client.health()Check API health and stats.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.