You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -435,6 +435,7 @@ Agents should not treat the build planner as a black box. The most important rul
435
435
- The planner now returns structured `issues` identifying floating cuboids or block targets, their `gapBelow`, and a `suggestedY` to ground them correctly.
436
436
- The planner only adds support pillars for real unsupported columns and caps auto-support at 24 columns.
437
437
- If more than 80% of the lowest build columns are already within 2 blocks of solid ground and `autoFix=true`, the planner can auto-lower the whole build instead of spamming pillars.
438
+
- Automatic Y correction is intentionally conservative and capped to small terrain fixes. It will not bury a build deep into the ground just because one mixed-terrain column reports a large gap.
438
439
-`resolvedOrigin` in the result tells you the exact world origin that was actually used.
439
440
-`autoFixAvailable` tells you whether the planner believes a safe grounding fix exists.
Copy file name to clipboardExpand all lines: run-mcp-sidecar-node.js
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1020,9 +1020,11 @@ function buildBuildPlanGuide() {
1020
1020
"- It returns structured `issues` identifying which cuboids or block targets are floating, their `gapBelow`, and a `suggestedY` for grounding.",
1021
1021
"- Only columns with real air/fluid gaps below them are considered for auto-support pillars.",
1022
1022
"- If more than 80% of the lowest-layer columns are within 2 blocks of valid ground and `autoFix=true`, the planner can auto-lower the whole build instead of spamming pillars.",
1023
+
"- Automatic Y correction is conservative. It only applies small grounding shifts and will not freefall a build deep into mixed terrain just because one column reports a large gap.",
1023
1024
"- Auto-support pillars use `minecraft:stone_bricks` and are capped at 24 columns.",
1024
1025
"- If there is no valid solid ground below some lowest columns at all, the planner rejects the build and tells the agent to lower the build or add a foundation.",
1025
1026
"- Repeated retries with the same floating `y=0` plan are the wrong response. Fix the base Y, add a foundation phase, or use preview issues plus `suggestedY` to revise the plan.",
1027
+
"- In practice, agents should treat `autoFix` as a small-terrain correction helper, not as permission to bury the structure until all issues disappear.",
0 commit comments