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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cotask:dashboardThis 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 the Cotask Dashboard server and show the link for the user to open.
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 themselvesnpx claudepluginhub wbopan/cotask-marketplace --plugin cotaskStarts a local dashboard server (Deno) for managing projects, viewing workflow graphs, agent streams, and documents. Useful for monitoring and managing multi-project workflows via browser.
Starts, stops, or checks dot-dash server for real-time browser dashboard monitoring Claude Code sessions, streaming transcripts via WebSocket, and prompt injection.
Starts SAGA dashboard server in background via npx/Bash and opens it in browser to visualize epics, stories, and execution progress.