← All skills
Tencent SkillHub · Communication & Collaboration

Vector-Robot

Control Anki Vector robot via wire-pod. Speak through Vector, see through its camera, move head/lift/wheels, change eye colors, trigger animations. Use when user mentions Vector robot, wants to speak through a robot, control a physical robot, or interact with wire-pod.

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

Control Anki Vector robot via wire-pod. Speak through Vector, see through its camera, move head/lift/wheels, change eye colors, trigger animations. Use when user mentions Vector robot, wants to speak through a robot, control a physical robot, or interact with wire-pod.

⬇ 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
references/api.md, scripts/proxy-server.js, scripts/vector-say.sh, scripts/vector-see.sh, scripts/install-launchagent.sh, SKILL.md

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

Vector Robot Control

Control an Anki Vector robot running wire-pod.

Prerequisites

Anki Vector robot with escape pod firmware wire-pod running (https://github.com/kercre123/wire-pod) OpenClaw proxy server for voice input (optional)

Quick Reference

All API calls require &serial=SERIAL parameter. Default: 00501a68. SERIAL="00501a68" WIREPOD="http://127.0.0.1:8080"

Speech Output

# Make Vector speak (URL encode the text) curl -s -X POST "$WIREPOD/api-sdk/assume_behavior_control?priority=high&serial=$SERIAL" curl -s -X POST "$WIREPOD/api-sdk/say_text?text=Hello%20world&serial=$SERIAL" curl -s -X POST "$WIREPOD/api-sdk/release_behavior_control?serial=$SERIAL" Or use the helper script: scripts/vector-say.sh "Hello world"

Camera

# Capture frame from MJPEG stream timeout 2 curl -s "$WIREPOD/cam-stream?serial=$SERIAL" > /tmp/stream.mjpeg # Extract JPEG with Python (see scripts/vector-see.sh)

Movement

⚠️ SAFETY: Cliff sensors are DISABLED during behavior control. Be careful with wheel movements! # Head: speed -2 to 2 curl -s -X POST "$WIREPOD/api-sdk/move_head?speed=2&serial=$SERIAL" # up curl -s -X POST "$WIREPOD/api-sdk/move_head?speed=-2&serial=$SERIAL" # down curl -s -X POST "$WIREPOD/api-sdk/move_head?speed=0&serial=$SERIAL" # stop # Lift: speed -2 to 2 curl -s -X POST "$WIREPOD/api-sdk/move_lift?speed=2&serial=$SERIAL" # up curl -s -X POST "$WIREPOD/api-sdk/move_lift?speed=-2&serial=$SERIAL" # down # Wheels: lw/rw -200 to 200 (USE WITH CAUTION) curl -s -X POST "$WIREPOD/api-sdk/move_wheels?lw=100&rw=100&serial=$SERIAL" # forward curl -s -X POST "$WIREPOD/api-sdk/move_wheels?lw=-50&rw=50&serial=$SERIAL" # turn left curl -s -X POST "$WIREPOD/api-sdk/move_wheels?lw=0&rw=0&serial=$SERIAL" # stop

Settings

# Volume: 0-5 curl -s -X POST "$WIREPOD/api-sdk/volume?volume=5&serial=$SERIAL" # Eye color: 0-6 curl -s -X POST "$WIREPOD/api-sdk/eye_color?color=4&serial=$SERIAL" # Battery status curl -s "$WIREPOD/api-sdk/get_battery?serial=$SERIAL"

Actions/Intents

curl -s -X POST "$WIREPOD/api-sdk/cloud_intent?intent=intent_imperative_dance&serial=$SERIAL" Available intents: intent_imperative_dance, intent_system_sleep, intent_system_charger, intent_imperative_fetchcube, explore_start

Voice Input (OpenClaw Integration)

To receive voice commands from Vector, run the proxy server: node scripts/proxy-server.js Configure wire-pod Knowledge Graph (http://127.0.0.1:8080 → Server Settings): Provider: Custom API Key: openclaw Endpoint: http://localhost:11435/v1 Model: openclaw The proxy writes incoming questions to request.json. Respond by writing to response.json: {"timestamp": 1234567890000, "answer": "Your response here"}

LaunchAgent (Auto-start on macOS)

Install to ~/Library/LaunchAgents/com.openclaw.vector-proxy.plist for auto-start. See scripts/install-launchagent.sh.

API Reference

See references/api.md for complete endpoint documentation.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • references/api.md Docs
  • scripts/install-launchagent.sh Scripts
  • scripts/proxy-server.js Scripts
  • scripts/vector-say.sh Scripts
  • scripts/vector-see.sh Scripts