Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ai-gentik avatar

Stop Server

  • 1 installs
  • Updated April 30, 2026
  • ai-gentik/desire-path

stop-server is a Claude Code skill that stops the desire-path live dashboard server running at localhost:2337.

About

A single-purpose Claude Code skill that stops the desire-path live dashboard server running on localhost:2337. It reads the server PID from a saved pid file, kills the process, and removes the file. A developer invokes it when they want to shut the local dashboard down.

  • Stops the desire-path dashboard server on localhost:2337
  • Kills the process from a saved PID file and cleans it up
  • Handles the already-stopped and missing-PID cases

Stop Server by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #468 of 550 CLI & Terminal skills by installs in the Skillselion catalog
  • Data as of Jul 7, 2026 (Skillselion catalog sync)
At a glance

stop-server capabilities & compatibility

Capabilities
stop server · process management
Platforms
macOS · Linux
Pricing
Free
From the docs

What stop-server says it does

Stop the desire-path live dashboard server running at localhost:2337.
SKILL.md
kill $(cat "$PID_FILE") 2>/dev/null && echo "Dashboard server stopped."
SKILL.md
npx skills add https://github.com/ai-gentik/desire-path --skill stop-server

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
Last updatedApril 30, 2026
Repositoryai-gentik/desire-path

What it does

Stop the local desire-path dashboard server and clean up its PID file.

Who is it for?

Shutting down the desire-path local dashboard server

Skip if: Managing remote or production servers; it only handles a local PID-tracked process

When should I use this skill?

The user wants to stop the desire-path dashboard server

What you get

The dashboard server process is killed and its PID file removed.

Files

SKILL.mdMarkdownGitHub ↗

Desire Path: Stop Server

Run:

PID_FILE="$HOME/.claude/desire-path/server.pid"
if [ -f "$PID_FILE" ]; then
  kill $(cat "$PID_FILE") 2>/dev/null && echo "Dashboard server stopped." || echo "Process not found — may have already exited."
  rm -f "$PID_FILE"
else
  echo "No server PID file found — server may not be running."
fi

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.