home / skills / zeeshan080 / ai-native-robotics / safety-checklist
This skill helps validate robotics safety by applying a structured safety checklist to code, URDF, and configurations, highlighting gaps before deployment.
npx playbooks add skill zeeshan080/ai-native-robotics --skill safety-checklistReview the files below or copy the command above to add this skill to your agents.
---
name: safety-checklist
description: Robotics safety validation checklist for reviewing robot code and configurations. Use when reviewing URDF files, ROS 2 nodes, or any robotics content for safety issues.
allowed-tools: Read, Grep
---
# Safety Checklist
## Instructions
When reviewing robotics content for safety:
1. Check against the safety checklist
2. Flag any missing safety measures
3. Verify all limits are defined
4. Ensure warnings are present for dangerous operations
## Quick Safety Check
Before publishing any robotics content, verify:
- [ ] All joint limits are defined
- [ ] Emergency stop considerations mentioned
- [ ] Simulation-only content is marked
- [ ] No dangerous default values
- [ ] Proper units are used (SI units)
## Safety Categories
### Hardware Safety
- Joint limits and torque limits
- Collision avoidance
- Emergency stop handling
### Software Safety
- Error handling in nodes
- Watchdog timers
- State validation
### Educational Safety
- Clear warnings for real hardware
- Simulation vs real robot distinctions
- Supervised operation requirements
## Reference
See [checklist.md](checklist.md) for the complete safety checklist.
This skill provides a focused robotics safety validation checklist for reviewing robot code, URDF files, ROS 2 nodes, and configurations. It helps reviewers identify missing safety measures, verify limits, and ensure clear warnings for dangerous operations. The goal is to reduce risks when moving from simulation to real hardware.
The skill inspects robotics artifacts for common safety items: joint and torque limits in URDFs, node-level error handling and watchdogs, and configuration defaults that could be hazardous. It flags missing limits, absent emergency-stop handling, unspecified units, and simulation-only content that lacks real-hardware warnings. Reviewers get actionable findings to correct configuration, code, or documentation before deployment.
Does this checklist replace formal safety certification?
No. This checklist is for early detection of common safety issues and review guidance. It does not substitute formal risk assessments, safety standards compliance, or certification processes.
What if a parameter is intentionally unbounded for research?
Document the rationale clearly, mark the content as research-only or simulation-only, and include explicit operational warnings and required safeguards before any hardware execution.