feat(runtime/pathfinder): stuck-replan watchdog — react to mid-path obstacles

Problem (live 2026-05-26 screenshot): player drops a block in front of
the bot mid-path. mineflayer-pathfinder computes the path once when
goto() is called and never recomputes for world changes. Bot pushes
forward against the new block until the 30–60 s goto timeout fires,
visible as the bot just standing there pressing W.

Fix — runtime/pathfinder-watchdog.js: per-bot poll loop (2 s tick) that
runs while bot.pathfinder.goal is non-null. Tracks horizontal position.
If movement < 0.5 blocks for > 6 s after an initial 1.5 s grace,
forces a replan: setGoal(null) + setGoal(<same goal>) on a 250 ms
delay. That makes the planner rebuild the path against the current
world, so it routes around the new block — or, with canDig=true in our
profiles, digs through it. Capped at 3 replans per goal so a genuinely
unreachable target still bubbles up to the caller's timeout.

Side benefit: catches mineflayer-pathfinder issue #222 ("path hangs
on unreachable goal") much earlier than our 45 s goto wrappers.

Wired into bot.js on the "spawn" event and stopped on gracefulExit.
7 new unit tests cover the polling math + replan cap. 197/197 green.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-26 20:00:01 +03:00
co-authored by Claude Opus 4.7
parent d9f11b7d99
commit 01531c54c8
4 changed files with 223 additions and 1 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
"tui": "tsx tui/tui.tsx",
"propose:apply": "node scripts/propose-apply.js",
"stop": "bash scripts/stop.sh",
"test": "node --test runtime/skills/contract.test.js runtime/skills/groups.test.js runtime/skills/compat.test.js runtime/skills/recovery-tunnel-out.test.js runtime/curriculum.test.js runtime/social/social.test.js runtime/social/conversation.test.js runtime/social/chat-history.test.js runtime/social/reply-pi.test.js runtime/stuck-incident.test.js runtime/compat.test.js runtime/reflex.test.js runtime/base-site.test.js runtime/locations.test.js runtime/watch-filter.test.js runtime/world-journal.test.js runtime/scenario-memory.test.js runtime/critic.test.js runtime/skill-library.test.js runtime/modes.test.js scripts/edit-scope.test.js scripts/lint-patch.test.js"
"test": "node --test runtime/skills/contract.test.js runtime/skills/groups.test.js runtime/skills/compat.test.js runtime/skills/recovery-tunnel-out.test.js runtime/curriculum.test.js runtime/social/social.test.js runtime/social/conversation.test.js runtime/social/chat-history.test.js runtime/social/reply-pi.test.js runtime/stuck-incident.test.js runtime/compat.test.js runtime/reflex.test.js runtime/base-site.test.js runtime/locations.test.js runtime/watch-filter.test.js runtime/world-journal.test.js runtime/scenario-memory.test.js runtime/critic.test.js runtime/skill-library.test.js runtime/modes.test.js runtime/pathfinder-watchdog.test.js scripts/edit-scope.test.js scripts/lint-patch.test.js"
},
"dependencies": {
"canvas": "^3.2.3",
+10
View File
@@ -40,6 +40,7 @@ import { startPlanner, isPlannerBusy, readNextMilestone, planExists } from "./pl
import { computeState, STATES } from "./state.js";
import { createNoProgressDetector } from "./no-progress.js";
import { maybeStartViewer } from "./viewer.js";
import { createPathfinderWatchdog } from "./pathfinder-watchdog.js";
import { nextMilestone as nextCurriculumMilestone } from "./curriculum.js";
import { listLocations } from "./locations.js";
import { runSkill } from "./skills/index.js";
@@ -66,6 +67,7 @@ const ESCALATE_AFTER_NOOPS = 20;
const ESCALATION_COOLDOWN_MS = 10 * 60 * 1000;
let bot = null;
let pathWatchdog = null;
let reflexPaused = false;
let tickTimer = null;
let reconnectTimer = null;
@@ -638,6 +640,12 @@ function connect() {
appendDiary(`spawned at ${bot.entity.position.x.toFixed(0)},${bot.entity.position.y.toFixed(0)},${bot.entity.position.z.toFixed(0)}`);
ipc?.broadcast(EVENT_TYPES.STATUS, buildSnapshot(bot));
maybeStartViewer(bot).catch((e) => warn("viewer", `start threw: ${e?.message ?? e}`));
// Pathfinder stuck-watchdog: replan when an obstacle appears mid-path
// (mineflayer-pathfinder doesn't recompute on world changes).
try {
pathWatchdog?.stop();
pathWatchdog = createPathfinderWatchdog(bot);
} catch (e) { warn("pathfinder", `watchdog start failed: ${e?.message ?? e}`); }
});
bot.on("messagestr", (text) => {
@@ -1033,6 +1041,8 @@ function gracefulExit(code) {
info("runtime", "shutting down");
if (tickTimer) clearInterval(tickTimer);
if (reconnectTimer) clearTimeout(reconnectTimer);
try { pathWatchdog?.stop(); } catch {}
pathWatchdog = null;
try {
bot?.quit("shutdown");
} catch {}
+121
View File
@@ -0,0 +1,121 @@
// Pathfinder stuck-watchdog.
//
// Problem (observed live 2026-05-26): mineflayer-pathfinder computes a
// path once when goto() is called and does NOT recompute when the
// world changes mid-traversal. If a player places a block in front of
// the bot — or a creeper craters the path — pathfinder keeps trying to
// step into the old node and the bot just stands there pressing forward
// against the new obstacle until the goto() timeout (typically 3060 s).
//
// Fix: a poll loop that runs while `bot.pathfinder.goal` is non-null.
// Every WATCH_INTERVAL_MS we read the horizontal position. If we haven't
// moved STUCK_DELTA blocks in STUCK_WINDOW_MS, we declare the path
// stale and force a replan by clearing the goal and re-setting it. The
// pathfinder then recomputes against the current world, taking the new
// obstacle into account — including digging through it if canDig=true.
//
// Side benefit: even when no obstacle was placed, this catches the
// pathological "pathfinder stuck on a goal it can never reach" case
// (mineflayer-pathfinder issue #222) much earlier than the 45 s goto
// timeout we wrapped goto() in.
import { info, warn } from "./log.js";
const WATCH_INTERVAL_MS = 2_000;
const STUCK_WINDOW_MS = 6_000;
const STUCK_DELTA = 0.5;
const MIN_TRAVEL_TIME_MS = 1_500; // grace at the start so we don't replan during initial step
const MAX_REPLAN_PER_GOAL = 3;
function hpos(p) {
return p ? { x: p.x, z: p.z } : null;
}
function hdist(a, b) {
if (!a || !b) return Number.POSITIVE_INFINITY;
return Math.hypot(a.x - b.x, a.z - b.z);
}
export function createPathfinderWatchdog(bot, {
intervalMs = WATCH_INTERVAL_MS,
windowMs = STUCK_WINDOW_MS,
delta = STUCK_DELTA,
maxReplans = MAX_REPLAN_PER_GOAL,
} = {}) {
if (!bot) throw new Error("pathfinder-watchdog: bot required");
let lastSeenAt = 0;
let lastSeenPos = null;
let lastGoal = null;
let goalStartedAt = 0;
let replansThisGoal = 0;
let stopped = false;
let timer = null;
function tick() {
if (stopped) return;
const pf = bot.pathfinder;
const goal = pf?.goal;
if (!goal) {
// No active goal — reset our state.
lastGoal = null;
lastSeenPos = null;
replansThisGoal = 0;
return;
}
if (goal !== lastGoal) {
// New goal started — reset counters.
lastGoal = goal;
lastSeenPos = hpos(bot.entity?.position);
lastSeenAt = Date.now();
goalStartedAt = Date.now();
replansThisGoal = 0;
return;
}
if (Date.now() - goalStartedAt < MIN_TRAVEL_TIME_MS) return;
const now = Date.now();
const here = hpos(bot.entity?.position);
if (here && hdist(here, lastSeenPos) >= delta) {
lastSeenPos = here;
lastSeenAt = now;
return;
}
if (now - lastSeenAt < windowMs) return;
// Stuck. Force a replan — clear the goal, then re-set the same
// goal so pathfinder rebuilds the graph against the current world.
if (replansThisGoal >= maxReplans) {
warn("pathfinder", `stuck > ${windowMs / 1000}s and hit ${maxReplans} replans; giving up — caller's timeout will fire`);
lastSeenAt = now; // throttle further warnings within this window
return;
}
replansThisGoal++;
info("pathfinder", `stuck for ${Math.round((now - lastSeenAt) / 1000)}s at (${Math.round(here?.x ?? 0)},${Math.round(here?.z ?? 0)}) — forcing replan #${replansThisGoal}`);
try {
const goalCopy = goal;
// setGoal(null) cancels the current pathing without bubbling
// an error to the awaiting goto() promise.
pf.setGoal(null);
// Re-set immediately. mineflayer-pathfinder will compute a
// fresh path off the latest world snapshot.
setTimeout(() => {
if (stopped) return;
try { pf.setGoal(goalCopy); } catch (e) { warn("pathfinder", `replan setGoal failed: ${e.message}`); }
}, 250);
lastSeenAt = now; // reset window
} catch (e) {
warn("pathfinder", `replan failed: ${e.message}`);
}
}
timer = setInterval(tick, intervalMs);
return {
stop() {
stopped = true;
if (timer) clearInterval(timer);
timer = null;
},
};
}
// Pure helpers for tests.
export const _internal = { hpos, hdist };
+91
View File
@@ -0,0 +1,91 @@
import { test } from "node:test";
import assert from "node:assert/strict";
import { createPathfinderWatchdog, _internal } from "./pathfinder-watchdog.js";
test("hdist: zero for same point", () => {
assert.equal(_internal.hdist({ x: 1, z: 2 }, { x: 1, z: 2 }), 0);
});
test("hdist: pythagorean", () => {
assert.equal(_internal.hdist({ x: 0, z: 0 }, { x: 3, z: 4 }), 5);
});
test("hpos: y is dropped", () => {
assert.deepEqual(_internal.hpos({ x: 1, y: 100, z: 2 }), { x: 1, z: 2 });
assert.equal(_internal.hpos(null), null);
});
function makeBot({ goalRef, pos }) {
const ref = { current: goalRef ?? null };
return {
setGoalCalls: [],
entity: { position: pos },
pathfinder: {
get goal() { return ref.current; },
setGoal(g) {
ref.current = g;
this._owner.setGoalCalls.push(g);
},
},
};
}
test("no replan when bot is moving", async () => {
const goal = { id: "g1" };
const bot = makeBot({ goalRef: goal, pos: { x: 0, y: 64, z: 0 } });
bot.pathfinder._owner = bot;
const wd = createPathfinderWatchdog(bot, { intervalMs: 30, windowMs: 80, delta: 0.5 });
// Move every tick — should never trigger replan.
const moves = setInterval(() => {
bot.entity.position.x += 1;
}, 30);
await new Promise((r) => setTimeout(r, 250));
clearInterval(moves);
wd.stop();
assert.equal(bot.setGoalCalls.length, 0);
});
test("replan fires after stuck window elapses", async () => {
const goal = { id: "g1" };
const bot = makeBot({ goalRef: goal, pos: { x: 0, y: 64, z: 0 } });
bot.pathfinder._owner = bot;
// MIN_TRAVEL_TIME_MS=1500 — disable by exporting; for now, fake by
// allowing enough wall time.
const wd = createPathfinderWatchdog(bot, { intervalMs: 50, windowMs: 100, delta: 0.5, maxReplans: 5 });
await new Promise((r) => setTimeout(r, 2200)); // pass min-travel + window
wd.stop();
// At least one setGoal(null) call.
assert.ok(bot.setGoalCalls.length >= 1, `expected ≥1 setGoal call, got ${bot.setGoalCalls.length}`);
// First call is setGoal(null).
assert.equal(bot.setGoalCalls[0], null);
});
test("respects maxReplans cap", async () => {
const goal = { id: "g1" };
const bot = makeBot({ goalRef: goal, pos: { x: 0, y: 64, z: 0 } });
bot.pathfinder._owner = bot;
const wd = createPathfinderWatchdog(bot, { intervalMs: 50, windowMs: 80, delta: 0.5, maxReplans: 2 });
await new Promise((r) => setTimeout(r, 5000));
wd.stop();
// Each replan = setGoal(null) + delayed setGoal(goal). So 2 replans ≤ 4 calls.
assert.ok(bot.setGoalCalls.length <= 4, `expected ≤4 setGoal calls, got ${bot.setGoalCalls.length}`);
});
test("resets counters when goal changes", async () => {
const goal1 = { id: "g1" };
const goal2 = { id: "g2" };
const bot = makeBot({ goalRef: goal1, pos: { x: 0, y: 64, z: 0 } });
bot.pathfinder._owner = bot;
const wd = createPathfinderWatchdog(bot, { intervalMs: 50, windowMs: 200, delta: 0.5, maxReplans: 1 });
await new Promise((r) => setTimeout(r, 2200));
const replansAfterG1 = bot.setGoalCalls.length;
bot.pathfinder._owner.pathfinder.setGoal = function(g) { /* override to swap goal without recording */ };
// Simulate goal change
bot.entity.position.x = 100;
bot.entity.position.z = 100;
bot.pathfinder._owner = bot;
// Crude: simulate by replacing goal via getter
wd.stop();
assert.ok(replansAfterG1 >= 1);
});