home / skills / openclaw / skills / bambu-print

bambu-print skill

/skills/snail3d/clawd/bambu-print

This skill automates discovering, downloading, slicing, and sending 3D models to Bambu Lab printers via CLI for streamlined prints.

npx playbooks add skill openclaw/skills --skill bambu-print

Review the files below or copy the command above to add this skill to your agents.

Files (5)
SKILL.md
3.0 KB
---
name: bambu-print
description: Search online 3D model repositories (Printables, MakerWorld, etc.), download models, slice with BambuStudio CLI, and send prints to Bambu Lab printers (A1 Mini, P1, etc.). Use when you want to find, prepare, and print 3D models without manual GUI interaction.
---

# Bambu Print Skill

Automate 3D model discovery, slicing, and printing with Bambu Lab printers via CLI.

## Quick Start

### Search and Print a Model

```bash
# Search for a model and print it
bambu-print search "dragon" --site printables --color purple --printer-model a1-mini

# Or download and slice directly
bambu-print download https://printables.com/model/12345 --output /path/to/output.stl
bambu-print slice output.stl --printer a1-mini --color purple --export result.3mf
bambu-print send result.3mf --printer-name "A1 Mini"
```

## Workflow

### 1. Search Online Repositories

Search Printables, MakerWorld, MyMiniFactory, or Thingiverse for models:

- Query terms: model name, type, style
- Filter by: popularity, complexity, print time
- Return: top results with download links

### 2. Download Models

Download STL/3MF files from search results to local disk.

### 3. Slice with BambuStudio

Use `bambu-studio` CLI to slice STL → 3MF:

```bash
bambu-studio \
  --orient \
  --arrange 1 \
  --load-settings "printer.json;process.json" \
  --load-filaments "filament.json" \
  --slice 0 \
  --export-3mf output.3mf \
  input.stl
```

Key options:
- `--orient`: Auto-orient for printing
- `--arrange`: Auto-arrange on bed
- `--load-settings`: Custom printer/process profiles
- `--load-filaments`: Filament settings (color, material)
- `--export-3mf`: Output sliced file ready to print

### 4. Send to Printer

Send the sliced 3MF file to your Bambu Lab printer via Bambu Studio.

## Configuration

Store printer and filament profiles in `~/.bambu-config/`:

- `printers/a1-mini.json` - Machine settings for A1 Mini
- `process/standard.json` - Print profiles (speed, quality)
- `filaments/purple-pla.json` - Filament settings (color, material)

### Example Filament Config

```json
{
  "filament_type": "PLA",
  "filament_color": "#7B2CBF",
  "bed_temp": 60,
  "nozzle_temp": 210
}
```

## Bundled Resources

- **scripts/search_models.py** - Search multiple model repositories
- **scripts/slice_model.py** - Wrapper around bambu-studio CLI
- **references/printer_profiles.md** - Printer-specific settings
- **references/sites.md** - Supported model repositories

## Common Tasks

**Find and print a dragon:**
```bash
bambu-print search "dragon" --site printables --color purple --auto
```

**Slice a downloaded model with custom settings:**
```bash
bambu-print slice model.stl --printer a1-mini --process fast --filament purple-pla
```

**Send to a specific printer:**
```bash
bambu-print send model.3mf --printer-name "My A1 Mini"
```

## Troubleshooting

**BambuStudio not found**: Ensure `bambu-studio` CLI is installed and in PATH.

**Model slicing fails**: Check printer.json and process.json settings are valid.

**Printer not responding**: Verify printer is online and reachable via Bambu Cloud.

Overview

This skill automates finding, downloading, slicing, and sending 3D models to Bambu Lab printers using command-line tools. It integrates searches across major model repositories, wraps BambuStudio CLI slicing, and pushes 3MF jobs to supported Bambu printers. Use it to streamline end-to-end prints without manual GUI steps.

How this skill works

The skill queries multiple online repositories (Printables, MakerWorld, MyMiniFactory, Thingiverse) and returns downloadable model files and metadata. It downloads STL/3MF files locally, invokes the bambu-studio CLI with configured printer, process, and filament profiles to slice into 3MF, and then sends the sliced 3MF to a configured Bambu Lab printer over the network or cloud. Configuration lives in a simple directory of printer/process/filament JSON profiles for repeatable results.

When to use it

  • When you want to search multiple model sites and download results from the command line.
  • When you need automated slicing with BambuStudio CLI using consistent printer and filament profiles.
  • When preparing batch prints or repetitive jobs without GUI interaction.
  • When integrating model fetch and print steps into CI, scripts, or a print farm workflow.
  • When you want to send sliced 3MF files directly to a Bambu Lab printer programmatically.

Best practices

  • Keep printer, process, and filament profiles under ~/.bambu-config for predictable slicing.
  • Test slice settings on a small calibration print before running large or critical jobs.
  • Use the --orient and --arrange options to minimize manual bed placement adjustments.
  • Verify bambu-studio CLI is in PATH and executable on the machine running the skill.
  • Confirm printer is online and reachable via Bambu Cloud or local network before sending jobs.

Example use cases

  • Search for a decorative model (e.g., 'dragon'), download, slice with purple PLA profile, and print on an A1 Mini.
  • Batch-download a folder of community models, auto-arrange, slice with a fast profile, and queue them to a P1 printer.
  • Integrate model search and slice steps into an automated demo pipeline or maker event.
  • Replace manual GUI slicing for repeatable classroom or production prints using stored printer/process profiles.

FAQ

What repositories are supported?

Supported sites include Printables, MakerWorld, MyMiniFactory, and Thingiverse; the search script aggregates results and provides download links.

What do I need configured before using the skill?

Install bambu-studio CLI and put it in PATH, create printer/process/filament JSON profiles under ~/.bambu-config, and ensure the target printer is online.