بنقرة واحدة
browser-automation
Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Catch bad React in your changes — run react-doctor's deterministic scan and fix what it flags
Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done
Run multi-agent work as ONE provable causal DAG — parallel subagents, an Orchestrate graph, an immutable spec-seed
Author or connect a Model Context Protocol server so an agent gains new tools
Build automated pipelines that gate merges and ship reliably
Build reliable, resumable data connectors and transforms (ETL)
| name | browser-automation |
| description | Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable |
| version | 1 |
| trust | built-in |
Use the browser_* tools when a page needs a real browser: JS-rendered content
WebFetch can't read, testing a web app you built, or a multi-step web flow.
Every action records a verifiable trace (pre/post snapshot hash, driver) to the
ledger — korgex trace/verify prove the session.
The loop — perceive, then act by index:
browser_navigate(url) to the page (http/https only).browser_snapshot() — returns a compact, indexed list of interactive
elements ([42] <button> Submit). The model acts on the page BY INDEX, not by
guessing CSS selectors.browser_click(index), browser_type(index, text). The
session resolves index → the page's real element. browser_scroll,
browser_wait as needed.browser_snapshot.browser_extract for the page's readable text.Other tools:
browser_fetch(url) — read-only, tiered (fast HTTP → browser render →
opt-in stealth), returns clean Markdown. Prefer it over the full loop when you
only need to read a page.browser_audit(url) — a deterministic, sealable page report (title/meta,
headings, links, JSON-LD, hreflang, security headers).browser_crawl(start_url) — scoped BFS (stays on-host, deduped, rate-limited).Rules:
stealth=true, recorded on the trace) — default is the
honest driver. Only use it when you must.browser_evaluate (arbitrary JS) is OFF by default (KORGEX_BROWSER_EVAL=1
to enable) — prefer the index-based actions; reach for raw JS only when no tool fits.pip install 'korgex[browser]' && playwright install chromium.