Fuse browser usage
Skill fusengine/agents/plugins/ai-pilot/skills/fuse-browser-usage
Redefining development through cognitive automation and collaborative agent systems.
npx -y skills add fusengine/agents --skill fuse-browser-usageAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Efficient fuse-browser usage: web fetch, crawl, SERP, browser session, screenshot, webapp testing, console errors. Read this BEFORE any mcp__fuse-browser__* tool call — it routes fetch/crawl/serp vs live session vs visual capture and enforces the 4 ZERO-TOLERANCE rules.
SKILL.md
2.6 KB, as published. Nobody here has run it
fuse-browser — Efficient Usage
Canonical doctrine for every mcp__fuse-browser__* call. Read this skill FIRST, then load the one reference matching your goal. Default engine is patchright (stealth identity auto-generated); the Chromium binary comes from setup.sh.
4 Rules (ZERO TOLERANCE)
- Fast-path FIRST (no browser launch, ~10× faster) —
browser_fetch/browser_fetch_batch/browser_crawl/browser_serp_batchto read a page, bulk-fetch, crawl a site, or scrape Google SERP. Open a live session ONLY when you need interaction, JS rendering, or pixels. - One session, always closed —
browser_openonce → reuse thesessionIdacrossbrowser_navigatecalls →browser_closewhen done. Never leak sessions; the 2-min TTL is a safety net, not a substitute for closing. - Batch over loops —
browser_serp_batch(N queries),browser_fetch_batch/browser_shots_batch(N URLs),browser_screenshot { viewports:[...], colorScheme }(responsive + dark in ONE call). Never write a per-URL loop. - Deterministic extraction —
browser_extract_schemawithcontainerSelector(card-by-card, correlated fields) over manualbrowser_snapshotparsing.
Routing — pick the profile, load the reference
| Goal | Profile | Reference |
|---|---|---|
| Read docs, bulk-fetch, crawl, scrape SERP (no pixels) | Research / docs | references/research-docs.md |
| Test a running webapp (console, network, interactions) | Webapp testing | references/webapp-testing.md |
| Screenshots, responsive + dark, visual regression | Visual / design | references/visual-design.md |
- No live session for reading — if you only need text/HTML/data, the answer is always fast-path (profile 1). Never
browser_opento read. - Validation tools (any profile):
browser_visual_diff(regression vs baseline),browser_metrics(real Core Web Vitals),browser_console/browser_network/browser_cookies(runtime + security checks). - Full design pipeline is NOT here — for identity → generate → audit, use
fuse-design:design-webthen thefuse-design:design-reviewgate. This skill only covers the raw browser tooling.