Command
doctor
Diagnose Open Carrusel setup problems (Node, Claude CLI, deps, data, port).
Stop the local Open Carrusel dev server (defaults to :3000, accepts a port arg).
How it fires
How this command gets triggered: by you, by Claude, or both.
/stopContext preview
What this command does when you run it.
Stop the local Open Carrusel dev server (defaults to :3000, accepts a port arg).
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."
fiAI-powered Instagram carousel builder. Chat with Claude to design slides; export as PNGs at exact Instagram dimensions. Type /start in Claude Code to bootstrap.
Repo: Hainrixz/open-carrusel
Diagnose Open Carrusel setup problems (Node, Claude CLI, deps, data, port).