ST
stop-monitor
Stop the running Signal app and capture all logs and browser state for review.
Install
mkdir -p .claude/skills/stop-monitor && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14559" && unzip -o skill.zip -d .claude/skills/stop-monitor && rm skill.zipInstalls to .claude/skills/stop-monitor
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Stop the running Signal app and capture all logs and browser state for review.78 chars · catalog descriptionno explicit “when” trigger
About this skill
/stop-monitor — Stop Monitoring and Summarize
Stop the running Signal app and capture all logs and browser state for review.
Steps
- Read all server logs from the background uvicorn task using
TaskOutput - Capture the current browser state from the monitored tab:
- Page content via
mcp__claude-in-chrome__read_pageormcp__claude-in-chrome__get_page_text - Console messages via
mcp__claude-in-chrome__read_console_messages - Network requests via
mcp__claude-in-chrome__read_network_requests
- Page content via
- Stop the background uvicorn process using
TaskStop - Present a summary to the user covering:
- Server logs: HTTP requests served, any errors or tracebacks
- Browser console: JavaScript errors, warnings, or notable log messages
- Network requests: Failed requests, slow responses, or error status codes
- Overall status: Whether the session was clean or had issues
- Keep all captured context in the conversation so the user can ask follow-up questions
Important
- If no background task ID is available from a previous
/monitor-app, tell the user no monitoring session is active - If the browser tab is no longer available, skip browser capture and note it in the summary
- Always stop the server process to avoid orphaned background tasks