From cotask
Starts Cotask Dashboard server at http://localhost:3847 if not running, using Node.js and Bash, displays clickable link, and suggests PWA install.
npx claudepluginhub wbopan/cotask-marketplace --plugin cotaskThis skill is limited to using the following tools:
Start the Cotask Dashboard server and show the link for the user to open.
Starts, stops, or checks dot-dash server for real-time browser dashboard monitoring Claude Code sessions, streaming transcripts via WebSocket, and prompt injection.
Adds admin dashboard plugin to NanoTars for system health monitoring, scheduled task management, message viewing, and group inspection using htmx and Tailwind CSS.
Starts and opens a local Deno-based dashboard server for .gran-maestro projects, providing workflow graphs, agent streams, document browser, and dependency visualization. Invoke via keywords like '대시보드' or /mst:dashboard; supports --stop/--restart.
Share bugs, ideas, or general feedback.
Start the Cotask Dashboard server and show the link for the user to open.
curl -s http://localhost:3847/api/health
SERVER_DIR="${CLAUDE_PLUGIN_ROOT}/server"
cd "${SERVER_DIR}" && nohup node server.js > /tmp/task-dashboard.log 2>&1 &
Wait up to 6 seconds for the server to become ready:
for i in $(seq 1 30); do
curl -s http://localhost:3847/api/health >/dev/null 2>&1 && break
sleep 0.2
done
Tell the user the dashboard is ready and display the link:
http://localhost:3847 as a clickable link for the user to openopen or xdg-open — let the user click the link themselves