# Send roku 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "roku",
    "name": "roku",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gumadeiras/roku",
    "canonicalUrl": "https://clawhub.ai/gumadeiras/roku",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/roku",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=roku",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "roku-client.py",
      "roku-daemon.py",
      "roku-fast.py",
      "roku-listener.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "roku",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T15:33:14.720Z",
      "expiresAt": "2026-05-19T15:33:14.720Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=roku",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=roku",
        "contentDisposition": "attachment; filename=\"roku-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "roku"
      },
      "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/roku"
    },
    "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/roku",
    "downloadUrl": "https://openagent3.xyz/downloads/roku",
    "agentUrl": "https://openagent3.xyz/skills/roku/agent",
    "manifestUrl": "https://openagent3.xyz/skills/roku/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/roku/agent.md"
  }
}
```
## Documentation

### Roku CLI

Fast TypeScript CLI for controlling Roku devices via the ECP API.

### Installation

npm install -g roku-ts-cli@latest

### Quick Start

# Discover devices and save an alias
roku discover --save livingroom --index 1

# Use the alias
roku --host livingroom device-info
roku --host livingroom apps

### Commands

CommandDescriptionroku discoverFind Roku devices on networkroku --host <ip> device-infoGet device inforoku --host <ip> appsList installed appsroku --host <ip> command <key>Send remote keyroku --host <ip> literal <text>Type textroku --host <ip> search --title <query>Search contentroku --host <ip> launch <app>Launch approku --host <ip> interactiveInteractive remote mode

### Interactive Mode

roku livingroom                    # interactive control
roku --host livingroom interactive # same thing

Use arrow keys, enter, escape for remote-like control.

### Bridge Service

Run a persistent HTTP bridge as a native OS service:

# Install and start the service
roku bridge install-service --port 19839 --token secret --host livingroom --user
roku bridge start --user

# Service management
roku bridge status --user
roku bridge stop --user
roku bridge uninstall --user

Send commands via HTTP:

# Send key
curl -X POST http://127.0.0.1:19839/key \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer secret" \\
  -d '{"key":"home"}'

# Type text
curl -X POST http://127.0.0.1:19839/text \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer secret" \\
  -d '{"text":"hello"}'

# Launch app
curl -X POST http://127.0.0.1:19839/launch \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer secret" \\
  -d '{"app":"plex"}'

# Health check
curl http://127.0.0.1:19839/health -H "Authorization: Bearer secret"

### Bridge Endpoints

EndpointBodyPOST /key{"key": "home"}POST /text{"text": "hello"}POST /search{"title": "Stargate"}POST /launch{"app": "plex"}GET /health—GET /health?deep=1Deep health check (probes Roku)

### Aliases

# Save device alias
roku discover --save livingroom --index 1
roku alias set office 192.168.1.20

# Save app alias  
roku alias set plex 13535

# List aliases
roku alias list

# Use aliases
roku --host livingroom launch plex

### Remote Keys

home, back, select, up, down, left, right, play, pause, rev, fwd, replay, info, power, volume_up, volume_down, mute

### Notes

Roku must be on the same network as the CLI
Bridge service runs as a native launchd (macOS) or systemd (Linux) service
Use --user flag for user-space service (no sudo required)
Use --token for authentication in bridge mode

### Source

https://github.com/gumadeiras/roku-cli
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: gumadeiras
- Version: 2.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-12T15:33:14.720Z
- Expires at: 2026-05-19T15:33:14.720Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/roku)
- [Send to Agent page](https://openagent3.xyz/skills/roku/agent)
- [JSON manifest](https://openagent3.xyz/skills/roku/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/roku/agent.md)
- [Download page](https://openagent3.xyz/downloads/roku)