From 2d8c8b2888bdd5ac5ca3b696fb13e53c208d48cb Mon Sep 17 00:00:00 2001 From: BruceChen Date: Tue, 14 Apr 2026 17:15:33 +0000 Subject: [PATCH] refactor: replace CursorBot references with MCCBot in pathing scripts and documentation --- .../plans/2026-04-12-pathing-live-regression-convergence.md | 2 +- .../plans/2026-04-12-pathing-transition-braking.md | 6 +++--- tools/pathing_live_common.sh | 6 +++--- tools/test-pathing-jump-combos.sh | 2 +- tools/test-pathing-long-routes.sh | 2 +- tools/test-pathing-template-regressions.sh | 2 +- tools/test-transition-braking.sh | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/superpowers/plans/2026-04-12-pathing-live-regression-convergence.md b/docs/superpowers/plans/2026-04-12-pathing-live-regression-convergence.md index f3738721..2d7bb797 100644 --- a/docs/superpowers/plans/2026-04-12-pathing-live-regression-convergence.md +++ b/docs/superpowers/plans/2026-04-12-pathing-live-regression-convergence.md @@ -372,7 +372,7 @@ git commit -m "fix: align sprint jump landing recovery with turn braking" # - run_short_descend_into_turn # Each function must: # 1. build the exact world with mc-rcon -# 2. teleport CursorBot +# 2. teleport MCCBot # 3. send the pathfind command # 4. fail immediately on any "[PathExec] Segment .* FAILED" # 5. assert the final location or assert explicit planner rejection diff --git a/docs/superpowers/plans/2026-04-12-pathing-transition-braking.md b/docs/superpowers/plans/2026-04-12-pathing-transition-braking.md index e63d155d..9de75eca 100644 --- a/docs/superpowers/plans/2026-04-12-pathing-transition-braking.md +++ b/docs/superpowers/plans/2026-04-12-pathing-transition-braking.md @@ -1489,7 +1489,7 @@ mc-start "$VERSION" >/dev/null if ! tmux has-session -t "$SESSION" 2>/dev/null; then tmux new-session -d -s "$SESSION" -x 160 -y 50 \ - "cd '$MCC_REPO' && dotnet run --project MinecraftClient -c Release --no-build -- '$CFG' CursorBot - localhost:25565; echo '=== MCC EXITED ==='; sleep 600" + "cd '$MCC_REPO' && dotnet run --project MinecraftClient -c Release --no-build -- '$CFG' MCCBot - localhost:25565; echo '=== MCC EXITED ==='; sleep 600" sleep 5 fi @@ -1500,7 +1500,7 @@ sleep 1 echo "== Flat final stop ==" mc-rcon "fill 95 79 95 115 79 105 stone" >/dev/null mc-rcon "fill 95 80 95 115 85 105 air" >/dev/null -mc-rcon "tp CursorBot 100.5 80 100.5" >/dev/null +mc-rcon "tp MCCBot 100.5 80 100.5" >/dev/null sleep 2 send_mcc "/goto 103 80 100" sleep 5 @@ -1514,7 +1514,7 @@ mc-rcon "fill 118 79 108 126 79 112 air" >/dev/null mc-rcon "setblock 120 79 110 stone" >/dev/null mc-rcon "setblock 123 79 110 stone" >/dev/null mc-rcon "setblock 123 79 111 stone" >/dev/null -mc-rcon "tp CursorBot 120.5 80 110.5" >/dev/null +mc-rcon "tp MCCBot 120.5 80 110.5" >/dev/null sleep 2 send_mcc "/goto 123 80 111" sleep 6 diff --git a/tools/pathing_live_common.sh b/tools/pathing_live_common.sh index 5648dcb2..a5687b23 100644 --- a/tools/pathing_live_common.sh +++ b/tools/pathing_live_common.sh @@ -72,11 +72,11 @@ run_test() { mcc-cmd "respawn" 2>/dev/null || true sleep 0.5 - mc-rcon "gamemode creative CursorBot" >/dev/null 2>&1 + mc-rcon "gamemode creative MCCBot" >/dev/null 2>&1 sleep 0.3 - mc-rcon "tp CursorBot ${start_x}.5 ${start_y} ${start_z}.5" >/dev/null 2>&1 + mc-rcon "tp MCCBot ${start_x}.5 ${start_y} ${start_z}.5" >/dev/null 2>&1 sleep 2 - mc-rcon "gamemode survival CursorBot" >/dev/null 2>&1 + mc-rcon "gamemode survival MCCBot" >/dev/null 2>&1 sleep 1 : > "$LOG" diff --git a/tools/test-pathing-jump-combos.sh b/tools/test-pathing-jump-combos.sh index 6ebc7ace..23062b0a 100644 --- a/tools/test-pathing-jump-combos.sh +++ b/tools/test-pathing-jump-combos.sh @@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh" VERSION="${1:-1.21.11-Vanilla}" SESSION="mcc-pathing-jump-combos" -USERNAME="CursorBot" +USERNAME="MCCBot" SESSION_ROOT="$(_mcc_session_root "$SESSION")" LOG="$(_mcc_session_log_file "$SESSION")" diff --git a/tools/test-pathing-long-routes.sh b/tools/test-pathing-long-routes.sh index 72444dfa..061fbe8e 100644 --- a/tools/test-pathing-long-routes.sh +++ b/tools/test-pathing-long-routes.sh @@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh" VERSION="${1:-1.21.11-Vanilla}" SESSION="mcc-pathing-long-routes" -USERNAME="CursorBot" +USERNAME="MCCBot" SESSION_ROOT="$(_mcc_session_root "$SESSION")" LOG="$(_mcc_session_log_file "$SESSION")" diff --git a/tools/test-pathing-template-regressions.sh b/tools/test-pathing-template-regressions.sh index 81262b66..2b7abfca 100644 --- a/tools/test-pathing-template-regressions.sh +++ b/tools/test-pathing-template-regressions.sh @@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh" VERSION="${1:-1.21.11-Vanilla}" SESSION="mcc-pathing-template" -USERNAME="CursorBot" +USERNAME="MCCBot" SESSION_ROOT="$(_mcc_session_root "$SESSION")" LOG="$(_mcc_session_log_file "$SESSION")" diff --git a/tools/test-transition-braking.sh b/tools/test-transition-braking.sh index 922e6cf9..f5d1c89d 100644 --- a/tools/test-transition-braking.sh +++ b/tools/test-transition-braking.sh @@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh" VERSION="${1:-1.21.11-Vanilla}" SESSION="mcc-brake-test" -USERNAME="CursorBot" +USERNAME="MCCBot" SESSION_ROOT="$(_mcc_session_root "$SESSION")" LOG="$(_mcc_session_log_file "$SESSION")"