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

arise-browser出现浏览器

Agent Skill

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

总安装

6,551

周安装

265

GitHub Stars

公开资料未说明

下载量

2,056
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install arise-browser

简介

基于 Chrome 的持久化元素引用浏览器自动化。

  • 支持 YAML 快照与 WebRTC 实时视图调试。
  • 适用于网页抓取与前端流程验证场景。arise-browser 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install arise-browser。
  • 需安装 Chrome 浏览器并授予远程调试权限。

SKILL.md

name
arise-browser
description
>
homepage
https://github.com/AriseOS/arise-browser
metadata
openclaw
emoji
🌐
requires
bins
["npx", "docker"]

AriseBrowser

You are controlling a real Chrome browser, like a human sitting in front of a screen. You see the page through snapshots, and you interact by clicking, typing, and selecting — not by writing JavaScript or constructing URLs.

MANDATORY RULES

  1. Snapshot is your eyes. After every navigate or action, run arise-browser snap to see the page. Read refs (e0, e5, e12...) from the output.
  2. Act through refs. Use click, type, select with refs from your snapshot. Do NOT construct URLs with query parameters to change page state.
  3. Refs are persistent. Do NOT re-snap just to reuse a ref. Only re-snap when the page content changes.

Install

npm install -g arise-browser

Start

arise-browser start --virtual-display
# → "Server ready on port 16473"

First run takes ~2 minutes (Docker pulls Chrome image ~700MB). Everything is automatic.

Watch the browser: Open http://localhost:6090 in your browser, password: neko

Core Loop

# Navigate to a page
arise-browser open https://example.com

# See the page — YAML accessibility tree with refs
arise-browser snap

# Interact using refs from the snapshot
arise-browser click e5
arise-browser type e12 "laptop"
arise-browser select e187 "Best Sellers"
arise-browser press Enter
arise-browser scroll down 500

# See updated page after actions
arise-browser snap

Example: Sort Amazon results by Best Sellers

# 1. Navigate
arise-browser open "https://amazon.com/s?k=laptop"

# 2. Snapshot — see the page
arise-browser snap
# → combobox "Sort by:" [ref=e187]
# → link "Product Name" [ref=e226]
# → generic "$599.99" [ref=e246]

# 3. Select from dropdown using ref
arise-browser select e187 "exact-aware-popularity-rank"

# 4. Snapshot again — results are now sorted
arise-browser snap

All Commands

CommandWhat it does
arise-browser start [--virtual-display]Start server (daemon)
arise-browser stopStop server + cleanup
arise-browser open <url>Navigate to URL
arise-browser snapPage snapshot (YAML)
arise-browser click <ref>Click element
arise-browser type <ref> <text>Type into element
arise-browser select <ref> <value>Select dropdown value
arise-browser press <key>Press key (Enter, Tab, Escape...)
arise-browser scroll <dir> [amount]Scroll (up/down/left/right)
arise-browser screenshot [file]Save screenshot
arise-browser tabsList open tabs
arise-browser healthCheck server status

Stop

arise-browser stop

How to Think

You are a person using a browser. Snapshot is your eyes, commands are your hands.

  • To sort results → find the sort dropdown ref in snap → select it
  • To search → find the search box ref → type your query → press Enter
  • To go to next page → find the "Next" button ref → click it
  • To read product info → it's already in the snapshot (names, prices, ratings are all there)

Tips

  • Read the snapshot carefully. Product names, prices, ratings, links — they're all there. No need for JavaScript.
  • Screenshot is useful to show the user what you see.
  • After scrolling, snap again to see newly visible elements.

Troubleshooting

ProblemFix
First run slowDocker pulling Chrome image (~700MB), wait ~2 min
health returns "not running"Run arise-browser start --virtual-display
Action returns errorSnap first to get valid refs, then act on them
Can't find an elementarise-browser scroll down then arise-browser snap

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.22%
按下载量换算1,978

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills