claude-session-dashboard: Skill for Claude Code

.claude/skills/investigate/SKILL.md

investigate is a skill for Claude Code from dlupiak/claude-session-dashboard. It costs 13 tokens per session (293 once invoked), scanned A, original, MIT.

A browser-investigation workflow for inspecting a URL with Playwright, a tool that controls and examines web browsers. It navigates to the page, captures screenshots, inspects accessible content, and checks console and network errors.

In plain words
What is it for?
Use it to investigate local or remote pages, check layout and content, reproduce browser issues, and report console or failed-request problems.
Why use it?
It gives a structured way to understand how a page looks and behaves, including failures that may not be visible in the interface.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

This is dlupiak/claude-session-dashboard's own configuration. It tells Claude Code how to work on claude-session-dashboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-session-dashboard configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dlupiak/claude-session-dashboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dlupiak/claude-session-dashboard/main/.claude/skills/investigate/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dlupiak/claude-session-dashboard

Made for: Claude Code.

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 investigate

README.md
[![agentmods](https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/investigate/github.svg)](https://agentmods.dev/skills/dlupiak/claude-session-dashboard/investigate)
Your own site
<a href="https://agentmods.dev/skills/dlupiak/claude-session-dashboard/investigate"><img src="https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/investigate/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 investigate

Your own site · 80×15
<a href="https://agentmods.dev/skills/dlupiak/claude-session-dashboard/investigate"><img src="https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/investigate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 293 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00013 $0.00293
Opus 5 $0.00006 $0.00147
Sonnet 5 $0.00003 $0.00059
Haiku 4.5 $0.00001 $0.00029

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

Security

Grade A, and why

investigate 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 8d 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/skills/investigate/SKILL.md · 37 lines

What it actually says

Browser Investigation

You are investigating $ARGUMENTS.url using Playwright.

Steps

1. Resolve URL

  • If the URL starts with /, prepend http://localhost:3000
  • If the URL starts with http, use as-is
  • Check if the dev server is running on :3000; if not, suggest npm run dev

2. Navigate

  • Use mcp__playwright__browser_navigate to open the URL
  • Take a screenshot with mcp__playwright__browser_take_screenshot

3. Inspect

  • Use mcp__playwright__browser_snapshot to get the accessibility tree
  • Check mcp__playwright__browser_console_messages for errors
  • Check mcp__playwright__browser_network_requests for failed requests

4. Report

  • Summarize what you see: layout, content, errors
  • If there are console errors or network failures, list them
  • Suggest fixes if issues are found

Notes

  • Use Playwright MCP tools, not Bash-based browser commands
  • Take screenshots at each significant step
  • Close the browser when done: mcp__playwright__browser_close
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. 8d ago First seen · 37 lines · 13 tokens per session scan A c6bd58d52703

Subscribe to this mod's changes

investigate is a skill published in the GitHub repository dlupiak/claude-session-dashboard (67 stars, last pushed today), licensed MIT. It adds 13 tokens to every session and 293 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-01.

Related

Other skills, from other repositories

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.

jmagly/aiwg · 56 tokens

ts-debug

TypeScript/Node debugging expert. Use when the user needs to debug, profile, or trace TypeScript or Node.js code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function", "why won't the process exit".

berekvolgyipeter/dotclaude · 68 tokens

py-debug

Python debugging expert. Use when the user needs to debug, profile, or trace Python code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function".

berekvolgyipeter/dotclaude · 54 tokens

browser-debugger-cli

Inspect and debug live web pages using the Chrome DevTools Protocol via the bdg CLI. Use for targeted DOM queries, computed style checks, layout debugging, and CDP method calls without loading a full page snapshot. Prefer over chrome-devtools-mcp for token efficiency. Trigger on: "inspect element", "check computed…

jerseycheese/agent-skills · 116 tokens

shipkit-feedback-bug

Process user feedback into investigated bug specs with root cause analysis. Triggers: 'triage feedback', 'process bug reports', 'user testing feedback'.

stefan-stepzero/shipkit · 36 tokens

shipkit-codebase-audit

Audit a codebase for dead code, orphaned modules, unused dependencies, and unwired seams. Quick tier runs knip-class checks ephemerally (no repo mutation); deep and exhaustive tiers add intent↔code reconciliation. Portable to any repo, including ones with no tooling installed.

stefan-stepzero/shipkit · 65 tokens