@ulpi/browse 1.3.1 → 1.4.0
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 +82 -1
- package/dist/browse.cjs +8842 -1191
- package/package.json +1 -1
- package/skill/SKILL.md +15 -1
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -393,6 +393,20 @@ browse react-devtools owners <sel> Parent component chain
|
|
|
393
393
|
browse react-devtools context <sel> Context values consumed by component
|
|
394
394
|
```
|
|
395
395
|
|
|
396
|
+
### Performance audit
|
|
397
|
+
```
|
|
398
|
+
browse perf-audit [url] Full performance audit (Web Vitals, resources, images, fonts, DOM, render-blocking, third-party, stack detection, correlations, recommendations)
|
|
399
|
+
browse perf-audit [url] --no-coverage Skip JS/CSS coverage collection (faster)
|
|
400
|
+
browse perf-audit [url] --no-detect Skip framework/SaaS/infrastructure detection
|
|
401
|
+
browse perf-audit [url] --json Output as structured JSON (for programmatic use)
|
|
402
|
+
browse detect Detect tech stack: frameworks, SaaS platforms, CDN, protocol, compression, caching, DOM complexity, third-party inventory
|
|
403
|
+
browse coverage start Start JS/CSS code coverage collection
|
|
404
|
+
browse coverage stop Stop collection and report per-file used/unused bytes
|
|
405
|
+
browse initscript set <code> Inject JS that runs before every page load (pre-navigation observers, mocks, polyfills)
|
|
406
|
+
browse initscript show Show current init script
|
|
407
|
+
browse initscript clear Remove init script
|
|
408
|
+
```
|
|
409
|
+
|
|
396
410
|
### Cloud Providers
|
|
397
411
|
```
|
|
398
412
|
browse provider save <name> <key> Save provider API key (encrypted)
|
|
@@ -431,7 +445,7 @@ browse inspect Open DevTools (requires BROWSE_DEBUG_PORT)
|
|
|
431
445
|
| `--allowed-domains <d,d>` | Block navigation/resources outside allowlist |
|
|
432
446
|
| `--max-output <n>` | Truncate output to N characters |
|
|
433
447
|
| `--headed` | Run browser in headed (visible) mode |
|
|
434
|
-
| `--chrome` |
|
|
448
|
+
| `--chrome` | Shortcut for `--runtime chrome --headed` (uses real Chrome, bypasses bot detection) |
|
|
435
449
|
| `--cdp <port>` | Connect to Chrome on a specific debugging port |
|
|
436
450
|
| `--connect` | Auto-discover and connect to a running Chrome instance |
|
|
437
451
|
| `--provider <name>` | Cloud browser provider (browserless, browserbase) |
|