# Send Raspberry Pi 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": "raspberry",
    "name": "Raspberry Pi",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/raspberry",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/raspberry",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/raspberry",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raspberry",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "raspberry",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T21:33:46.585Z",
      "expiresAt": "2026-05-14T21:33:46.585Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raspberry",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raspberry",
        "contentDisposition": "attachment; filename=\"raspberry-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "raspberry"
      },
      "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/raspberry"
    },
    "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/raspberry",
    "downloadUrl": "https://openagent3.xyz/downloads/raspberry",
    "agentUrl": "https://openagent3.xyz/skills/raspberry/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raspberry/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raspberry/agent.md"
  }
}
```
## Documentation

### Power Supply Issues

Lightning bolt icon = undervoltage — random crashes, corruption, weird behavior until fixed
Pi 4/5 needs 3A+ supply — older 2A adapters cause instability
USB peripherals draw from Pi's power budget — use powered hub for multiple devices
Official power supply recommended — cheap adapters often can't sustain required amperage

### Storage Reliability

SD cards fail under heavy writes — databases and logs kill them within months
USB boot with SSD for reliability — SD for bootloader only, root on SSD
Quality SD cards matter — Samsung EVO, SanDisk Extreme; not generic cards
Read-only filesystem for kiosks — prevents corruption on power loss

### GPIO Dangers

3.3V logic only — 5V input permanently damages the Pi, no protection
Check operating voltage of sensors/modules — many Arduino accessories are 5V
Some GPIO used by default — I2C, SPI, UART pins need dtparam to free up
Hardware PWM only on GPIO 18 — software PWM on others is less precise

### Network Setup Traps

WiFi country code required — won't connect without proper regulatory setting
Headless SSH: empty file named ssh in boot partition — not ssh.txt
Static IP via /etc/dhcpcd.conf — editing wrong file does nothing
Don't port forward SSH — use Tailscale, Cloudflare Tunnel, or WireGuard

### Docker on Pi

ARM images only — linux/arm64 or linux/arm/v7, many images unavailable
32-bit OS limits to 3GB RAM — use 64-bit for 4GB+ models
SD card unsuitable for Docker — volume writes accelerate card death
Install via curl -fsSL https://get.docker.com | sh — apt version is outdated

### Headless Setup

Configure hostname, WiFi, user in Raspberry Pi Imager — before first boot
Username pi with default password deprecated — create custom user
First boot takes 2-3 minutes — filesystem resize, don't panic

### Performance Tuning

gpu_mem=16 for headless — frees RAM when no display connected
ZRAM for swap on low-RAM models — better than SD swap
Disable Bluetooth and GUI if unused — saves resources

### Troubleshooting Patterns

Red light only = power issue — no boot attempt, check supply
Green light blinking patterns = specific boot failures — check documentation
No HDMI output — connect before powering, Pi doesn't hot-plug HDMI
Kernel panic on boot = corrupted SD — reflash image
SSH refused — verify SSH enabled, check IP, check firewall
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-07T21:33:46.585Z
- Expires at: 2026-05-14T21:33:46.585Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raspberry)
- [Send to Agent page](https://openagent3.xyz/skills/raspberry/agent)
- [JSON manifest](https://openagent3.xyz/skills/raspberry/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raspberry/agent.md)
- [Download page](https://openagent3.xyz/downloads/raspberry)