Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

bridgic-browser桥浏览器

Agent Skill

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

总安装

1,175

周安装

48

GitHub Stars

51

下载量

376
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bitsky-tech/bridgic-browser --skill bridgic-browser

简介

bridgic-browser 提供浏览器自动化与页面信息提取能力,基于 Playwright 实现。

  • 适用于网页检查、前端流程验证和数据抓取任务。
  • 支持 CLI 与 Python SDK,需预先安装 chromium。
  • 使用前应确认目标站点允许自动化访问,遵守 robots.txt 限制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Dependencies

A bridgic-browser project requires the following packages:

PackageDescription
bridgic-browserBrowser automation CLI + Python SDK (installing one installs both)

Additionally, browser binaries must be installed once: uv run playwright install chromium.

Installation: Run the install script to set up all dependencies:

bash "skills/bridgic-browser/scripts/install-deps.sh" "$PWD"

The script checks uv availability, initializes a uv project if needed, installs missing packages, and ensures Playwright chromium is available.

Strategies & Guidelines (Important!!)

Notes:

  • Whenever invoking the bridgic-browser CLI, you must call it using uv run.
  • If the user clearly specifies exact steps that must be followed, try to perform the exploration according to those steps. If loops or branches appear during exploration, decide the best exploration path autonomously.
  • If you think you may need to return to the original page after clicking into a new page, try opening the new page in a new browser tab instead of using a “click then go back” approach. This is especially important when the original page already has interaction state (such as filled forms or applied filters); otherwise, that state may be lost after navigating back. Be sure to close the new tab promptly after finishing the related actions.
  • If exploration involves repeatedly clicking items in a list, you do not need to traverse every item (especially when the list is large).
  • If login, verification, or authorization is required during exploration, pause and ask the user to complete it manually, unless the user explicitly provides instructions in the task.
  • To avoid operating on websites too frequently, maintain human-like access intervals during both exploration and coding. You may simulate random wait times to reduce the risk of being blocked. Note: the bridgic-browser wait command parameter is in seconds, not milliseconds; for example, bridgic-browser wait 2 or bridgic-browser wait 3.2.
  • After finishing exploration and code writing, automatically run testing/validation.

Reference Files

Reference files cover all use cases. Load only the one(s) relevant to the task:

ScenarioInterfaceLoad
Directly control browser from terminalCLIcli-guide.md
Write Python code about browser automationPythonsdk-guide.md
Write shell script about browser automationCLIcli-guide.md
Explore via CLI, then generate Python codeCLI → Pythoncli-sdk-api-mapping.md + sdk-guide.md
Migrate / compare / explain CLI ↔ SDKBothcli-sdk-api-mapping.md
Configure env vars or login state persistenceEitherenv-vars.md

Interface Decision Rules

  1. Output requested as shell commands or scripts → use CLI guide first (references/cli-guide.md).
  2. Output requested as runnable Python code (async, Browser, tool builder) → use SDK guide first (references/sdk-guide.md).
  3. Input is CLI outputs or actions but output needs to be Python code → use mapping guide first (references/cli-sdk-api-mapping.md), then SDK guide for final code generation (references/sdk-guide.md).
  4. If intent is ambiguous, infer from requested artifacts (.sh / terminal session vs .py script).

Common Usage (CLI + SDK)

  • Ref-based actions depend on the latest snapshot.
  • After navigation or major DOM updates, refs can become stale; refresh snapshot before ref actions.
  • CLI keeps state in a daemon session across invocations.
  • SDK keeps state in the Python process/context. By default, browser profile (cookies, session) is persisted to ~/.bridgic/bridgic-browser/user_data/; pass clear_user_data=True to Browser() for an ephemeral session.
  • Use exact command/method names from references; do not invent aliases.

Bridge Workflow: CLI Actions -> Python Code

  1. Parse CLI steps in order.
  2. Map each step using references/cli-sdk-api-mapping.md.
  3. Preserve behavior details: refs, options, arguments, configuration, etc.
  4. Emit runnable async Python code with explicit browser lifecycle (async with Browser(...) preferred).
  5. Call out any behavior differences that cannot be represented 1:1.

Minimal Quality Checklist

  • CLI request: return valid CLI commands/options only.
  • SDK request: return executable async Python with correct imports.
  • Bridge request: include mapping rationale plus final SDK code.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.67%
按下载量换算130

Claude

29.87%
按下载量换算112

Cursor

18.91%
按下载量换算71

Gemini CLI

8.88%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills