xbrowser-automation

xbrowser-automation is a skill for Claude Code, Codex from hotlogin-browser/hotlogin-mcp. It costs 45 tokens per session (4,088 once invoked), scanned A, original, MIT.

A browser-automation connector for XBrowser that manages browser environments and controls web pages through MCP, a standard way for tools to communicate with AI agents.

In plain words
What is it for?
Use it to create and launch browser sessions, visit pages, take screenshots, extract content, click elements, fill forms, and control tabs or storage.
Why use it?
It removes the need to manually perform repeated browser actions such as opening pages, filling forms, handling pop-ups, or managing cookies.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create and launch browser sessions, visit pages, take screenshots, extract content, click elements, fill forms, and control tabs or storage.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hotlogin-browser/hotlogin-mcp --skill xbrowser-automation
Clone the repo
git clone --depth 1 https://github.com/hotlogin-browser/hotlogin-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for xbrowser-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation/github.svg)](https://agentmods.dev/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation)
Your own site
<a href="https://agentmods.dev/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation"><img src="https://agentmods.dev/badge/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for xbrowser-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation"><img src="https://agentmods.dev/badge/skills/hotlogin-browser/hotlogin-mcp/xbrowser-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,088 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.04088
Opus 5 $0.00023 $0.02044
Sonnet 5 $0.00009 $0.00818
Haiku 4.5 $0.00005 $0.00409

Measured 10d ago against content hash e1b146b5457f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

xbrowser-automation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/xbrowser-automation/SKILL.md · 428 lines

How it starts

The opening of the file, as written. The whole thing — 428 lines — stays where its author put it; the contents beside it link to each section on GitHub.

XBrowser Automation Suite

全功能浏览器自动化平台,提供环境管理、页面控制和智能交互三大能力模块。基于 MCP 协议实现,支持 50+ 原子化操作。

能力矩阵

┌─────────────────────────────────────────────────────┐
│              XBrowser Automation                     │
├──────────────┬──────────────┬───────────────────────┤
│ 环境管理      │ 页面控制      │ 智能交互               │
│ Environment   │ Page Control │ Smart Interaction     │
├──────────────┼──────────────┼───────────────────────┤
│ • 创建/查询   │ • 导航跳转    │ • 元素点击/填写        │
│ • 启动/关闭   │ • 截图采集    │ • 键盘/鼠标模拟        │
│ • 分组管理    │ • 内容提取    │ • Cookie/Storage操作  │
│ • 代理配置    │ • 弹窗处理    │ • 脚本执行             │
│ • 指纹定制    │ • 历史控制    │ • 等待/检测            │
│ • 窗口布局    │ • 标签管理    │ • 拖拽/悬停            │
└──────────────┴──────────────┴───────────────────────┘

快速上手

前置条件

  • XBrowser 客户端已启动
  • MCP Server 已连接(通过 stdio 或 HTTP)
  • Node.js >= 18.0.0

工作流示例

场景 1:创建环境并访问网站

1. env_create → 创建浏览器环境(配置指纹+代理)
2. env_launch → 启动环境(获取 wsEndpoint)
3. session_attach → 连接浏览器会话
4. page_visit → 访问目标网址
5. page_capture → 截图验证

场景 2:自动化表单填写

1. env_launch → 启动已有环境
2. session_attach → 连接会话
3. page_visit → 打开表单页面
4. element_write → 填写输入框
5. element_pick → 选择下拉项
6. element_tap → 点击提交按钮

场景 3:批量环境管理

1. env_query → 查询环境列表
2. env_transfer_group → 批量调整分组
3. env_launch → 启动多个环境
4. env_terminate_all → 一键关闭全部

核心工具集

🌐 环境生命周期管理 (Environment Lifecycle)

工具 功能 关键参数
env_create 创建新环境 name, groupId, proxyConfig, fingerprint, accountInfo
env_query 分页查询环境 page, size, groupId, name, platform
env_profile 获取环境详情 id 或 number
env_revise 更新环境配置 id/number + 需要修改的字段
env_remove 删除环境 ids (数组), clearEnvFolder
env_purge_cache 清理缓存 id, cacheList

🚀 环境运行控制 (Runtime Control)

工具 功能 关键参数
env_launch 启动环境 id/number, openIpTab, headless, timeout
env_terminate 关闭单个环境 id 或 number
env_terminate_all 关闭全部环境 无参数
env_runtime_state 获取运行状态 id 或 number
env_opened 查询已打开环境 无参数
env_window_layout 整理窗口布局 auto, mode, config

Read the full file on GitHub · 428 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 428 lines · 45 tokens per session scan A e1b146b5457f

Subscribe to this mod's changes

xbrowser-automation is a skill published in the GitHub repository hotlogin-browser/hotlogin-mcp (0 stars, last pushed 4mo ago), licensed MIT. It adds 45 tokens to every session and 4,088 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

interactive-login

How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.

yc-software/qm · 46 tokens

pinchtab-mcp

Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.

pinchtab/pinchtab · 52 tokens

azure-messaging-webpubsub-java

Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.

microsoft/skills · 43 tokens

google-safe-browsing

Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…

davidondrej/skills · 105 tokens