# Send Snapmaker U1 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "snapmaker",
    "name": "Snapmaker U1",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/LucaKaufmann/snapmaker",
    "canonicalUrl": "https://clawhub.ai/LucaKaufmann/snapmaker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/snapmaker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=snapmaker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/snapmaker.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "snapmaker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T09:53:44.822Z",
      "expiresAt": "2026-05-08T09:53:44.822Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=snapmaker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=snapmaker",
        "contentDisposition": "attachment; filename=\"snapmaker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "snapmaker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/snapmaker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/snapmaker",
    "downloadUrl": "https://openagent3.xyz/downloads/snapmaker",
    "agentUrl": "https://openagent3.xyz/skills/snapmaker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/snapmaker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/snapmaker/agent.md"
  }
}
```
## Documentation

### Snapmaker Printer Control

Control Snapmaker U1 printers via the Moonraker API.

### Configuration

Create a config file at ~/clawd/config/snapmaker.json:

{
  "ip": "192.168.x.x",
  "port": 80
}

Or use environment variables:

export SNAPMAKER_IP=192.168.x.x
export SNAPMAKER_PORT=80  # optional, defaults to 80

Config search order:

SNAPMAKER_IP environment variable (highest priority)
~/clawd/config/snapmaker.json
~/.config/clawdbot/snapmaker.json

### Check Status

scripts/snapmaker.py status

### Filament Info

scripts/snapmaker.py filament

Shows RFID tag data for each slot: material type, color (hex), temp ranges, and sensor status.

### Monitor Print (Live)

scripts/snapmaker.py monitor

### Print Control

scripts/snapmaker.py pause
scripts/snapmaker.py resume  
scripts/snapmaker.py cancel

### Temperature

scripts/snapmaker.py temps

### API Reference

The U1 uses Moonraker REST API on port 80:

EndpointDescription/server/infoServer status/printer/infoPrinter info/printer/objects/query?heater_bed&extruder&print_statsStatus/printer/print/pausePause print/printer/print/resumeResume print/printer/print/cancelCancel print

### Status Response Fields

print_stats.state: standby, printing, paused, complete, error
print_stats.filename: Current file
print_stats.print_duration: Seconds elapsed
virtual_sdcard.progress: 0.0 to 1.0
heater_bed.temperature / heater_bed.target: Bed temps
extruder.temperature / extruder.target: Nozzle temps

### Filament & Sensor Data

Query filament RFID and sensors:

/printer/objects/query?filament_detect&filament_motion_sensor%20e0_filament&filament_motion_sensor%20e1_filament&filament_motion_sensor%20e2_filament&filament_motion_sensor%20e3_filament

### filament_detect.info[]

Array of 4 slots with RFID tag data (or defaults if no tag):

FieldDescriptionVENDOR"Snapmaker" or "NONE" if no RFIDMANUFACTURERe.g. "Polymaker"MAIN_TYPEMaterial: "PLA", "PETG", "ABS", etc.SUB_TYPEVariant: "SnapSpeed", "generic", etc.RGB_1Color as decimal int (convert: #${(rgb>>16&0xFF).toString(16)}...)ARGB_COLORColor with alpha (decimal)WEIGHTSpool weight in gramsHOTEND_MIN_TEMP / HOTEND_MAX_TEMPNozzle temp rangeBED_TEMPRecommended bed tempOFFICIALtrue if official Snapmaker filament

### filament_motion_sensor e{0-3}_filament

FieldDescriptionfilament_detectedBoolean - filament present in slotenabledBoolean - sensor active

Note: Slots can have filament_detected: true but VENDOR: NONE — this means third-party filament without RFID tag.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LucaKaufmann
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T09:53:44.822Z
- Expires at: 2026-05-08T09:53:44.822Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/snapmaker)
- [Send to Agent page](https://openagent3.xyz/skills/snapmaker/agent)
- [JSON manifest](https://openagent3.xyz/skills/snapmaker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/snapmaker/agent.md)
- [Download page](https://openagent3.xyz/downloads/snapmaker)