Syntic

Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.

SpecializedFree Safe

Robotics Engineer

Security Scan Summary

Status: Safe

Source: Syntic Skills registry

Automated security scan completed with no high-risk patterns detected. Manual review is still required.

About This Skill

Use when developing robotics systems with ROS2, sensor fusion, motion planning, SLAM, and real-time control loops

Downloadable SKILL.md

Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.

SKILL.md
---
name: Robotics Engineer
description: Use when developing robotics systems with ROS2, sensor fusion, motion planning, SLAM, and real-time control loops
category: Specialized
version: 1.0.0
tools: []
---

# Robotics Software Development

Build autonomous systems using ROS2, implementing perception pipelines, motion planning, state estimation, and real-time control. Work across robotics stack from low-level sensor drivers through middleware to high-level behavior planning. Treat robotics as hard real-time where missed deadlines cause collisions, not performance degradation, designing systems with deterministic timing and graceful degradation when sensors fail.

## System Architecture

1. Define system architecture using ROS2 with clear node decomposition: separate nodes for sensor drivers, perception, state estimation, planning, control, communicating over typed topics with QoS profiles matched to latency/reliability requirements.
2. Implement sensor drivers as ROS2 nodes publishing standardized message types: sensor_msgs/LaserScan for LiDAR, sensor_msgs/Image for cameras, sensor_msgs/Imu for IMU data, sensor_msgs/PointCloud2 for point clouds, with timestamp synchronization.
3. Build perception pipeline processing raw sensor data: point cloud filtering and segmentation for obstacle detection, image-based object detection using inference-optimized models (TensorRT, ONNX Runtime), sensor fusion using Kalman filters.
4. Implement SLAM algorithms appropriate to environment: Cartographer for 2D LiDAR-based mapping, ORB-SLAM3 for visual-inertial odometry, RTAB-Map for RGB-D SLAM, publishing localization on tf2 transform tree.
5. Design state estimation node using Extended Kalman Filter or Unscented Kalman Filter fusing odometry, IMU, SLAM localization into smooth continuous pose published on robot's tf2 frame hierarchy.
6. Build motion planning stack using Nav2 for mobile robots or MoveIt2 for manipulators, configuring costmap layers (static map, obstacle detection, inflation), global planner (NavFn, Theta*), local planner (DWB, MPPI).
7. Implement behavior tree for high-level task sequencing using BehaviorTree.CPP, defining action nodes for navigation, perception queries, manipulation, recovery behaviors.
8. Design real-time control loop running at hardware rate (100Hz-1000Hz) in dedicated real-time thread with memory-locked allocations, pre-allocated buffers, no dynamic allocation within cycle.
9. Implement safety monitoring as independent watchdog checking sensor heartbeats, velocity limits, workspace boundaries, emergency stops, commanding safe halt on violation.
10. Build simulation environment using Gazebo or Isaac Sim with accurate physics, sensor noise simulation, scenario scripting enabling perception/planning/control testing before hardware deployment.

## Technical Standards

- All sensor data timestamped at hardware acquisition time, not processing time; timestamp errors cause sensor fusion divergence.
- tf2 transform tree forms consistent tree structure with no loops; every frame has exactly one parent, transforms published at interpolation rate.
- Real-time control loops must not allocate memory, acquire blocking locks, or perform unbounded I/O operations.
- QoS profiles configured per topic: RELIABLE for configuration and commands, BEST_EFFORT for high-frequency sensor data, history depth sized preventing loss.
- Safety monitoring runs on independent execution path from planning/control; planner crashes must not disable safety system.
- All parameters declared in ROS2 parameter files with documented ranges and units; undocumented magic numbers prohibited.
- Simulation tests run in CI with deterministic physics stepping producing reproducible results.

Bundle Download

Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.

Install Targets

Syntic App

  1. 1. Create a dedicated folder for this skill in your local skills library.
  2. 2. Place SKILL.md into that folder.
  3. 3. Restart Syntic and invoke this skill on matching tasks.

Syntic Code (CLI)

  1. 1. Save SKILL.md in your local Syntic Code skills directory.
  2. 2. Keep related files in the same skill folder.
  3. 3. Run in a safe environment and validate outputs.

Source

https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/specialized-domains/robotics-engineer.md

Open Source Link
Specialized

Related Skills