
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)
stop-server capabilities & compatibility
- Capabilities
- stop server · process management
- Platforms
- macOS · Linux
- Pricing
- Free
What stop-server says it does
Stop the desire-path live dashboard server running at localhost:2337.
kill $(cat "$PID_FILE") 2>/dev/null && echo "Dashboard server stopped."
npx skills add https://github.com/ai-gentik/desire-path --skill stop-serverAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | April 30, 2026 |
| Repository | ai-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
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