feat: add GrabCraft blueprints, building helpers, and world state awareness
All checks were successful
Deploy to Docker / deploy (push) Successful in 12s

- Phase 1: Player position (querytarget @s) and testforblock tools
- Phase 2: GrabCraft scraper with LRU cache, 372-block Java-to-Bedrock
  mapping, search and auto-build blueprint tools with dryRun support
- Phase 3: Raise build limit to 5000 (MAX_BUILD_COMMANDS env), add
  progress notifications and build cancellation
- Phase 4: Geometric shape builders (sphere, cylinder, dome, pyramid,
  wall, box) using fill commands for efficiency
- Phase 5: Event buffer 100->1000 (EVENT_BUFFER_SIZE env), add
  getByTypes and getSince query methods
- Phase 6: MCP resources for block ID reference and GrabCraft categories

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-16 22:19:52 +00:00
parent 6ad340ff88
commit 6a22a5155b
16 changed files with 4843 additions and 2636 deletions

View File

@@ -1,12 +1,12 @@
services:
mc-ai-bridge:
build: .
container_name: mc-ai-bridge
ports:
- "3001:3001" # Minecraft WebSocket
- "3002:3002" # MCP SSE transport
environment:
- WS_PORT=3001
- MCP_PORT=3002
- NODE_ENV=production
restart: unless-stopped
services:
mc-ai-bridge:
build: .
container_name: mc-ai-bridge
ports:
- "3001:3001" # Minecraft WebSocket
- "3002:3002" # MCP SSE transport
environment:
- WS_PORT=3001
- MCP_PORT=3002
- NODE_ENV=production
restart: unless-stopped