browser-devtools

browser-devtools is a skill for Claude Code, Codex from drvoss/everything-copilot-cli. It costs 24 tokens per session (1,698 once invoked), scanned A, original, MIT.

A browser-based inspection workflow for checking the page structure, network requests, runtime behavior, accessibility, and performance of a running frontend.

In plain words
What is it for?
Use it to inspect the DOM, examine API requests and responses, measure Core Web Vitals, and investigate end-to-end test failures.
Why use it?
It helps locate the cause of browser bugs and verify what the application actually does, rather than relying only on source code or test results.

Skill for Claude CodeCodex

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 skills/drvoss/everything-copilot-cli/browser-devtools
Any agent
npx skills add drvoss/everything-copilot-cli --skill browser-devtools
Clone the repo
git clone --depth 1 https://github.com/drvoss/everything-copilot-cli

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-devtools

README.md
[![agentmods](https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/browser-devtools.svg)](https://agentmods.dev/skills/drvoss/everything-copilot-cli/browser-devtools)
Your own site
<a href="https://agentmods.dev/skills/drvoss/everything-copilot-cli/browser-devtools"><img src="https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/browser-devtools.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,698 The whole file, excluding the scripts and references it only reads on demand.
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.00024 $0.01698
Opus 5 $0.00012 $0.00849
Sonnet 5 $0.00005 $0.00340
Haiku 4.5 $0.00002 $0.00170

Measured yesterday against content hash 1677e27ec587, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

browser-devtools 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 yesterday.

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/testing/browser-devtools/SKILL.md · 209 lines

How it starts

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

Browser DevTools Testing

When to Use

  • E2E 테스트 실패의 근본 원인을 찾을 때
  • API 호출이 예상대로 이루어지는지 검증할 때
  • Core Web Vitals와 성능 지표를 측정할 때
  • 접근성 문제를 런타임에서 확인할 때
  • Playwright 테스트 작성 전 동작을 수동으로 탐색할 때

Prerequisites

  • 브라우저에서 접근 가능한 실행 중인 앱 (로컬 또는 스테이징)
  • Chrome 또는 Edge DevTools 접근 권한
  • 테스트하려는 기능 또는 버그 재현 방법 파악

Workflow

1. DOM 상태 검증

// Console에서 실행
// 요소 존재 확인
document.querySelector('[data-testid="submit-button"]') !== null

// 요소 상태 확인
const btn = document.querySelector('button[type="submit"]');
console.log({
  disabled: btn.disabled,
  'aria-label': btn.getAttribute('aria-label'),
  visible: btn.offsetParent !== null
});

// 폼 데이터 확인
new FormData(document.querySelector('form')).entries().next()

2. 네트워크 탭으로 API 검증

확인 항목:

  • 요청 URL과 메서드 (GET/POST/PUT)
  • 요청 헤더 (Authorization, Content-Type)
  • 요청 바디 (정확한 payload 형식)
  • 응답 상태 코드와 바디
  • CORS 헤더 존재 여부
// fetch를 인터셉트해서 로깅
const originalFetch = window.fetch;
window.fetch = function(...args) {
  console.log('fetch:', args[0], args[1]);
  return originalFetch.apply(this, args);
};

3. Performance 탭 — Core Web Vitals 측정

// CLS 측정 (layout-shift)
new PerformanceObserver((list) => {
  let cls = 0;
  list.getEntries().forEach(entry => { if (!entry.hadRecentInput) cls += entry.value; });
  console.log('CLS:', cls);
}).observe({ entryTypes: ['layout-shift'] });

// LCP 측정
new PerformanceObserver((list) => {
  const entries = list.getEntries();
  const lcp = entries[entries.length - 1];
  console.log('LCP:', lcp.startTime, 'ms');
}).observe({ entryTypes: ['largest-contentful-paint'] });

// Long Task 측정 (INP 프록시)
new PerformanceObserver((list) => {
  list.getEntries().forEach(entry => {
    console.log('Long task:', entry.duration, 'ms');
  });
}).observe({ entryTypes: ['longtask'] }); // Chrome 지원; 다른 브라우저는 'long-animation-frame' 사용

목표치:

  • LCP ≤ 2.5s
  • INP ≤ 200ms
  • CLS ≤ 0.1

3-A. 재현 가능한 성능 게이트로 굳히기

브라우저 DevTools에서 병목을 찾았으면, 같은 문제를 CI에서도 다시 잡을 수 있게 반복 가능한 측정으로 굳힌다.

Read the full file on GitHub · 209 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. yesterday First seen · 209 lines · 24 tokens per session scan A 1677e27ec587

Subscribe to this mod's changes

browser-devtools is a skill published in the GitHub repository drvoss/everything-copilot-cli (45 stars, last pushed 8d ago), licensed MIT. It adds 24 tokens to every session and 1,698 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-03.

Related

Other skills, from other repositories

journey-test-harness

Run multiple journeys as a cross-platform test suite. Discover journeys, invoke journey-runner in isolated workspaces, deploy, verify, capture screenshots, clean up only owned Azure resources, and produce a consolidated report. USE FOR: test all journeys, regression test, CI journey validation, nightly journey test…

DanWahlin/github-azure-agentic-journeys · 109 tokens

external-site-profile-learning

Use this skill when investigating, adding, validating, or debugging external website profiles for the 99idea Playwright browser demo. It teaches how to probe selectors, classify failure modes, add config-driven profiles, and validate both heuristic and Gemini flows.

AllenS0104/skill-browser · 54 tokens

universal-web-adaptation

Use this skill when asked to work with an unfamiliar public website and the goal is to make progress generically before writing site-specific rules. It teaches Copilot how to probe controls, classify UI patterns, try multiple search and navigation strategies, follow popups, and only create a site profile when the…

AllenS0104/skill-browser · 72 tokens

site-profile

Short alias for external-site-profile-learning. Use this when investigating, adding, validating, or debugging external website profiles for the 99idea Playwright browser demo.

AllenS0104/skill-browser · 35 tokens

web-adapt

Short alias for universal-web-adaptation. Use this when adapting an unfamiliar public website generically before creating any site-specific rules.

AllenS0104/skill-browser · 29 tokens

adapt

Shortest English alias for web-adapt / universal-web-adaptation. Use this when adapting an unfamiliar public website generically before creating any site-specific rules.

AllenS0104/skill-browser · 32 tokens