Robonix ecosystem index

Packages

Reusable primitive, service, and skill packages, indexed by capability, source, and maintainer.

Filters and catalog summary
29packages
113indexed items

Kind

Tags

primitive

AgileX Piper 6-DoF arm primitive — declares joint_states / joint_command / end_pose / pos_command / arm_status.

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 6 capabilities
primitive

Piper arm URDF + robot_state_publisher wrapper (TF stand-in until soma ships).

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 0 capabilities
primitive

Hand-eye calibration TF publisher (vendored easy_handeye2 0.5.0).

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 0 capabilities
primitive

ALSA microphone capture and speaker playback primitive for Robonix.

maintainers wheatfox <wheatfox17@icloud.com> 5 capabilities
primitive

Audio primitive that connects Robonix to robonix-client microphone and speaker devices.

maintainers wheatfox <wheatfox17@icloud.com> 6 capabilities
primitive

Orbbec Gemini 330-series RGBD camera driver wrapper — declares RGB + depth + extrinsics contracts.

maintainers Bunnycxk <2501213313@stu.pku.edu.cn> 5 capabilities
primitive

Publishes the Soma-owned URDF as the standard ROS 2 robot TF tree.

maintainers wheatfox <wheatfox17@icloud.com> 1 capabilities
primitive

Minecraft Forge client primitive providing camera, chassis, perception, and Minecraft capabilities.

maintainers ZZJJWarth <jzeng25@stu.pku.edu.cn> 14 capabilities
service

Geometric grasp-pose estimator (gRPC).

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 2 capabilities
service

SLAM mapping service. Algo + sensor inputs config-driven.

maintainers wheatfox <wheatfox17@icloud.com> 10 capabilities
service

Nav2 service wrapper exposing service/navigation/* over gRPC.

maintainers wheatfox <wheatfox17@icloud.com> 4 capabilities
service

Instruction-following navigation service — cloud S2 semantic latents plus edge S1 action generation with adaptive cloud-edge synchronization.

maintainers Hangyu Cao <3087918372@qq.com> 5 capabilities
service

LLM-based object detection — atlas MCP service, drop-in replacement for yolo_world_rbnx.

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 2 capabilities
service

PointCloud2 to LaserScan conversion service.

maintainers Bunnycxk <2501213313@stu.pku.edu.cn> 2 capabilities
service

MoveIt + grasp executor (atlas-routed manipulation service).

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 3 capabilities
service

Roboarm-style Python IK executor service for Piper manipulation.

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 5 capabilities
skill

Frontier-based autonomous exploration skill.

maintainers wheatfox <wheatfox17@icloud.com> 4 capabilities
skill

Frontier-based exploration skill for the Minecraft example.

maintainers ZZJJWarth <jzeng25@stu.pku.edu.cn> 4 capabilities
skill

Pick-up-a-named-object skill — orchestrates perception + manipulation services.

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 3 capabilities
skill

VLA client skill — LLM-callable entry point for vision-language-action inference and JOINT-SPACE execution.

maintainers lhw2002426 <lhw2002426@users.noreply.github.com> 2 capabilities
Catalog API

API Reference

Static JSON API hosted by GitHub Pages. Use GET; no API key is required.

MethodPathParametersResponse
GET/api/v1/packages.jsonnonecatalog object with api_version, generated_at, and packages[]
GET/api/v1/search.jsonnoneplain package array for client-side filtering
GET/api/v1/package/<package-name>.jsonpackage-name: exact package.name, URL-encodedone 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());