원클릭으로
per-building-infrastructure
Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
How to create reference documentation for complex coordinate systems and building constraints
Prevents subsystems from modifying blocks within placed building volumes using 3D bounding box clipping
Correctly place directional blocks (doors, levers, torches, signs, banners, stairs) in Minecraft via RCON
Ensures all build areas are chunk-loaded before placing blocks via /fill commands
NuGet packaging patterns for the Aspire.Hosting.Minecraft package
Validate side effects after build/deploy operations with graceful degradation
| name | per-building-infrastructure |
| description | Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village |
| domain | minecraft-world-building |
| confidence | medium |
| source | earned |
Each building in the Aspire village can have associated infrastructure: a canal along its back, a beacon on its right side, a path at its entrance. These per-building features must coordinate with the village layout (neighborhoods, spacing) and avoid colliding with each other.
Each building gets a canal segment running along its back (northern edge). The segment runs from the building's western edge to the trunk canal on the west side of town.
int canalZ = buildingZ - 2; // 2 blocks north of building
int canalStartX = buildingX; // building's western edge
int canalEndX = trunkX; // trunk canal X position
All per-building infrastructure is positioned relative to the building's origin (x, z) and StructureSize:
A single N-S trunk canal on the west side of town collects all E-W branch canals. The trunk runs from the northernmost building row to the lake at the southern edge.
Per-building infrastructure must use the BuildingProtectionService to clip fills around buildings. Even if Y ranges don't currently overlap, this is a safety net for future changes.
Infrastructure systems must run AFTER buildings are placed so protection zones are registered: