install
source · Clone the upstream repo
git clone https://github.com/dlupiak/claude-session-dashboard
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/dlupiak/claude-session-dashboard "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/investigate" ~/.claude/skills/dlupiak-claude-session-dashboard-investigate && rm -rf "$T"
manifest:
.claude/skills/investigate/SKILL.mdsource content
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
, use as-ishttp - Check if the dev server is running on :3000; if not, suggest
npm run dev
2. Navigate
- Use
to open the URLmcp__playwright__browser_navigate - Take a screenshot with
mcp__playwright__browser_take_screenshot
3. Inspect
- Use
to get the accessibility treemcp__playwright__browser_snapshot - Check
for errorsmcp__playwright__browser_console_messages - Check
for failed requestsmcp__playwright__browser_network_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