用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/modbender/skill-library-mcp --skill 3d-print-automation-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | 3D Print Automation Skill |
| description | Automate 3D printing with Flashforge Adventurer 5M printers ("Ralph Wiggum"). |
Automate 3D printing with Flashforge Adventurer 5M printers ("Ralph Wiggum").
Complete workflow for automated 3D printing. Originally inspired by Bambu Studio AI patterns.
# Install dependencies
pip install flashforge-python-api requests
# Or use virtual environment
source ~/.openclaw/workspace/.venv/bin/activate
# Check status
python3 ralph_wiggum.py --status
# List files
python3 ralph_wiggum.py --list
# Start print (file must be on printer)
python3 ralph_wiggum.py --start "filename.gcode"
# Slice STL
python3 ralph_wiggum.py --slice model.stl
# Full automation (slice + print)
python3 ralph_wiggum.py --slice-print model.stl
# Camera snapshot
python3 ralph_wiggum.py --camera
The Flashforge Adventurer 5M has a camera connected to the main controller.
Endpoints to try:
curl http://10.0.0.41:8080/camera
curl http://10.0.0.41:8080/
| Material | Nozzle | Bed | Notes |
|---|---|---|---|
| PLA | 200-210°C | 60°C | Most common |
| PETG | 230-250°C | 80°C | Stronger |
| ABS | 240-260°C | 100-110°C | Needs enclosure |
| Adventurer 5M | |
|---|---|
| Build Volume | 220×220×220mm |
| Max Nozzle Temp | 110°C |
| Max Bed Temp | 110°C |
| Connection | WiFi/Ethernet/USB |
| Command | Description |
|---|---|
~M105 | Get temperatures |
~M119 | Get status |
~M27 | Get print progress |
~M23 filename | Select file |
~M24 | Start print |
~M25 | Pause print |
~M26 | Stop print |
~G28 | Home axes |
ralph_wiggum.py - Main controller scriptWORKFLOW.md - Detailed workflow documentationSKILL.md - This file