Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

box2robot-skillsbox2 机器人技能

Agent Skill

box2robot-skills 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,246

周安装

138

GitHub Stars

1

下载量

1,137
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:box2robot-skills(box2 机器人技能)
来源仓库:https://github.com/boxjod/box2robot-skills
安装命令:
openclaw skills install box2robot-skills
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install box2robot-skills

简介

通过云 API 控制 Box2Robot 机械臂 — 移动伺服系统、记录轨迹、校准、摄像头、语音并协调 AI 训练/推理。

SKILL.md

name
box2robot
description
Control Box2Robot robotic arms via cloud API — move servos, record trajectories, calibrate, camera, voice, and orchestrate AI training/inference.
version
0.3.0
homepage
https://robot.box2ai.com
emoji
\F916
metadata
openclaw
requires
env
[B2R_TOKEN, B2R_SERVER, B2R_DEVICE]
bins
[python3]
anyBins
[python3, python]
primaryEnv
B2R_TOKEN
install
package
aiohttp
bins
[]

Box2Robot — Robotic Arm Control Skill

Control ESP32-based robotic arms through a cloud server API. Move servos, record trajectories, calibrate, capture images, voice interaction, and orchestrate AI training/inference — all from a single CLI.

Official skill published by the Box2Robot team (https://robot.box2ai.com).

Safety & Supervision

This skill controls physical robotic hardware and camera/microphone peripherals. - Human supervision required: Do NOT run autonomously without operator oversight. Servo torque and motion commands cause physical movement that could injure people or damage objects. - Destructive operations (device.factory_reset, device.wifi_clear, calibrate.center_offset) require explicit user confirmation before execution. - Privacy-sensitive operations (camera.snapshot, camera.voice_start, camera.record_audio_start) access camera and microphone — only invoke with user consent. - No OS shell access: The exec command routes named Actions through the HTTP API (e.g., exec servo.move). The shell command is an interactive REPL that dispatches CLI subcommands — neither executes arbitrary OS commands. All operations are HTTP requests to B2R_SERVER. - Token sensitivity: ~/.b2r_token stores a JWT that grants device control. Treat it like an SSH key. Delete it when no longer needed.

Credential Flow

login → POST /api/auth/login → JWT token
  → saved to ~/.b2r_token (mode 0600, owner-only)
  → all subsequent commands use this token automatically
  → override with B2R_TOKEN env var
  → delete ~/.b2r_token to revoke

All network calls go exclusively to B2R_SERVER (default: https://robot.box2ai.com). No other endpoints are contacted.

Setup

# Install dependency
pip install aiohttp

# Login (one-time, token cached to ~/.b2r_token)
python b2r.py login <username> <password>

# Or set environment variables
export B2R_SERVER="https://robot.box2ai.com"
export B2R_TOKEN="<jwt_token>"
export B2R_DEVICE="B2R-XXXXXXXXXXXX"

CLI Quick Reference

Device & Status

b2r.py devices                     # List devices (* = online)
b2r.py status                      # Servo positions, load, temperature

Servo Control

b2r.py torque on                   # Lock servos
b2r.py torque off                  # Release (allows manual dragging)
b2r.py home                        # Safe return to home position
b2r.py move <servo_id> <pos> [spd] # Move a single servo
# Position: 0-4095 (center 2048), Speed: 0-4000 (default 1000)

Recording & Playback

b2r.py record start                # Start recording
b2r.py record stop [name]          # Stop and save
b2r.py play                        # List all trajectories
b2r.py play <traj_id>              # Play a trajectory

Camera & Data

b2r.py snapshot                    # Camera snapshot
b2r.py frame [cam_id] [output.jpg] # Download latest camera frame (JPEG)
b2r.py calibrate [servo_id]        # Auto-calibrate (0 = all)
b2r.py download <traj_id> [dir]    # Download trajectory images (HTTP GET only)

Action System (79 Actions)

Invoke via b2r.py exec <action_name>. Parameters in JSON or key=value format.

device (Device Management)

ActionDescription
device.listList devices
device.statusDevice status (control mode + servos)
device.bindBind device (requires bind_code)
device.unbindUnbind device
device.renameRename device
device.factory_reset[DESTRUCTIVE] Factory reset — requires user confirmation

servo (Servo Control)

ActionParametersDescription
servo.statusdevice_idRead position/load/temperature
servo.movedevice_id, servo_id, position, [speed]Move single servo
servo.move_batchdevice_id, commands:[{id,position,speed}]Batch move
servo.torquedevice_id, enable:boolToggle torque
servo.go_homedevice_idReturn to home position
servo.set_iddevice_id, old_id, new_idBurn servo ID

recording (Recording & Playback)

ActionParametersDescription
record.startdevice_id, [mode], [camera_id]Start recording (single/dual/phone)
record.stopdevice_id, [name]Stop recording
trajectory.listdevice_idList trajectories
trajectory.playdevice_id, trajectory_idPlay trajectory
trajectory.stopdevice_id, trajectory_idStop playback
trajectory.deletedevice_id, trajectory_idDelete trajectory

pairing (Leader-Follower)

ActionParametersDescription
pairing.createleader_id, follower_ids, [use_espnow]Create pairing
pairing.disconnectleader_idDisconnect
pairing.connectleader_idReconnect
pairing.deleteleader_idDelete pairing
espnow.discoverScan nearby devices

calibration

ActionParametersDescription
calibrate.autodevice_id, [servo_id=0]Auto-calibrate (0 = all)
calibrate.manualdevice_id, servos:[{id,min,max,mid}]Manual calibration
calibrate.center_offsetdevice_idWrite EEPROM center offset

camera (Camera & Voice)

Privacy note: Snapshot and voice commands access camera/microphone hardware. Only invoke with user consent.
ActionParametersDescription
camera.snapshotdevice_id[PRIVACY] Take photo
camera.stream_modedevice_id, modeStream mode (idle/preview/inference)
camera.voice_startdevice_id[PRIVACY] Enable microphone
camera.voice_stopdevice_idDisable microphone
camera.ttsdevice_id, promptText-to-speech

training (Training & Inference)

ActionParametersDescription
training.submitname, dataset_ids, [model_type]Submit training job
training.list[page]Job list
training.deployjob_id, arm_device_id, gpu_device_idDeploy inference
training.stop_inferencejob_idStop inference

store (Skill Store)

ActionParametersDescription
store.list[search], [category]Browse store
store.executetask_id, device_idExecute skill

config (Configuration)

ActionParametersDescription
config.getdevice_idView config
config.setdevice_id, params:{key:val}Update config
config.speeddevice_id, speed(100-4000)Set speed
config.volumedevice_id, volume(0-255)Volume

Natural Language

Via b2r.py say "text":

InputMaps to
"go home" / "回零位"servo.go_home
"release torque" / "释放力矩"servo.torque(False)
"start recording" / "开始录制"record.start
"take a photo" / "拍照"camera.snapshot
"auto calibrate" / "自动校准"calibrate.auto
"move servo 1 to 2048"servo.move(1, 2048)

Preflight Checks

Agents must verify before executing:

StepCheckOn Failure
1Device online"Device offline — check power"
2Device type = arm"Not a robotic arm"
3Control mode = idlerelease_control first
4Calibration existscalibrate.auto first
5Servo count matchesTrajectory vs device axis count

Orchestration Examples

"Teach you to pour water, record 5 demos"

1. torque off
2. camera.stream_mode(cam_id, "preview")
3. Loop 5x:
   record.start(mode="single", camera_id)
   [user demonstrates]
   record.stop(name="pour_water_{n}")
4. training.submit(name="pour_water", dataset_ids)

Visual Inference Loop

1. training.deploy(job_id, arm_id, gpu_id, cam_id)
2. GPU auto-loop: image → inference → command → arm
3. training.stop_inference(job_id)

HTTP API Direct Access

# Login
curl -X POST https://robot.box2ai.com/api/auth/login \
  -H "Content-Type: application/json" \
  -d '{"username":"xxx","password":"xxx"}'

# Move servo
curl -X POST https://robot.box2ai.com/api/device/B2R-xxx/command \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"id":1,"position":2048,"speed":1000}'

Environment Variables

VariableDescriptionDefault
B2R_SERVERServer URLhttps://robot.box2ai.com
B2R_TOKENJWT token (overrides ~/.b2r_token)
B2R_DEVICEDefault device ID

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.74%
按下载量换算918

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills