ros2-launch-system — for Claude Code ros2-launch-system, humanoid-ai-studio, community, for Claude Code, ide skills, ### Launch File with Parameters, ### Parameter File (YAML), Launch, System, Purpose

v1.0.0

关于此技能

适用场景: Ideal for AI agents that need ros 2 launch system skill. 本地化技能摘要: # ROS 2 Launch System Skill Purpose : Generate accurate, educational ROS 2 Python launch files and multi-node configurations following official ROS 2 Humble patterns for the Physical AI textbook. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

功能特性

ROS 2 Launch System Skill
Creating lessons in Chapter 6 (Building Robot Systems)
Writing multi-node deployment exercises
Generating worked examples for system startup
Teaching parameter configuration and node composition

# 核心主题

ayeshakhalid192007-dev ayeshakhalid192007-dev
[1]
[0]
更新于: 3/28/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
75
Canonical Locale
en
Detected Body Locale
en

适用场景: Ideal for AI agents that need ros 2 launch system skill. 本地化技能摘要: # ROS 2 Launch System Skill Purpose : Generate accurate, educational ROS 2 Python launch files and multi-node configurations following official ROS 2 Humble patterns for the Physical AI textbook. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: ros2-launch-system helps agents ros 2 launch system skill. ROS 2 Launch System Skill Purpose : Generate accurate, educational ROS 2 Python launch files and multi-node configurations following official ROS 2

适用 Agent 类型

适用场景: Ideal for AI agents that need ros 2 launch system skill.

赋予的主要能力 · ros2-launch-system

适用任务: Applying ROS 2 Launch System Skill
适用任务: Applying Creating lessons in Chapter 6 (Building Robot Systems)
适用任务: Applying Writing multi-node deployment exercises

! 使用限制与门槛

  • 限制说明: Requires repository-specific context from the skill documentation
  • 限制说明: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

ros2-launch-system 是什么?

适用场景: Ideal for AI agents that need ros 2 launch system skill. 本地化技能摘要: # ROS 2 Launch System Skill Purpose : Generate accurate, educational ROS 2 Python launch files and multi-node configurations following official ROS 2 Humble patterns for the Physical AI textbook. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

如何安装 ros2-launch-system?

运行命令:npx killer-skills add ayeshakhalid192007-dev/humanoid-ai-studio/ros2-launch-system。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

ros2-launch-system 适用于哪些场景?

典型场景包括:适用任务: Applying ROS 2 Launch System Skill、适用任务: Applying Creating lessons in Chapter 6 (Building Robot Systems)、适用任务: Applying Writing multi-node deployment exercises。

ros2-launch-system 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

ros2-launch-system 有哪些限制?

限制说明: Requires repository-specific context from the skill documentation;限制说明: Works best when the underlying tools and dependencies are already configured。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add ayeshakhalid192007-dev/humanoid-ai-studio/ros2-launch-system。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    ros2-launch-system 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ros2-launch-system

安装 ros2-launch-system,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

ROS 2 Launch System Skill

Purpose: Generate accurate, educational ROS 2 Python launch files and multi-node configurations following official ROS 2 Humble patterns for the Physical AI textbook.

When to Use

  • Creating lessons in Chapter 6 (Building Robot Systems)
  • Writing multi-node deployment exercises
  • Generating worked examples for system startup
  • Teaching parameter configuration and node composition
  • Chapter 7 capstone project integration

Live Documentation Access

CRITICAL: Before generating any code, fetch current ROS 2 documentation using Context7 MCP:

Tool: mcp__context7__resolve-library-id
libraryName: "ros2 launch"

Then:
Tool: mcp__context7__get-library-docs
context7CompatibleLibraryID: [resolved ID]
topic: "launch file python"

This ensures launch patterns match current ROS 2 Humble API.

Launch File Patterns

Basic Launch File (Canonical)

python
1# File: launch/robot_system.launch.py 2 3from launch import LaunchDescription 4from launch_ros.actions import Node 5 6def generate_launch_description(): 7 return LaunchDescription([ 8 Node( 9 package='my_robot_pkg', 10 executable='publisher_node', 11 name='sensor_publisher', 12 output='screen', 13 ), 14 Node( 15 package='my_robot_pkg', 16 executable='subscriber_node', 17 name='data_processor', 18 output='screen', 19 ), 20 ])

Launch File with Parameters

python
1from launch import LaunchDescription 2from launch_ros.actions import Node 3 4def generate_launch_description(): 5 return LaunchDescription([ 6 Node( 7 package='my_robot_pkg', 8 executable='configurable_node', 9 name='robot_controller', 10 output='screen', 11 parameters=[{ 12 'robot_name': 'my_robot', 13 'update_rate': 10.0, 14 'max_speed': 1.5, 15 'enabled_sensors': ['lidar', 'camera', 'imu'], 16 }], 17 ), 18 ])

Launch File with Parameter File (YAML)

python
1import os 2from ament_index_python.packages import get_package_share_directory 3from launch import LaunchDescription 4from launch_ros.actions import Node 5 6def generate_launch_description(): 7 config = os.path.join( 8 get_package_share_directory('my_robot_pkg'), 9 'config', 10 'robot_params.yaml' 11 ) 12 13 return LaunchDescription([ 14 Node( 15 package='my_robot_pkg', 16 executable='robot_node', 17 name='robot_controller', 18 output='screen', 19 parameters=[config], 20 ), 21 ])

