Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

forjd-browseforjd 浏览

Agent Skill

forjd-browse 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,220

周安装

129

GitHub Stars

公开资料未说明

下载量

1,042
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:forjd-browse(forjd 浏览)
来源仓库:https://github.com/danjdewhurst/forjd-browse
安装命令:
openclaw skills install forjd-browse
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install forjd-browse

简介

Forjd 浏览技能用于 AI 代理的浏览器自动化,支持导航页面、填写表单和单击按钮。

  • 适用于需要与网站交互的用户,如数据抓取或流程验证。
  • 提供命令行界面和网页检查功能。forjd-browse 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认目标网站的可访问性和反爬措施。
  • 建议核对操作步骤的合法性,避免违反服务条款。

SKILL.md

name
browse
description
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include: any mention of 'browse', 'check the page', 'take a screenshot', 'test the UI', 'fill the form', 'click the button', 'QA', 'visual check', 'healthcheck', and any task requiring a real browser.
allowed-tools
Bash(browse:*)

Browse — Browser Automation for Agents

How it works

browse is a CLI that wraps Playwright behind a persistent daemon on a Unix socket. The daemon cold-starts in ~3s on first use, then every command runs in sub-200ms. Session state (cookies, localStorage, auth tokens) persists across commands within a session.

All output is plain text. Objects are JSON-stringified. Commands return non-zero on failure with an error message.

Important constraints:

  • Commands are sequential — do not run multiple browse commands in parallel. The daemon handles one command at a time.
  • Run browse help for the full command list, or browse help <command> for detailed usage and flags.

The ref system — read this first

Refs (@e1, @e2, ...) are how you target elements. They replace CSS selectors for most interactions.

Rules:

  1. Always browse snapshot before interacting. Refs only exist after a snapshot.
  2. Refs are ephemeral. Every snapshot call regenerates them. Old refs are invalid.
  3. Refs go stale after navigation. Any goto or click that changes the page invalidates refs. You'll get a clear error — just browse snapshot again.

Core interaction loop:

browse snapshot              # see what's on the page — get refs
browse fill @e3 "test"       # fill the search field
browse click @e4             # click a button
browse snapshot              # re-snapshot after the page changes

Workflow

The standard pattern for any browser task:

  1. Navigate: browse goto <url>
  2. Observe: browse snapshot for page structure (interactive elements with refs). Use browse snapshot -i to include structural elements (headings, text), or -f for the full accessibility tree.
  3. Check for errors: browse console --level error after navigation.
  4. Interact: browse fill @eN "value", browse click @eN, browse hover @eN, browse press Tab, browse select @eN "option", browse scroll @eN (scroll into view).

- Use browse press <key> for keyboard navigation (Tab, Escape, Enter, ArrowDown, Shift+Tab, etc.). Multiple keys: browse press Tab Tab Tab. - Use browse scroll down/up to page through content, browse scroll top/bottom to jump to extremes. - After clicks that trigger SPA navigation, use browse wait url /path, browse wait text "Expected", or browse wait visible .selector before snapshotting.

  1. Verify: browse snapshot or browse screenshot after each interaction to confirm the result.
  2. Repeat: Move through pages and flows.

For configured applications, browse healthcheck gives a quick pass/fail across key pages.

Key commands by category

