← All skills
Tencent SkillHub Β· Developer Tools

roku

Control Roku devices via CLI. Discovery, remote control, app launching, search, and HTTP bridge mode for real-time control.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Control Roku devices via CLI. Discovery, remote control, app launching, search, and HTTP bridge mode for real-time control.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, roku-client.py, roku-daemon.py, roku-fast.py, roku-listener.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • roku-client.py Scripts
  • roku-daemon.py Scripts
  • roku-fast.py Scripts
  • roku-listener.py Scripts