← スキル一覧に戻る

urdf-templates
by zeeshan080
AI-Native Robotics Textbook - Physical AI & Humanoid Robotics educational platform
⭐ 1🍴 0📅 2026年1月4日
SKILL.md
name: urdf-templates description: URDF structure templates and validation patterns for robotics content. Use when creating robot descriptions, validating URDF files, or teaching URDF concepts. allowed-tools: Read, Grep
URDF Templates
Instructions
When working with URDF files:
- Use the provided templates as starting points
- Validate against the checklist in validation.md
- Include safety annotations for joint limits
- Add comments explaining each section
Template Selection
| Robot Type | Template | Use Case |
|---|---|---|
| Mobile Robot | mobile-robot.urdf | Wheeled robots, differential drive |
| Humanoid Base | humanoid-base.urdf | Bipedal robots, upper body |
URDF Structure Overview
<robot name="robot_name">
<!-- Links define physical parts -->
<link name="base_link">
<visual>...</visual>
<collision>...</collision>
<inertial>...</inertial>
</link>
<!-- Joints connect links -->
<joint name="joint_name" type="revolute">
<parent link="parent_link"/>
<child link="child_link"/>
<limit lower="-1.57" upper="1.57" effort="100" velocity="1.0"/>
</joint>
</robot>
Safety Requirements
- Always specify joint limits - Never leave limits undefined
- Include inertial properties - Required for physics simulation
- Add collision geometry - Required for safe simulation
- Document mass values - Use realistic values
Reference
See validation.md for validation rules. See templates/ for complete templates.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です