human-browser 3.2.1 → 3.2.2

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/README.md CHANGED
@@ -55,7 +55,7 @@ npm install playwright
55
55
  npx playwright install chromium --with-deps
56
56
 
57
57
  # Install via skill manager
58
- clawhub install al1enjesus/human-browser
58
+ clawhub install human-browser
59
59
  ```
60
60
 
61
61
  ---
package/SKILL.md CHANGED
@@ -89,7 +89,7 @@ PROXY_PASS=your_password
89
89
  ### Step 3 — Install the skill
90
90
 
91
91
  ```bash
92
- clawhub install al1enjesus/human-browser
92
+ clawhub install human-browser
93
93
  # or
94
94
  npm install human-browser
95
95
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "human-browser",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "description": "Stealth browser with residential proxies from 10+ countries for AI agents. Bypasses Cloudflare, DataDome, PerimeterX. iPhone 15 Pro fingerprint.",
5
5
  "keywords": [
6
6
  "browser-automation",
@@ -40,8 +40,8 @@ function buildProxy(country = 'ro') {
40
40
  // Proxy config — use env vars or defaults
41
41
  const PROXY_HOST = process.env.PROXY_HOST || 'brd.superproxy.io';
42
42
  const PROXY_PORT = process.env.PROXY_PORT || '22225';
43
- const PROXY_USER = process.env.PROXY_USER || `brd-customer-hl_b1694dd8-zone-mcp_unlocker${c !== 'ro' ? `-country-${c}` : ''}`;
44
- const PROXY_PASS = process.env.PROXY_PASS || 'x8iy8mgsush8';
43
+ const PROXY_USER = process.env.PROXY_USER || '';
44
+ const PROXY_PASS = process.env.PROXY_PASS || '';
45
45
 
46
46
  // Also support legacy env var names for backward compatibility
47
47
  const server = process.env.PROXY_SERVER || `http://${PROXY_HOST}:${PROXY_PORT}`;