Skip to content
Content
Command

/stop

Stop the local Open Carrusel dev server (defaults to :3000, accepts a port arg).

From plugin
open-carrusel
4134 skills4 commands

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/stop

Context preview

What this command does when you run it.

Stop the local Open Carrusel dev server (defaults to :3000, accepts a port arg).

Command definition

stop.md
description: Stop the local Open Carrusel dev server (defaults to :3000, accepts a port arg).
argument-hint: [port]
allowed-tools: Bash(lsof *), Bash(kill *), Bash(echo *)

Port to stop: $ARGUMENTS (defaults to 3000 if empty).

Run:

PORT=${ARGUMENTS:-3000}
PIDS=$(lsof -ti :$PORT 2>/dev/null)
if [ -n "$PIDS" ]; then
  echo "$PIDS" | xargs kill 2>/dev/null && echo "Stopped server on :$PORT (PIDs: $PIDS)."
else
  echo "Nothing was running on :$PORT."
fi
Ships withopen-carrusel

AI-powered Instagram carousel builder. Chat with Claude to design slides; export as PNGs at exact Instagram dimensions. Type /start in Claude Code to bootstrap.

Get the whole plugin
Stats
413
Stars
67
Forks
Maintained
Maintenance
TypeScript
Language
MIT
License
3mo ago
Last commit
3mo ago
Created

Repo: Hainrixz/open-carrusel