Stats
Actions
Tags
How this command is triggered — by the user, by Claude, or both
Slash command
/ai-brainmap:brainmap [start|stop|status|clear]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
You manage the Brainmap server lifecycle. Pick the action from `$ARGUMENTS` (default: `start`). ### Action: `start` (or empty) 1. Check whether the server is already running: `curl -sf http://127.0.0.1:4823/api/ping` 2. If not, start it in the background and detach it from the session: 3. Open the frontend in the user's default browser: - macOS: `open http://127.0.0.1:4823` - Linux: `xdg-open http://127.0.0.1:4823` (fall back to `python3 -m webbrowser http://127.0.0.1:4823`) - Windows (Git Bash / WSL): `cmd.exe /c start http://127.0.0.1:4823` 4. Report the URL back. ### A...
You manage the Brainmap server lifecycle. Pick the action from $ARGUMENTS (default: start).
start (or empty)curl -sf http://127.0.0.1:4823/api/pingnohup python3 "${CLAUDE_PLUGIN_ROOT}/bin/mindmap-server.py" \
> /tmp/brainmap.log 2>&1 &
disown
open http://127.0.0.1:4823xdg-open http://127.0.0.1:4823 (fall back to python3 -m webbrowser http://127.0.0.1:4823)cmd.exe /c start http://127.0.0.1:4823stopcurl -s -X POST http://127.0.0.1:4823/api/shutdown || pkill -f mindmap-server.py
statuscurl -sf http://127.0.0.1:4823/api/ping && echo "running" || echo "not running"
clearcurl -s -X POST http://127.0.0.1:4823/api/clear
Reset the mindmap to an empty tree.
npx claudepluginhub austro-intelligence/ai-brainmap --plugin ai-brainmap