Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Control Bambu Lab 3D printers (H2D, X1C, P1S, A1) via CLI. Print management, AMS filament control, temperature, fans, lights, calibration, file management, a...
Control Bambu Lab 3D printers (H2D, X1C, P1S, A1) via CLI. Print management, AMS filament control, temperature, fans, lights, calibration, file management, a...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Full control of Bambu Lab printers via MQTT + FTP. Agent-agnostic, local-only, no cloud.
Printer must be in Developer Mode (Settings โ LAN Only โ Enable Developer Mode) Need: IP address, serial number, LAN access code (from printer touchscreen) CLI: @versatly/bambu installed globally (npm i -g @versatly/bambu)
bambu setup <ip> <serial> <access_code> bambu ping # verify connection Config stored at ~/.bambu/config.json.
Load ONLY what you need for the current task:
bambu status # full status overview bambu status --json # programmatic access bambu temp # just temperatures bambu ams # just AMS/filament info bambu errors # any active errors
# Start a print from SD card bambu print "filename.3mf" # Upload and print in one step bambu job upload-and-print ./my-part.3mf # Control running print bambu pause bambu resume bambu stop # Live monitoring (streams progress) bambu watch
# Temperature bambu heat nozzle:220 bed:60 bambu cooldown # Fans (0-100%) bambu fan part 80 bambu fan aux 50 bambu fan chamber 30 # Lights bambu light on bambu light off # Movement bambu home bambu move x:10 y:20 z:5 bambu gcode "G28"
# Check what's loaded bambu ams # Load specific tray (0-3) bambu load 0 bambu load 2 # Unload current filament bambu unload
# SD card files bambu files bambu upload ./part.3mf bambu delete old-print.3mf # Calibration bambu calibrate bed bambu calibrate vibration bambu calibrate flow bambu calibrate all
bambu job upload-and-print ./part.3mf bambu watch # monitor until done
bambu status --json | jq '.gcode_state' # IDLE = ready, RUNNING = busy, FAILED = needs attention
bambu ams --json
bambu heat nozzle:210 bed:60
bambu heat nozzle:260 bed:100
bambu errors --json # check HMS error codes bambu status # full state overview
bambu cooldown bambu light off
Default: Human-readable, emoji-prefixed, compact. Optimized for LLM context windows. --json: Raw JSON for programmatic parsing. Use with jq for field extraction.
bambu status, bambu temp, bambu ams, bambu errors, bambu version, bambu files are read-only and always safe. bambu print, bambu stop, bambu heat, bambu move, bambu gcode control the printer physically. The nozzle is 200ยฐC+. Use judgment. bambu calibrate moves the printer head. Ensure bed is clear. bambu gcode sends raw G-code. Know what you're sending.
IssueFixConnection timeoutDeveloper Mode enabled? Correct IP? Printer on?Auth failedCheck LAN access code (it changes if you re-enable Developer Mode)FTP errorPort 990, implicit TLS. Printer must be in LAN mode.No AMS dataAMS connected and detected? Check printer touchscreen.MQTT dropsWiFi signal weak? Check bambu status for wifi_signal field.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.