Manage the local web visualization dashboard for RLCR loop sessions.
/humanize:viz <subcommand>
start— Launch the dashboard server (creates venv on first run, opens browser)stop— Stop the dashboard serverrestart— Restart the dashboard serverstatus— Check if the dashboard server is running
Run the appropriate shell script based on the subcommand:
# Determine paths
VIZ_DIR="${CLAUDE_PLUGIN_ROOT}/viz/scripts"
PROJECT_DIR="$(pwd)"
# Route subcommand
case "$1" in
start) bash "$VIZ_DIR/viz-start.sh" "$PROJECT_DIR" ;;
stop) bash "$VIZ_DIR/viz-stop.sh" "$PROJECT_DIR" ;;
restart) bash "$VIZ_DIR/viz-restart.sh" "$PROJECT_DIR" ;;
status) bash "$VIZ_DIR/viz-status.sh" "$PROJECT_DIR" ;;
*) bash "$VIZ_DIR/viz-status.sh" "$PROJECT_DIR" ;;
esacIf no subcommand is provided, default to status.
- Python 3 (for Flask server)
- tmux (for background process management)
- A
.humanize/directory in the project (created by RLCR loop)
The first start will automatically create a Python venv in .humanize/viz-venv/ and install dependencies.