{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vector-robot",
    "name": "Vector-Robot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/bogorman/vector-robot",
    "canonicalUrl": "https://clawhub.ai/bogorman/vector-robot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vector-robot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vector-robot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/api.md",
      "scripts/proxy-server.js",
      "scripts/vector-say.sh",
      "scripts/vector-see.sh",
      "scripts/install-launchagent.sh",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "vector-robot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:22:06.235Z",
      "expiresAt": "2026-05-08T17:22:06.235Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vector-robot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vector-robot",
        "contentDisposition": "attachment; filename=\"vector-robot-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vector-robot"
      },
      "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/vector-robot"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vector-robot",
    "agentPageUrl": "https://openagent3.xyz/skills/vector-robot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vector-robot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vector-robot/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Vector Robot Control",
        "body": "Control an Anki Vector robot running wire-pod."
      },
      {
        "title": "Prerequisites",
        "body": "Anki Vector robot with escape pod firmware\nwire-pod running (https://github.com/kercre123/wire-pod)\nOpenClaw proxy server for voice input (optional)"
      },
      {
        "title": "Quick Reference",
        "body": "All API calls require &serial=SERIAL parameter. Default: 00501a68.\n\nSERIAL=\"00501a68\"\nWIREPOD=\"http://127.0.0.1:8080\""
      },
      {
        "title": "Speech Output",
        "body": "# Make Vector speak (URL encode the text)\ncurl -s -X POST \"$WIREPOD/api-sdk/assume_behavior_control?priority=high&serial=$SERIAL\"\ncurl -s -X POST \"$WIREPOD/api-sdk/say_text?text=Hello%20world&serial=$SERIAL\"\ncurl -s -X POST \"$WIREPOD/api-sdk/release_behavior_control?serial=$SERIAL\"\n\nOr use the helper script: scripts/vector-say.sh \"Hello world\""
      },
      {
        "title": "Camera",
        "body": "# Capture frame from MJPEG stream\ntimeout 2 curl -s \"$WIREPOD/cam-stream?serial=$SERIAL\" > /tmp/stream.mjpeg\n# Extract JPEG with Python (see scripts/vector-see.sh)"
      },
      {
        "title": "Movement",
        "body": "⚠️ SAFETY: Cliff sensors are DISABLED during behavior control. Be careful with wheel movements!\n\n# Head: speed -2 to 2\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=2&serial=$SERIAL\"  # up\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=-2&serial=$SERIAL\" # down\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=0&serial=$SERIAL\"  # stop\n\n# Lift: speed -2 to 2  \ncurl -s -X POST \"$WIREPOD/api-sdk/move_lift?speed=2&serial=$SERIAL\"  # up\ncurl -s -X POST \"$WIREPOD/api-sdk/move_lift?speed=-2&serial=$SERIAL\" # down\n\n# Wheels: lw/rw -200 to 200 (USE WITH CAUTION)\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=100&rw=100&serial=$SERIAL\"  # forward\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=-50&rw=50&serial=$SERIAL\"   # turn left\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=0&rw=0&serial=$SERIAL\"      # stop"
      },
      {
        "title": "Settings",
        "body": "# Volume: 0-5\ncurl -s -X POST \"$WIREPOD/api-sdk/volume?volume=5&serial=$SERIAL\"\n\n# Eye color: 0-6\ncurl -s -X POST \"$WIREPOD/api-sdk/eye_color?color=4&serial=$SERIAL\"\n\n# Battery status\ncurl -s \"$WIREPOD/api-sdk/get_battery?serial=$SERIAL\""
      },
      {
        "title": "Actions/Intents",
        "body": "curl -s -X POST \"$WIREPOD/api-sdk/cloud_intent?intent=intent_imperative_dance&serial=$SERIAL\"\n\nAvailable intents: intent_imperative_dance, intent_system_sleep, intent_system_charger, intent_imperative_fetchcube, explore_start"
      },
      {
        "title": "Voice Input (OpenClaw Integration)",
        "body": "To receive voice commands from Vector, run the proxy server:\n\nnode scripts/proxy-server.js\n\nConfigure wire-pod Knowledge Graph (http://127.0.0.1:8080 → Server Settings):\n\nProvider: Custom\nAPI Key: openclaw\nEndpoint: http://localhost:11435/v1\nModel: openclaw\n\nThe proxy writes incoming questions to request.json. Respond by writing to response.json:\n\n{\"timestamp\": 1234567890000, \"answer\": \"Your response here\"}"
      },
      {
        "title": "LaunchAgent (Auto-start on macOS)",
        "body": "Install to ~/Library/LaunchAgents/com.openclaw.vector-proxy.plist for auto-start. See scripts/install-launchagent.sh."
      },
      {
        "title": "API Reference",
        "body": "See references/api.md for complete endpoint documentation."
      }
    ],
    "body": "Vector Robot Control\n\nControl an Anki Vector robot running wire-pod.\n\nPrerequisites\nAnki Vector robot with escape pod firmware\nwire-pod running (https://github.com/kercre123/wire-pod)\nOpenClaw proxy server for voice input (optional)\nQuick Reference\n\nAll API calls require &serial=SERIAL parameter. Default: 00501a68.\n\nSERIAL=\"00501a68\"\nWIREPOD=\"http://127.0.0.1:8080\"\n\nSpeech Output\n# Make Vector speak (URL encode the text)\ncurl -s -X POST \"$WIREPOD/api-sdk/assume_behavior_control?priority=high&serial=$SERIAL\"\ncurl -s -X POST \"$WIREPOD/api-sdk/say_text?text=Hello%20world&serial=$SERIAL\"\ncurl -s -X POST \"$WIREPOD/api-sdk/release_behavior_control?serial=$SERIAL\"\n\n\nOr use the helper script: scripts/vector-say.sh \"Hello world\"\n\nCamera\n# Capture frame from MJPEG stream\ntimeout 2 curl -s \"$WIREPOD/cam-stream?serial=$SERIAL\" > /tmp/stream.mjpeg\n# Extract JPEG with Python (see scripts/vector-see.sh)\n\nMovement\n\n⚠️ SAFETY: Cliff sensors are DISABLED during behavior control. Be careful with wheel movements!\n\n# Head: speed -2 to 2\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=2&serial=$SERIAL\"  # up\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=-2&serial=$SERIAL\" # down\ncurl -s -X POST \"$WIREPOD/api-sdk/move_head?speed=0&serial=$SERIAL\"  # stop\n\n# Lift: speed -2 to 2  \ncurl -s -X POST \"$WIREPOD/api-sdk/move_lift?speed=2&serial=$SERIAL\"  # up\ncurl -s -X POST \"$WIREPOD/api-sdk/move_lift?speed=-2&serial=$SERIAL\" # down\n\n# Wheels: lw/rw -200 to 200 (USE WITH CAUTION)\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=100&rw=100&serial=$SERIAL\"  # forward\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=-50&rw=50&serial=$SERIAL\"   # turn left\ncurl -s -X POST \"$WIREPOD/api-sdk/move_wheels?lw=0&rw=0&serial=$SERIAL\"      # stop\n\nSettings\n# Volume: 0-5\ncurl -s -X POST \"$WIREPOD/api-sdk/volume?volume=5&serial=$SERIAL\"\n\n# Eye color: 0-6\ncurl -s -X POST \"$WIREPOD/api-sdk/eye_color?color=4&serial=$SERIAL\"\n\n# Battery status\ncurl -s \"$WIREPOD/api-sdk/get_battery?serial=$SERIAL\"\n\nActions/Intents\ncurl -s -X POST \"$WIREPOD/api-sdk/cloud_intent?intent=intent_imperative_dance&serial=$SERIAL\"\n\n\nAvailable intents: intent_imperative_dance, intent_system_sleep, intent_system_charger, intent_imperative_fetchcube, explore_start\n\nVoice Input (OpenClaw Integration)\n\nTo receive voice commands from Vector, run the proxy server:\n\nnode scripts/proxy-server.js\n\n\nConfigure wire-pod Knowledge Graph (http://127.0.0.1:8080 → Server Settings):\n\nProvider: Custom\nAPI Key: openclaw\nEndpoint: http://localhost:11435/v1\nModel: openclaw\n\nThe proxy writes incoming questions to request.json. Respond by writing to response.json:\n\n{\"timestamp\": 1234567890000, \"answer\": \"Your response here\"}\n\nLaunchAgent (Auto-start on macOS)\n\nInstall to ~/Library/LaunchAgents/com.openclaw.vector-proxy.plist for auto-start. See scripts/install-launchagent.sh.\n\nAPI Reference\n\nSee references/api.md for complete endpoint documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bogorman/vector-robot",
    "publisherUrl": "https://clawhub.ai/bogorman/vector-robot",
    "owner": "bogorman",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vector-robot",
    "downloadUrl": "https://openagent3.xyz/downloads/vector-robot",
    "agentUrl": "https://openagent3.xyz/skills/vector-robot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vector-robot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vector-robot/agent.md"
  }
}