brightdata-collection — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited brightdata-collection (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.
Use this only when simpler search or extraction paths are insufficient.
BRIGHTDATA_API_KEYOptional:
BRIGHTDATA_ZONEBRIGHTDATA_COUNTRYBright Data is not the default. Use it when one of these is true:
For browser automation that requires a residential IP (e.g. LinkedIn, which blocks datacenter IPs at the Cloudflare layer), route Playwright through BrightData's residential proxy. Set the proxy at `browser.newContext()` level — not `chromium.launch()`. context.request (Playwright's APIRequestContext) does not inherit the launch-level proxy and returns 407.
const proxy = {
server: 'http://brd.superproxy.io:22225',
username: 'brd-customer-hl_XXXXX-zone-ZONE-session-STICKY_ID',
password: 'ZONE_PASSWORD',
};
const browser = await chromium.launch({ args: ['--no-sandbox'] });
const context = await browser.newContext({ proxy }); // ← correct level
// Now both page.goto() and context.request.get() route through the proxyUse a sticky session suffix (-session-XXXXXXXX) on the username to keep the same residential IP for the browser context lifetime — important when session cookies are IP-bound.
See browser-stealth skill for full patterns: webdriver masking, patchright, csrf-token derivation, and the page.evaluate(fetch) fallback.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.