@agenticros/core
v0.5.0
Published
AgenticROS core — platform-agnostic ROS2 transport, types, and config (the dep every AgenticROS skill imports).
Maintainers
Readme
@agenticros/core
Platform-agnostic ROS2 transport, types, and config schema. This package is the single dependency every AgenticROS adapter and skill imports.
It contains:
- The
RosTransportinterface every transport implementation satisfies. - Four implementations: Zenoh (binary CDR), Rosbridge (WebSocket JSON), WebRTC (Mode C, cloud/remote), and Local DDS via
rclnodejs. - A Zod config schema (
AgenticROSConfig) shared across all adapters. - Topic-namespace utilities, capability registry, and a small long-term memory layer (
mem0or local file backend).
You don't normally use it directly — you use one of the adapters that depends on it:
agenticros— OpenClaw plugin@agenticros/claude-code— MCP server for Claude Code / Codex CLI / Claude Desktop@agenticros/gemini— Gemini CLI adapter
…or you build a skill for one of them.
Building a skill
A skill is an npm package that registers tools the AI agent can call on your robot.
npm install --save @agenticros/coreYour package.json declares an agenticros block:
{
"name": "agenticros-skill-myskill",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/you/agenticros-skill-myskill.git"
},
"agenticros": {
"id": "myskill",
"displayName": "My Skill",
"description": "What this skill does in one sentence.",
"categories": ["navigation"],
"screenshots": ["docs/screenshot.png"],
"capabilities": [
{
"id": "do_thing",
"verb": "do",
"description": "Do the thing.",
"inputs": { "thing": "string" }
}
]
},
"dependencies": {
"@agenticros/core": "^0.5.0"
}
}Your entry exports a registerSkill function:
import type { RegisterSkill } from "@agenticros/core";
export const registerSkill: RegisterSkill = (api, _config, _context) => {
api.registerTool({
name: "do_thing",
label: "Do thing",
description: "Do the thing on the robot.",
parameters: /* @sinclair/typebox schema */,
async execute(_callId, params) {
// ...do the thing
return { ok: true };
},
});
};Submit your skill to the marketplace at skills.agenticros.com/submit — sign in with GitHub, paste your repo URL, and your skill becomes installable with:
npx agenticros skills install myskillSee the skills contract & guide for the full reference.
License
Apache-2.0
