browser-status

Report browser open state, URL, title, and tab count.

9|2|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill browser-status-allbeingsfuture
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: browser-status
Source: https://github.com/AllBeingsFuture/AllBeingsFuture/tree/main/electron/embedded-assets/skills/system/browser-status
Command: npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill browser-status-allbeingsfuture

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a simple programmatic way to inspect the browser's current state so agents or automations can decide whether to open, navigate, or interact with the active page.

Core Features & Use Cases

  • Status Inspection: Reports whether the browser is running.
  • Context Retrieval: Returns the active page URL and title and the number of open tabs.
  • Automation Checkpoint: Useful for validation before navigation, scraping, screenshotting, or handing off to browser_open and browser_navigate tools.

Quick Start

Use the browser-status skill to report the current browser open status, URL, page title, and tab count.

Frequently Asked Questions about browser-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check the current browser URL and page title for web automation?

To check the current browser URL and page title for web automation, you can use a browser status inspection tool that returns structured fields including is_open, url, title, and tab_count without requiring input parameters.

Can I retrieve the number of open tabs in a browser before scraping?

Yes, you can retrieve the number of open tabs in a browser before scraping by invoking a browser status check, which returns a tab_count field alongside the active page URL and title to validate the browser context.

What is the best way to verify if a browser is running before multi-agent navigation?

The best way to verify if a browser is running before multi-agent navigation is to inspect the browser open state, which returns a boolean is_open field and the current page title for automation checkpoint validation.

How to validate active browser context before handing off to browser navigation tools?

To validate active browser context before handing off to browser navigation tools, run a status inspection that reports the current URL, page title, and tab count, ensuring the browser handler tool operates on the correct page.

Does the browser status check require input parameters to report open state?

No, the browser status check does not require input parameters to report open state; it programmatically inspects and returns the active browser context fields directly when invoked by a browser handler tool.