Parameter File (YAML)

yaml
1# File: config/robot_params.yaml 2robot_controller: 3 ros__parameters: 4 robot_name: "physical_ai_bot" 5 update_rate: 20.0 6 max_linear_speed: 2.0 7 max_angular_speed: 1.57 8 sensors: 9 lidar: 10 enabled: true 11 topic: "/scan" 12 camera: 13 enabled: true 14 topic: "/image_raw"

Launch File with Arguments

python
1from launch import LaunchDescription 2from launch.actions import DeclareLaunchArgument 3from launch.substitutions import LaunchConfiguration 4from launch_ros.actions import Node 5 6def generate_launch_description(): 7 # Declare launch arguments 8 robot_name_arg = DeclareLaunchArgument( 9 'robot_name', 10 default_value='default_robot', 11 description='Name of the robot' 12 ) 13 14 sim_mode_arg = DeclareLaunchArgument( 15 'sim_mode', 16 default_value='true', 17 description='Run in simulation mode' 18 ) 19 20 return LaunchDescription([ 21 robot_name_arg, 22 sim_mode_arg, 23 Node( 24 package='my_robot_pkg', 25 executable='robot_node', 26 name='robot_controller', 27 output='screen', 28 parameters=[{ 29 'robot_name': LaunchConfiguration('robot_name'), 30 'simulation': LaunchConfiguration('sim_mode'), 31 }], 32 ), 33 ])

Package Structure for Launch Files

my_robot_pkg/
├── my_robot_pkg/
│   ├── __init__.py
│   ├── publisher_node.py
│   └── subscriber_node.py
├── launch/
│   ├── robot_system.launch.py
│   └── debug_system.launch.py
├── config/
│   ├── robot_params.yaml
│   └── debug_params.yaml
├── package.xml
├── setup.py
└── setup.cfg

setup.py (Essential Parts for Launch)

python
1from setuptools import setup 2import os 3from glob import glob 4 5package_name = 'my_robot_pkg' 6 7setup( 8 name=package_name, 9 version='0.1.0', 10 packages=[package_name], 11 data_files=[ 12 ('share/ament_index/resource_index/packages', 13 ['resource/' + package_name]), 14 ('share/' + package_name, ['package.xml']), 15 # Include launch files 16 (os.path.join('share', package_name, 'launch'), 17 glob('launch/*.launch.py')), 18 # Include config files 19 (os.path.join('share', package_name, 'config'), 20 glob('config/*.yaml')), 21 ], 22 install_requires=['setuptools'], 23 entry_points={ 24 'console_scripts': [ 25 'publisher_node = my_robot_pkg.publisher_node:main', 26 'subscriber_node = my_robot_pkg.subscriber_node:main', 27 ], 28 }, 29)

Debugging Multi-Node Systems

Using ros2doctor

bash
1# Check system health 2ros2 doctor 3 4# Verbose output 5ros2 doctor --report

Using rqt_graph

bash
1# Visualize node graph 2ros2 run rqt_graph rqt_graph

Logging Levels

python
1# In node code 2self.get_logger().debug('Detailed debug info') 3self.get_logger().info('Normal operation') 4self.get_logger().warn('Warning condition') 5self.get_logger().error('Error occurred') 6self.get_logger().fatal('Fatal error')
bash
1# Set log level at runtime 2ros2 run my_pkg my_node --ros-args --log-level debug

Educational Requirements

Layer 1 (Manual Foundation)

  • Explain launch file structure and purpose
  • Walk through LaunchDescription components
  • Demonstrate parameter passing patterns

Layer 2 (AI Collaboration)

  • Generate launch files from system requirements
  • Debug multi-node communication issues with AI
  • Optimize node configuration (Three Roles INVISIBLE)

Layer 3 (Intelligence Design)

  • System architecture patterns
  • Configuration management strategies
  • Reusable launch file components

Layer 4 (Spec-Driven)

  • Design system from specification
  • Multi-node integration testing
  • Capstone project orchestration

Hardware Tier Compatibility

All launch files MUST work on:

  • Tier 1: Cloud ROS 2 (TheConstruct) with turtlesim
  • Tier 2+: Local ROS 2 Humble with physical robots

Launch commands:

bash
1# Build and source 2cd ~/ros2_ws 3colcon build --packages-select my_robot_pkg 4source install/setup.bash 5 6# Launch 7ros2 launch my_robot_pkg robot_system.launch.py 8 9# Launch with arguments 10ros2 launch my_robot_pkg robot_system.launch.py robot_name:=my_bot sim_mode:=false

Common Mistakes to Prevent

  1. Missing data_files in setup.py: Launch files won't be installed
  2. Wrong path in get_package_share_directory: Package name must match
  3. Forgetting to rebuild: Changes require colcon build
  4. Parameter type mismatches: YAML types must match node expectations

Integration with Other Skills

  • ros2-publisher-subscriber: Nodes to launch
  • ros2-service-pattern: Service nodes in system
  • ros2-custom-interfaces: Interface packages as dependencies
  • lesson-generator: For full lesson structure

Authoritative Source

All patterns verified against:

相关技能

寻找 ros2-launch-system 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具