browser-debugger-cli CLAUDE.md

Repository instructions for browser-debugger-cli, a command-line tool for controlling and inspecting browsers through the Chrome DevTools Protocol, a standard browser debugging interface.

In plain words
What is it for?
Use them when adding browser-debugger commands, inspecting protocol domains or methods, handling errors, or supporting JSON and human-readable output.
Why use it?
They encourage discovering the tool’s available commands and data formats before coding, and define consistent error and output handling.

Instructions file

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.

agentmods
npx agentmods add instructions/szymdzum/browser-debugger-cli/claude-md
Clone the repo
git clone --depth 1 https://github.com/szymdzum/browser-debugger-cli
Per session 1,817 This file is loaded in full into every session.
When invoked 1,817 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01817 $0.01817
Opus 5 $0.00908 $0.00908
Sonnet 5 $0.00363 $0.00363
Haiku 4.5 $0.00182 $0.00182

Measured 3d ago against content hash aaf47c3a3164, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

browser-debugger-cli CLAUDE.md 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 3d 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.

CLAUDE.md · 252 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code when working with this repository.

Agent-Friendly Discovery (START HERE)

bdg is self-documenting - use these FIRST:

bdg --help --json                       # All commands, flags, exit codes
bdg cdp --list                          # 53 CDP domains
bdg cdp Network --list                  # Methods in a domain
bdg cdp Network.getCookies --describe   # Full method schema
bdg cdp --search cookie                 # Search methods

Key Principle: Discover capabilities programmatically before implementation.


Essential Patterns

CommandRunner (src/commands/shared/CommandRunner.ts)

All commands use this wrapper for consistent error handling and JSON/human output:

await runCommand(
  async () => {
    const response = await ipcFunction(params);
    return response.status === 'error'
      ? { success: false, error: response.error }
      : { success: true, data: response.data };
  },
  options,
  formatFunction
);

Error Handling

Convention: process.exit and console.error belong at entrypoints only (src/index.ts, CommandRunner, signal handlers, daemon/worker bootstrap). Below that layer, choose one of two structured styles:

  • Throw CommandError — from deep helpers when the caller can't reasonably recover. CommandRunner catches and formats.
  • Return { success, error?, exitCode?, errorContext? } — from composable operations whose callers branch on failure (e.g., CLI command action handlers, FetchResult).

Never mix: a helper shouldn't log-and-exit when its surrounding function already returns a structured shape.

import { CommandError } from '@/ui/errors/index.js';
import { EXIT_CODES } from '@/utils/exitCodes.js';

throw new CommandError(
  'Session not found',
  { suggestion: 'Start a session with: bdg <url>' },
  EXIT_CODES.RESOURCE_NOT_FOUND
);

Message Centralization (src/ui/messages/)

All user-facing strings must use centralized functions - no inline strings.

Read the full file on GitHub · 252 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. 3d ago First seen · 252 lines · 1,817 tokens per session scan A aaf47c3a3164

Subscribe to this mod's changes

browser-debugger-cli CLAUDE.md is an instructions file published in the GitHub repository szymdzum/browser-debugger-cli (149 stars, last pushed 2mo ago), licensed MIT. It adds 1,817 tokens to every session, about $0.0091 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-30.

Related

Other instructions, from other repositories