From agent-stalker
This skill should be used when the user runs "/stalker-ui" or asks to "start the agent-stalker dashboard", "open the stalker UI", "launch the tracking dashboard", "view tracked sessions in the browser", or "stop the stalker server". Starts (or stops) the agent-stalker web dashboard.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-stalker:stalker-ui [stop] [--port <number>] [--host <address>][stop] [--port <number>] [--host <address>]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Start or stop the agent-stalker web dashboard.
Start or stop the agent-stalker web dashboard.
If the user passes stop, terminate any running dashboard server. On a POSIX shell (macOS/Linux, Git Bash):
pkill -f "bun.*ui/server.ts" 2>/dev/null && echo "Server stopped" || echo "No server running"
On Windows PowerShell, pkill is unavailable — stop the process listening on the dashboard port instead (default 3141; substitute the user's --port if given):
Get-NetTCPConnection -LocalPort 3141 -State Listen -ErrorAction SilentlyContinue | ForEach-Object { Stop-Process -Id $_.OwningProcess -Force }
Otherwise, start the server in the background, passing through any arguments (such as --port <number>). On a POSIX shell:
bun "${CLAUDE_PLUGIN_ROOT}/ui/server.ts" $ARGUMENTS &
On Windows PowerShell, & does not background — launch it detached instead:
Start-Process bun -ArgumentList "$env:CLAUDE_PLUGIN_ROOT/ui/server.ts",$ARGUMENTS -WindowStyle Hidden
The default port is 3141. After starting, tell the user the URL: http://localhost:<port> (use the port from --port if provided, otherwise 3141).
127.0.0.1 by default. For LAN access (e.g. viewing from
another machine), set "ui": { "host": "0.0.0.0" } in
~/.claude/agent-stalker.config.json, or pass --host 0.0.0.0. If browsing
by machine name rather than IP, also add the name to ui.allowedHosts.--port <number> to the user.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub ehartye/agent-stalker --plugin agent-stalker