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.
npx skills add khalilbenaz/claude-skills-collection --skill chrome-devtools-debuggergit clone --depth 1 https://github.com/khalilbenaz/claude-skills-collectionWrote 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.
[](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/chrome-devtools-debugger)<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/chrome-devtools-debugger"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/chrome-devtools-debugger/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.
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/chrome-devtools-debugger"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/chrome-devtools-debugger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00115 | $0.01604 |
| Opus 5 | $0.00057 | $0.00802 |
| Sonnet 5 | $0.00023 | $0.00321 |
| Haiku 4.5 | $0.00012 | $0.00160 |
Grade A, and why
chrome-devtools-debugger 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Débogueur Chrome DevTools
Workflow général (ordre obligatoire)
Naviguer → Attendre chargement → Inspecter (snapshot) → Agir → Vérifier
- Naviguer vers la page cible (
navigateavec URL complète incluant le protocole). - Attendre que la page soit stable (réseau idle,
DOMContentLoaded). - Lister les pages disponibles si plusieurs onglets, sélectionner le bon
targetId. - Snapshot de la structure (arbre d'accessibilité) — donne les identifiants uniques pour les interactions.
- Agir selon le besoin : clic, saisie, scroll, exécution JS.
- Vérifier le résultat : snapshot diff, console, capture si visuel requis.
Scénarios courants
1. Erreurs JavaScript
naviguer → snapshot → getConsoleMessages → evalScript
- Récupérer les messages console filtrés sur
level: error. - Identifier le fichier et la ligne dans la stack trace.
- Exécuter du JS pour inspecter l'état en direct :
// Exemples copiables dans evalScript
document.querySelectorAll('[data-error]').length
window.__reactFiber !== undefined // détecter React
performance.getEntriesByType('resource').filter(r => r.duration > 1000)
- Si l'erreur est
Cannot read properties of undefined: vérifier le timing (race condition) avecdocument.readyState.
2. Problèmes réseau
naviguer → getNetworkRequests → filtrer → analyser
Filtres prioritaires :
| Symptôme | Filtre à appliquer |
|---|---|
| Page blanche / données manquantes | status >= 400 |
| Lenteur | duration > 2000ms |
| Erreur CORS | blocked: true, header Access-Control-Allow-Origin absent |
| CSP violation | messages console de type Content Security Policy |
| Waterfall lent | requêtes séquentielles au lieu de parallèles |
Snippet de diagnostic réseau via evalScript :
// Ressources lentes (> 1s)
performance.getEntriesByType('resource')
.filter(r => r.duration > 1000)
.map(r => ({ name: r.name, duration: Math.round(r.duration) }))
3. Analyse de performance
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.
- 9d ago First seen · 147 lines · 115 tokens per session scan A c5e37dddd9c7
chrome-devtools-debugger is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 19d ago), licensed MIT. It adds 115 tokens to every session and 1,604 once invoked, about $0.0006 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.
Other skills, from other repositories
browser-edge-cases
SOP for debugging browser automation failures on complex websites. Use when browser tools fail on specific sites like LinkedIn, Twitter/X, SPAs, or sites with Shadow DOM.
browser-doctor
Read-only health check on browser-control setup. Verifies browser binary, Playwright MCP Bridge extension presence, token file mode/contents, AIWG MCP registration, provider config injection, and optional workspace allow-list. Outputs pass/fail per check with remediation commands.
debug
Systematic debugging via logs, health checks, hypothesis-driven investigation. Triggers: debug, error, trace root cause, fix bug, reproduce symptom, investigation.
introspect
Agent self-debugging and recovery. Use when stuck in loops, making repeated errors, or quality degrades. Triggers: introspect, self-debug, stuck, loop, why failing.
browser-debugging
Chrome DevTools MCP ile browser debugging. Console, network, performance, DOM analizi.
fix
Applies targeted fix to known bug/lint error, verifies with same command that surfaced it. Triggers: fix, apply fix, fix bug, fix lint, targeted fix.