CategoryCommands
Navigategoto <url>, url, back, forward, reload [--hard], text, version, quit, wipe
Observesnapshot, screenshot (--diff, --threshold), console, network
Interactclick @eN, hover @eN [--duration ms], press <key> [key ...], fill @eN "value", select @eN "option", upload @eN <file> [file ...], attr @eN [attribute], scroll down/up/top/bottom/@eN/x y, form --data '{"field":"value"}'
Waitwait url <str>, wait text <str>, wait visible <sel>, wait hidden <sel>, wait network-idle, wait <ms>
Viewportviewport, goto --viewport/--device/--preset
Evaluateeval <expr> (in-page JS), page-eval <expr> (Playwright page API)
Authlogin --env <name>, auth-state save/load <path>
Tabstab list/new/switch/close
Assertassert visible/text-contains/url-contains/..., assert-ai "<visual assertion>"
Accessibilitya11y (full page), a11y @eN (element), a11y --standard wcag2aa, a11y --json, a11y coverage, a11y tree, a11y tab-order, a11y headings
Performanceperf (Core Web Vitals), perf --budget lcp=2500,cls=0.1, perf --json
Securitysecurity (headers, cookies, mixed content), security --json
Responsiveresponsive (multi-viewport screenshots), responsive --breakpoints 320x568,1920x1080, responsive --url <url>
Extractextract table <sel> (--csv, --json), extract links (--filter), extract meta, extract select <sel> (--attr)
Flowsflow list, flow <name> --var key=value (`--reporter junit\json\markdown, --dry-run, --stream, --webhook <url>), healthcheck (--reporter junit\json\markdown, --parallel, --concurrency, --webhook <url>), test-matrix --roles r1,r2 --flow <name>, diff --baseline <url> --current <url>`
Sessionssession list/create/close, --session <name> on any command
Tracingtrace start (--screenshots, --snapshots), trace stop --out <path>, trace view [<path>] --latest --port <n>, trace list, trace status
Videovideo start [--size WxH], video stop [--out <path>], video status, video list
Crawlcrawl <url> (--depth, `--extract table\links\meta\text, --paginate, --rate-limit, --output, --dry-run`)
Recordrecord start (--output, --name), record stop, record pause/resume
Network Sim`throttle <preset\off\status> (slow-3g, 3g, 4g, wifi, cable), offline on/off`
NL Commandsdo "<instruction>" (--dry-run, --provider, --model)
VRTvrt init, vrt baseline, vrt check (--threshold), vrt update (--all), vrt list
SEOseo [url] (--check, --score, --json)
Compliancecompliance [url] (`--standard gdpr\ccpa\eprivacy, --json`)
Security Scansecurity-scan (--checks xss,csp,clickjack,forms, --verbose, --json)
i18ni18n --locales en,fr,de --url <url>, i18n check-keys, i18n rtl-check
API Assertapi-assert <url-pattern> (--status, --timing, --schema, --body-contains, --header)
Designdesign-audit --tokens <file>, design-audit --extract
Doc Capturedoc-capture --flow <file> --output <dir> (--markdown, --update)
Gesturesgesture swipe <dir>, gesture long-press @eN, gesture double-tap @eN, gesture drag @eN --to @eN
Devicesdevices list, devices search <query>, devices info <name>
Monitormonitor check --config <file>, monitor history, monitor status
Dev Serverdev start, dev stop, dev status
CI/CDci-init (`--ci github\gitlab\circleci`)
Eventssubscribe (--events navigation,console,network, --level, --idle-timeout)
Watch/REPLwatch <flow-file>, repl
Toolinginit, report --out <path>, replay --out <path>, flow-share export/import/list/install/publish, screenshots list/clean/count, completions bash/zsh/fish, status [--json] [--watch] [--exit-code]

Run browse help <command> for flags and detailed usage — don't guess at flags.

Named sessions

Use named sessions to run multiple independent page groups:

browse session create worker-1               # shared context (same cookies/storage)
browse session create worker-2 --isolated    # isolated context (separate cookies/storage)
browse --session worker-1 goto https://a.com
browse --session worker-2 goto https://b.com
browse session list
browse session close worker-1

By default, sessions share the browser context. Use --isolated for fully separate cookies, storage, and permissions.

Authentication

Configured login (preferred — uses browse.config.json):

browse login --env staging

Manual login:

browse goto https://app.example.com/login
browse snapshot
browse fill @e1 "user@example.com"
browse fill @e2 "password123"
browse click @e3
browse snapshot        # verify redirect / dashboard loaded

Session reuse — save after login, load in future sessions:

browse auth-state save /tmp/auth.json
browse auth-state load /tmp/auth.json

Use browse wipe to clear all session data before switching accounts or at the end of a session.

Visual diff

Compare screenshots against a baseline to detect visual regressions:

browse screenshot current.png --diff baseline.png
browse screenshot current.png --diff baseline.png --threshold 5

Output includes similarity percentage, diff pixel count, and a path to the diff image (changed pixels highlighted in red).

Multi-browser

Browse defaults to Chromium. Use --browser to switch:

browse --browser firefox goto https://example.com
browse --browser webkit goto https://example.com
BROWSE_BROWSER=firefox browse goto https://example.com

Stealth features and CDP console capture are Chromium-only; Firefox/WebKit use standard Playwright.

Proxy

Route browser traffic through a proxy:

browse --proxy http://proxy:8080 goto https://example.com
BROWSE_PROXY=socks5://proxy:1080 browse goto https://example.com

Or configure in browse.config.json with "proxy": { "server": "http://proxy:8080", "bypass": "localhost", "username": "u", "password": "p" }.

Playwright passthrough

Pass any Playwright launch or context option via browse.config.json without waiting for explicit browse support:

{
  "playwright": {
    "launchOptions": { "locale": "fr-FR", "timezoneId": "Europe/Paris" },
    "contextOptions": { "colorScheme": "dark", "geolocation": { "latitude": 48.86, "longitude": 2.35 } }
  }
}

launchOptions are applied at browser startup; contextOptions are applied to isolated sessions and video recording contexts. Browse's own options (headless, viewport, stealth) take precedence on conflict.

Headed mode

Launch the browser visibly for debugging (set before the daemon starts):

BROWSE_HEADED=1 browse goto https://example.com

Timeout control

Any command accepts --timeout <ms> (default 30s). Use for slow pages:

browse goto https://slow-page.example.com --timeout 60000

Error recovery

ErrorFix
"element is outside of the viewport"Run browse scroll @eN to scroll it into view, then retry
"Refs are stale" / "Unknown ref"Run browse snapshot to refresh refs
"Daemon connection lost"Re-run the command — CLI auto-restarts the daemon
"Command timed out after Nms"Use --timeout 60000, or check the URL
"Daemon crashed and recovery failed"Run browse quit, then retry
"Unknown command" for a valid commandStale daemon — run browse quit, then retry
"Unknown flag"Check browse help <cmd> for valid flags
Login failsCheck env vars, verify login URL, browse screenshot to see the page

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.04%
按下载量换算980

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills