ros2-microros

ros2-microros is a skill for Claude Code, Codex from Leehyunbin0131/claude-ros2-skills. It costs 29 tokens per session (931 once invoked), scanned A, original, Apache-2.0.

Instructions for micro-ROS, which connects small microcontrollers such as STM32 or ESP32 boards to a ROS 2 robot system. The guide covers Ubuntu 24.04, ROS 2 Jazzy, and embedded C clients.

In plain words
What is it for?
Setting up embedded ROS 2 nodes, choosing documentation and build tools, configuring transports, and working with the micro-ROS agent and C client library.
Why use it?
It gives a starting point for linking resource-limited hardware to ROS 2 while highlighting that the material has not been fully verified.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Setting up embedded ROS 2 nodes, choosing documentation and build tools, configuring transports, and working with the micro-ROS agent and C client library.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leehyunbin0131/claude-ros2-skills/ros2-microros
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Leehyunbin0131/claude-ros2-skills --skill ros2-microros
Clone the repo
git clone --depth 1 https://github.com/Leehyunbin0131/claude-ros2-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ros2-microros

README.md
[![agentmods](https://agentmods.dev/badge/skills/leehyunbin0131/claude-ros2-skills/ros2-microros/github.svg)](https://agentmods.dev/skills/leehyunbin0131/claude-ros2-skills/ros2-microros)
Your own site
<a href="https://agentmods.dev/skills/leehyunbin0131/claude-ros2-skills/ros2-microros"><img src="https://agentmods.dev/badge/skills/leehyunbin0131/claude-ros2-skills/ros2-microros/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ros2-microros

Your own site · 80×15
<a href="https://agentmods.dev/skills/leehyunbin0131/claude-ros2-skills/ros2-microros"><img src="https://agentmods.dev/badge/skills/leehyunbin0131/claude-ros2-skills/ros2-microros.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 931 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00931
Opus 5 $0.00015 $0.00465
Sonnet 5 $0.00006 $0.00186
Haiku 4.5 $0.00003 $0.00093

Measured 12d ago against content hash 6e7dcbcd056c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ros2-microros scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ros2-microros/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

micro-ROS Instructions (Ubuntu 24.04 LTS & ROS 2 Jazzy)

Unverified. Every other domain skill in this pack was measured against a baseline agent and deleted when the agent reached the same result without it. This one has no ladder — running it needs an MCU and an agent connection that are not available here — so it survives untested, not because it earned a place. Treat its contents as a starting point to check, not as ground truth.

1. Architecture

micro-ROS connects constrained MCUs (STM32, ESP32, FreeRTOS, Zephyr) to the ROS 2 DDS graph via micro_ros_agent + the rclc client library over Micro XRCE-DDS. Static memory pools (rmw_microxrcedds) give zero steady-state heap allocation when RMW_UXRCE_ALLOW_DYNAMIC_ALLOCATIONS=OFF.

2. Documentation Entry Points

For Entry point
Tutorials, supported boards, transports https://micro.ros.org/
Firmware build system (micro_ros_setup) https://github.com/micro-ROS/micro_ros_setup
rclc executor / node API source https://github.com/ros2/rclc

3. Key Concepts & Patterns

A. Embedded Client Node Setup (rclc in C)

#include <rcl/rcl.h>
#include <rclc/rclc.h>
#include <rclc/executor.h>
#include <std_msgs/msg/int32.h>

int main(void) {
  rcl_allocator_t allocator = rcl_get_default_allocator();
  rclc_support_t support = {0};
  rcl_node_t node = {0};
  rcl_publisher_t pub = {0};

  rclc_support_init(&support, 0, NULL, &allocator);
  rclc_node_init_default(&node, "mcu_node", "", &support);
  rclc_publisher_init_default(&pub, &node, ROSIDL_GET_MSG_TYPE_SUPPORT(std_msgs, msg, Int32), "chatter");

  // Clean up
  rcl_publisher_fini(&pub, &node);
  rcl_node_fini(&node);
  rclc_support_fini(&support);
  return 0;
}

B. Micro-ROS Agent Execution

# Serial Transport (e.g. UART to USB)
ros2 run micro_ros_agent micro_ros_agent serial --dev /dev/ttyUSB0 -b 115200

# UDP Transport
ros2 run micro_ros_agent micro_ros_agent udp4 --port 8888

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 72 lines · 29 tokens per session scan A 6e7dcbcd056c

Subscribe to this mod's changes

ros2-microros is a skill published in the GitHub repository Leehyunbin0131/claude-ros2-skills (19 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 931 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

bulwark-brainstorm

Role-based brainstorming with dual modes: --scoped (sequential Task tool, 5 roles) and --exploratory (Agent Teams peer debate, 4 roles). Use for feasibility assessment and idea validation.

QBall-Inc/the-bulwark · 50 tokens

plan-creation

Create structured implementation plans via a 4-role scrum team (Product Owner, Architect, Eng/Delivery Lead, QA/Critic) with optional Agent Teams peer debate mode.

QBall-Inc/the-bulwark · 38 tokens

anthropic-validator

Validates Claude Code assets (skills, hooks, agents, commands, MCP servers, plugins) against official Anthropic standards. Fetches latest docs dynamically and produces structured validation reports.

QBall-Inc/the-bulwark · 40 tokens

test-audit

Audit test suites for T1-T4 violations using AST analysis, mock detection, and multi-stage synthesis. Invoke when user asks to audit tests, check test quality, find mock violations, review test effectiveness, or inspect test suites for over-mocking. Triggers automatic rewrites when quality gates fail.

QBall-Inc/the-bulwark · 0 tokens

code-review

Comprehensive code review with distinct aspect based sections. Use when reviewing code, checking for security issues, finding type safety problems, auditing code quality, or when user asks to review code, PRs or changes. Three-phase workflow runs static tools, LLM judgment, and writes diagnostic log.

QBall-Inc/the-bulwark · 61 tokens

continuous-feedback

Identifies improvement targets from accumulated session learnings and proposes concrete skill/agent modifications. General-purpose pipeline for any Claude Code project.

QBall-Inc/the-bulwark · 29 tokens