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

surfagentsurfagent 控制

Agent Skill

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

总安装

2,982

周安装

123

GitHub Stars

公开资料未说明

下载量

974
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install surfagent

简介

SurfAgent 控制真实 Chrome 浏览器执行网页自动化任务。

  • 支持导航、点击、截图与数据抓取功能。surfagent 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于 Web 爬虫与流程验证场景。
  • 需安装 ChromeDriver 并保持版本匹配。
  • 建议避免频繁操作以免被目标网站拦截。

SKILL.md

name
surfagent
description
Control a real Chrome browser via SurfAgent — navigate, click, type, screenshot, extract data, crawl sites, and automate web workflows. Uses your persistent Chrome profile with real cookies and sessions. Works through SurfAgent's MCP server or direct HTTP API.
version
1.0.0
author
MoonstoneLabs
license
MIT
platforms
[windows]
metadata
hermes
tags
[browser, automation, web, scraping, chrome, mcp, surfagent]
category
browser-automation
related_skills
[]
requires_tools
[]
required_environment_variables
prompt
SurfAgent daemon URL (default: http://localhost:7201)
help
Install SurfAgent from https://surfagent.app — the daemon runs on localhost:7201 by default
required_for
browser control

SurfAgent — Real Chrome Browser Control

Give your AI agent a real, persistent Chrome browser. No headless browsers, no cloud, no bot detection issues.

When to Use

  • You need to browse, scrape, or interact with a website
  • You need to fill forms, click buttons, or navigate pages
  • You need to extract structured data from web pages
  • You need to take screenshots of websites
  • You need persistent login sessions (already logged into sites)
  • You need to bypass bot detection (Cloudflare, hCaptcha, etc.)
  • You need to crawl/map a website

Prerequisites

  1. SurfAgent installed and running — download from surfagent.app
  2. MCP server connectedhermes mcp add surfagent --command npx --args -y surfagent-mcp
  3. Or use the HTTP API directly at http://localhost:7201

Quick Reference — MCP Tools (24)

ToolWhat it does
browser_navigateOpen a URL
browser_backGo back in history
browser_forwardGo forward in history
browser_clickClick an element (selector, text, or coordinates)
browser_typeType text into an element
browser_fill_formFill multiple form fields at once
browser_selectSelect dropdown option
browser_scrollScroll page or to element
browser_screenshotCapture page screenshot (PNG)
browser_get_textGet visible text content
browser_get_htmlGet page HTML
browser_get_urlGet current URL
browser_get_titleGet page title
browser_find_elementsFind elements by CSS selector
browser_evaluateRun JavaScript in page
browser_waitWait for element to appear
browser_cookiesGet or set cookies
browser_list_tabsList open tabs
browser_new_tabOpen new tab
browser_switch_tabSwitch to tab by id/title
browser_close_tabClose a tab
browser_extractExtract structured data (markdown, JSON, links)
browser_crawlBFS crawl a domain
browser_mapDiscover all URLs on a site

Procedure

Basic Navigation

  1. Use browser_navigate to open a URL
  2. Use browser_screenshot to see the page
  3. Use browser_click or browser_type to interact
  4. Use browser_get_text to read content

Data Extraction

  1. Use browser_extract with a URL to get markdown + links
  2. Add prompt and schema fields for LLM-powered structured extraction
  3. Use browser_crawl for multi-page extraction
  4. Use browser_map for quick URL discovery

Form Filling

  1. Use browser_navigate to go to the form page
  2. Use browser_fill_form with field label/name → value mappings
  3. Or use browser_click + browser_type for individual fields
  4. Use browser_select for dropdowns

Tab Management

  1. Use browser_list_tabs to see what's open
  2. Use browser_new_tab to open a new tab
  3. Use browser_switch_tab to change focus
  4. Use browser_close_tab when done — always clean up tabs

Direct HTTP API (fallback)

If MCP isn't available, call the daemon directly:

# Navigate
curl -X POST http://localhost:7201/browser/navigate \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://example.com"}'

# Screenshot
curl -s http://localhost:7201/browser/screenshot --output screenshot.png

# List tabs
curl -s http://localhost:7201/browser/tabs

# Extract page data
curl -X POST http://localhost:7201/browser/extract \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://example.com", "formats": ["markdown", "links"]}'

Key Advantages

  • Real Chrome — not headless, passes all bot detection
  • Persistent sessions — log in once, stay logged in forever
  • Real fingerprint — your actual Chrome installation, real cookies
  • 100% local — no data leaves your machine
  • 24 MCP tools — comprehensive browser control
  • Extract + Crawl — Firecrawl-equivalent features, zero cloud cost

Pitfalls

  • Always close tabs when done — leaving tabs open wastes resources
  • Wait for dynamic content — SPAs need browser_wait or a short delay after navigation
  • One operation at a time — don't fire multiple browser commands in parallel
  • Screenshots are viewport-only by default — use the fullPage option for long pages
  • Cookie consent banners — the daemon can auto-resolve them via /browser/resolve-blocker

Verification

  • browser_get_url returns the expected URL after navigation
  • browser_screenshot shows the expected page content
  • browser_get_text contains the expected text
  • Health check: curl http://localhost:7201/health returns {"ok": true}

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.8%
按下载量换算699

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills