Robonix deployment for two AgileX Piper arms and their factory CAN grippers.
Robot deployments
Complete robot deployments, including the packages and platform metadata they assemble.
Filters and catalog summary
9robot deployments
71indexed items
Kind
Tags
robot
robot
Robonix deployment for the AgileX Ranger Mini v3 robot.
robot
robonix.robot.beingbeyond.d1
v0.1.0
BeingBeyond D1 desktop robot deployment — dexterous-hand object pick/place skill.
robotWarning · 1 issue
Minimal Robonix deployment for the Deep Robotics Lite3.
Deployment source warning
skill find_object: Repository 'https://github.com/syswonder/skill-find-object-rbnx' is not indexed by catalog.yaml; add the package to the Catalog or use a repository-local dependency.
robot
LinkerHand O6 standalone dexterous-hand deployment — finger dance and static gesture skill.
robot
Robonix deployment for an autonomous Minecraft player.
robot
robonix.robot.unitree.go2
v0.1.0
Safe Robonix deployment for Unitree Go2 with mapping, semantic navigation and read-only UI.
robotWarning · 6 issues
robonix.robot.wheeltec.r550
v0.1.0
Wheeltec R550 mini_tank — 2D SLAM mapping deploy (N10P lidar + rtabmap).
Deployment source warning
primitive r550_chassis: Resolved path 'https:/github.com/syswonder/primitive-wheeltec-r550-chassis-rbnx/tree/main/r550_chassis' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.primitive n10p_lslidar: Resolved path 'https:/github.com/syswonder/primitive-wheeltec-r550-chassis-rbnx/tree/main/n10p_lslidar' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.primitive astra_s_camera: Resolved path 'https:/github.com/syswonder/primitive-wheeltec-r550-chassis-rbnx/tree/main/astra_s_camera' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.service mapping: Resolved path 'https:/github.com/syswonder/service-map-rbnx' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.service nav2: Resolved path 'https:/github.com/syswonder/service-navigation-rbnx' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.skill explore: Resolved path 'https:/github.com/syswonder/skill-explore-rbnx' does not exist in https://github.com/syswonder/robot-wheeltec-r550@main; the robot repository root is the path root.
Catalog API
API Reference
Static JSON API hosted by GitHub Pages. Use GET; no API key is required.
| Method | Path | Parameters | Response |
|---|---|---|---|
GET | /api/v1/packages.json | none | catalog object with api_version, generated_at, and packages[] |
GET | /api/v1/search.json | none | plain package array for client-side filtering |
GET | /api/v1/package/<package-name>.json | package-name: exact package.name, URL-encoded | one package object; missing packages return GitHub Pages 404 |
const base = 'https://syswonder.github.io/robonix-package-catalog/api/v1';
const catalog = await fetch(`${base}/packages`).then(r => r.json());
const detail = await fetch(`${base}/package/${encodeURIComponent('robonix.service.mapping')}`).then(r => r.json());