e2e-chrome-devtools

e2e-chrome-devtools is a skill for Claude Code from parisgroup-ai/imersao-ia-setup. It costs 161 tokens per session (1,808 once invoked), scanned A, original, MIT.

A browser smoke-testing workflow for a running web app, using Chrome with its developer tools. It checks pages, screenshots, browser errors, failed requests, performance, mobile layouts, and dark mode.

In plain words
What is it for?
Use it to inspect key pages in a local or live app, capture screenshots, check the console and network activity, run performance audits, and test mobile or dark-mode views.
Why use it?
It helps catch visible problems, JavaScript errors, network failures, and performance issues that ordinary code checks may miss.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the imersao plugin — 51 skills, 7 commands shipped together

Good fit Use it to inspect key pages in a local or live app, capture screenshots, check the console and network activity, run performance audits, and test mobile or dark-mode views.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools
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 parisgroup-ai/imersao-ia-setup --skill e2e-chrome-devtools
Clone the repo
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setup

Made for: Claude Code.

Or install imersao, the plugin that ships this one along with the rest of its 51 skills, 7 commands.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools/github.svg)](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools)
Your own site
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools/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 e2e-chrome-devtools

Your own site · 80×15
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,808 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.00161 $0.01808
Opus 5 $0.00081 $0.00904
Sonnet 5 $0.00032 $0.00362
Haiku 4.5 $0.00016 $0.00181

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

Security

Grade A, and why

e2e-chrome-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 10d 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.

plugins/imersao/skills/e2e-chrome-devtools/SKILL.md · 221 lines

How it starts

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

Chrome DevTools Smoke Test

Run a structured visual smoke test against a running web application using the Chrome DevTools MCP server. This connects to the user's real Chrome browser (with sessions, cookies, extensions) — unlike Playwright which opens a headless browser.

When to use this vs Playwright MCP

Scenario Tool
Debug app with logged-in session Chrome DevTools MCP
Inspect console/network in real time Chrome DevTools MCP
Lighthouse audit, perf trace, heap snapshot Chrome DevTools MCP
Automated E2E test suite (CI) Playwright MCP
Headless screenshot comparison Playwright MCP

Prerequisites

The chrome-devtools MCP server must be configured in .mcp.json:

{
  "chrome-devtools": {
    "command": "npx",
    "args": ["chrome-devtools-mcp@latest", "--autoConnect"]
  }
}

Chrome must be running with DevTools Protocol enabled. The --autoConnect flag handles this automatically.

Workflow

Phase 1: Discovery

Understand what's available before testing.

  1. Load tools — Call ToolSearch for all mcp__chrome-devtools__* tools
  2. List pageslist_pages to see what's already open in Chrome
  3. Detect app — Check if the app is running locally (try common ports: 3000, 3700, 4000, 5173, 8080) or use a production URL already open in a tab
  4. Plan routes — Identify key pages to test based on the project structure (glob for **/page.tsx or similar)

Phase 2: Page-by-Page Smoke

For each target page, execute this sequence:

navigate_page(url)
  → take_screenshot(filePath, fullPage: true)
  → take_snapshot()                           # a11y tree with UIDs
  → list_console_messages(types: ["error", "warn"])
  → list_network_requests(resourceTypes: ["fetch", "xhr"])

Save screenshots to /tmp/smoke-NN-description.png.

Key pages to test (adapt to the project):

  • Landing / home page
  • Login page
  • Main dashboard (if logged in)
  • A detail/form page
  • A list/table page

Read the full file on GitHub · 221 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. 10d ago First seen · 221 lines · 161 tokens per session scan A bb4b355ae090

Subscribe to this mod's changes

e2e-chrome-devtools is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 28d ago), licensed MIT. It adds 161 tokens to every session and 1,808 once invoked, about $0.0008 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-31.

Related

Other skills, from other repositories

browser-validator

Automatically validate implementations in real browsers after code is written or when user says "test this", "test what you built in the browser", "check it in a real browser", or "validate at the breakpoints". Uses Chrome DevTools MCP to test responsive breakpoints (320px, 768px, 1024px), check accessibility…

kanopi/cms-cultivator · 99 tokens

feature-acceptance

A browser-based acceptance testing process that compares an online implementation with a product requirements document and, when available, an HTML prototype. It records what is complete, partial, missing, or inconsistent, with screenshots and prioritized blockers.

mayuemarsha-del/pm-skills · 192 tokens

test-site

Tests a deployed, activated Power Pages site at runtime using browser-based navigation, page crawling, and API request verification via Playwright. Use when the user wants to test, verify, or smoke-test their deployed site.

microsoft/power-platform-skills · 46 tokens

qa

Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).

SethGammon/Citadel · 56 tokens

e2e-testing

Playwright-based end-to-end testing workflow.

notque/vexjoy-agent · 14 tokens

playwright-cli

Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…

testdino-hq/playwright-skill · 64 tokens