bambu-print تایید شده

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.

62از ۱۰۰
۱.۰k
ستاره
۱
دانلود
۹
بازدید

// نصب مهارت

نصب مهارت

مهارت‌ها کدهای شخص ثالث از مخازن عمومی GitHub هستند. SkillHub الگوهای مخرب شناخته‌شده را اسکن می‌کند اما نمی‌تواند امنیت را تضمین کند. قبل از نصب، کد منبع را بررسی کنید.

نصب سراسری (سطح کاربر):

npx skillhub install openclaw/skills/bambu-print

نصب در پروژه فعلی:

npx skillhub install openclaw/skills/bambu-print --project

skill.install.customTargetHelp

npx skillhub install openclaw/skills/bambu-print --target-dir /path/to/skills

مسیر پیشنهادی: ~/.claude/skills/bambu-print/

بررسی هوش مصنوعی

62
از ۱۰۰
کیفیت دستورالعمل65
دقت توضیحات70
کاربردی بودن52
صحت فنی62
بررسی‌شده توسط review-skill-gateway(z-ai/glm-5.2) در تاریخ ۱۴۰۵/۵/۱۱

محتوای SKILL.md

---
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.

مجوز

مجوز اعلام‌شده: MIT

MIT License

Copyright (c) 2026 openclaw

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

مشاهدهٔ مجوز در مخزن منبعنسخهٔ منتشرشده در آن‌جا مرجع است.