browser-inspect

browser-inspect is a skill for Claude Code, Codex from ntorga/agent-starter-kit. It costs 16 tokens per session (1,756 once invoked), scanned A, original, MIT.

A browser inspection procedure for checking and interacting with the web page users actually see during development.

In plain words
What is it for?
Use it to inspect rendered UI, interact with pages, verify forms and screenshots, or debug a page using either a fresh browser session or the user's open browser.
Why use it?
Source code alone cannot show whether styles were removed, scripts ran, or server-rendered markup differs from the intended result.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it to inspect rendered UI, interact with pages, verify forms and screenshots, or debug a page using either a fresh browser session or the user's open browser.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ntorga/agent-starter-kit/browser-inspect
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 ntorga/agent-starter-kit --skill browser-inspect
Clone the repo
git clone --depth 1 https://github.com/ntorga/agent-starter-kit

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 browser-inspect

README.md
[![agentmods](https://agentmods.dev/badge/skills/ntorga/agent-starter-kit/browser-inspect/github.svg)](https://agentmods.dev/skills/ntorga/agent-starter-kit/browser-inspect)
Your own site
<a href="https://agentmods.dev/skills/ntorga/agent-starter-kit/browser-inspect"><img src="https://agentmods.dev/badge/skills/ntorga/agent-starter-kit/browser-inspect/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 browser-inspect

Your own site · 80×15
<a href="https://agentmods.dev/skills/ntorga/agent-starter-kit/browser-inspect"><img src="https://agentmods.dev/badge/skills/ntorga/agent-starter-kit/browser-inspect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,756 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.00016 $0.01756
Opus 5 $0.00008 $0.00878
Sonnet 5 $0.00003 $0.00351
Haiku 4.5 $0.00002 $0.00176

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

Security

Grade A, and why

browser-inspect 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 2d 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/browser-inspect/SKILL.md · 178 lines

How it starts

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

Purpose

An agent editing UI code cannot confirm that the result is correct by reading source files alone. CSS can be purged or overridden, client-side JS only runs in the browser, and server-rendered markup may differ from what the template suggests. Without looking at the live page, an agent is guessing. This skill codifies how to inspect, interact with, and verify rendered web UI using two complementary tools that serve different purposes.

Procedure

1. Tool selection

Two tools exist for browser work. They are not interchangeable — the distinction is which browser instance you connect to.

  • agent-browser: Spins up its own fresh session. Use for autonomous tasks: testing, form automation, screenshots, clean-state QA.
  • Chrome DevTools MCP: Attaches to the user's live browser. Use for collaborative debugging: inspecting existing state, auth sessions, HMR.

agent-browser is a free CLI tool — harness-agnostic, works everywhere, no API key:

npm install -g agent-browser
agent-browser install   # downloads Chrome for Testing (first time only)

Verify it before use: run command -v agent-browser. If it is missing, show the user the two install commands above and stop. Installing a global npm package and downloading a browser are system changes — the user runs them or explicitly approves them first. Once installed, continue.

Always use --engine chrome. Lightpanda has no rendering engine and cannot display visual output.

Chrome DevTools MCP is an MCP server — requires registration in the harness's MCP config. If the MCP server is not available, ask the user to add it to opencode.json (project) or ~/.config/opencode/opencode.json (global):

{
  "mcp": {
    "chrome-devtools": {
      "type": "local",
      "command": ["npx", "-y", "chrome-devtools-mcp@latest"]
    }
  }
}

The harness must be restarted after adding the config. The MCP server starts Chrome automatically on first tool use.

When to use which:

Read the full file on GitHub · 178 lines

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. 2d ago First seen · 178 lines · 16 tokens per session scan A e2da1057605e

Subscribe to this mod's changes

browser-inspect is a skill published in the GitHub repository ntorga/agent-starter-kit (142 stars, last pushed 2d ago), licensed MIT. It adds 16 tokens to every session and 1,756 once invoked, about $0.0001 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-09-13.

Related

Other skills, from other repositories

run-dashboard-e2e-local-changes

Run Playwright E2E (tests/e2e/) against the docker/ all-in-one harness so it reflects LOCAL code changes, not a stale cached image.

BlackBeltTechnology/pi-agent-dashboard · 42 tokens

playwright-uitest

Generate Playwright UI tests and visual smoke reports for delivery POC frontends.

DemonDamon/AgenticX · 21 tokens

hatch3r-browser-verify

Opt-in browser verification skill — spec-run-first Playwright verification (assertions execute in the runner, agent reads only failures), axe-core a11y audits, toHaveScreenshot() regression diffs, E2E test scaffolds, and snapshot-mode exploratory driving. Default ON for UI-affecting agent invocations; disable globally…

hatch3r/hatch3r · 83 tokens

browser-qa

Use this skill to automate visual testing and UI interaction verification using browser automation after deploying features.

sifxprime/kodelyth-ecc · 22 tokens

nobrainer-browser

Use when the owner says nb-browser or nobrainer-browser, asks to inspect or operate a rendered website, attach to an existing approved Chrome/Edge session, restart an approved non-default Chromium profile for loopback CDP, reproduce a browser flow, run Playwright tests, or record and analyze a Playwright trace. Prefer…

nobrainer-tech/nobrainer-tech-skills · 94 tokens

webapp-tester

Activates WebAppTester for automated web application testing strategy, test case design, and quality assurance. Use when you need to design a test plan for a web app, write Playwright or Cypress end-to-end tests, create API integration test suites, design accessibility test checklists, or analyze test coverage gaps.

vignesh2027/Claude-Agentic-Skills2.0-version · 67 tokens