ros2-pkg-create is an interactive CLI tool for quickly generating ROS 2 packages from basic pub/sub nodes to complex lifecycle components. It is meant to replace the official ros2 pkg create
command.
Important
This repository is open-sourced and maintained by the Institute for Automotive Engineering (ika) at RWTH Aachen University.
ROS is the backbone of many research topics within our Vehicle Intelligence & Automated Driving domain.
If you would like to learn more about how we can support your advanced driver assistance and automated driving efforts, feel free to reach out to us!
📧 opensource@ika.rwth-aachen.de
pip install ros2-pkg-create
ros2-pkg-create --template ros2_cpp_pkg .
pip install ros2-pkg-create
# (optional) bash auto-completion
activate-global-python-argcomplete
eval "$(register-python-argcomplete ros2-pkg-create)"
Warning
Outside of a virtual environment, pip may default to a user-site installation of executables to ~/.local/bin
, which may not be present in your shell's PATH
. If running ros2-pkg-create
errors with ros2-pkg-create: command not found
, add the directory to your path. (More information)
echo "export PATH=\$HOME/.local/bin:\$PATH" >> ~/.bashrc
source ~/.bashrc
ros2-pkg-create provides multiple templates, each covering a different questionnaire for generating all the components you need. See below for the list of supported features and questionnarie options. Note that all options can also be passed directly to the command, bypassing the interactive questionnaire (see Usage).
Supported Features: publisher, subscriber, parameter loading, launch file, service server, action server, timer callback, component, lifecycle node, docker-ros
Questionnaire
- Package name
- Description
- Maintainer | Maintainer email
- Author | Author email
- License
- Node name
- Class name of node
- Make it a component?
- Make it a lifecycle node?
- Add a launch file? | Type of launch file
- Add parameter loading?
- Add a subscriber?
- Add a publisher?
- Add a service server?
- Add an action server?
- Add a timer callback?
- Add the docker-ros CI integration?
Supported Features: publisher, subscriber, parameter loading, launch file, service server, action server, timer callback, docker-ros
Questionnaire
- Package name
- Description
- Maintainer | Maintainer email
- Author | Author email
- License
- Node name
- Class name of node
- Add a launch file? | Type of launch file
- Add parameter loading?
- Add a subscriber?
- Add a publisher?
- Add a service server?
- Add an action server?
- Add a timer callback?
- Add the docker-ros CI integration?
Supported Features: message, service, action
Questionnaire
- Package name
- Description
- Maintainer | Maintainer email
- Author | Author email
- License
- Interfaces types
- Message name
- Service name
- Action name
- Add the docker-ros CI integration?
usage: ros2-pkg-create [-h] [--defaults] [--use-local-templates] --template {ros2_interfaces_pkg,ros2_python_pkg,ros2_cpp_pkg} [--package-name PACKAGE_NAME] [--description DESCRIPTION]
[--maintainer MAINTAINER] [--maintainer-email MAINTAINER_EMAIL] [--author AUTHOR] [--author-email AUTHOR_EMAIL]
[--license {Apache-2.0,BSL-1.0,BSD-2.0,BSD-2-Clause,BSD-3-Clause,GPL-3.0-only,LGPL-2.1-only,LGPL-3.0-only,MIT,MIT-0}] [--node-name NODE_NAME]
[--node-class-name NODE_CLASS_NAME] [--is-component] [--no-is-component] [--is-lifecycle] [--no-is-lifecycle] [--has-launch-file] [--no-has-launch-file]
[--launch-file-type {xml,py,yml}] [--has-params] [--no-has-params] [--has-subscriber] [--no-has-subscriber] [--has-publisher] [--no-has-publisher]
[--has-service-server] [--no-has-service-server] [--has-action-server] [--no-has-action-server] [--has-timer] [--no-has-timer] [--auto-shutdown]
[--no-auto-shutdown] [--interface-types {Message,Service,Action}] [--msg-name MSG_NAME] [--srv-name SRV_NAME] [--action-name ACTION_NAME] [--has-docker-ros]
[--version]
destination
Creates a ROS 2 package from templates
positional arguments:
destination Destination directory
options:
-h, --help show this help message and exit
--defaults Use defaults for all options
--use-local-templates
Use locally installed templates instead of remotely pulling most recent ones
--template {ros2_interfaces_pkg,ros2_python_pkg,ros2_cpp_pkg}
Template
--package-name PACKAGE_NAME
Package name
--description DESCRIPTION
Description
--maintainer MAINTAINER
Maintainer
--maintainer-email MAINTAINER_EMAIL
Maintainer email
--author AUTHOR Author
--author-email AUTHOR_EMAIL
Author email
--license {Apache-2.0,BSL-1.0,BSD-2.0,BSD-2-Clause,BSD-3-Clause,GPL-3.0-only,LGPL-2.1-only,LGPL-3.0-only,MIT,MIT-0}
License
--node-name NODE_NAME
Node name
--node-class-name NODE_CLASS_NAME
Class name of node
--is-component Make it a component?
--no-is-component
--is-lifecycle Make it a lifecycle node?
--no-is-lifecycle
--has-launch-file Add a launch file?
--no-has-launch-file
--launch-file-type {xml,py,yml}
Type of launch file
--has-params Add parameter loading
--no-has-params
--has-subscriber Add a subscriber?
--no-has-subscriber
--has-publisher Add a publisher?
--no-has-publisher
--has-service-server Add a service server?
--no-has-service-server
--has-action-server Add an action server?
--no-has-action-server
--has-timer Add a timer callback?
--no-has-timer
--auto-shutdown Automatically shutdown the node after launch (useful in CI/CD)?
--no-auto-shutdown
--interface-types {Message,Service,Action}
Interfaces types
--msg-name MSG_NAME Message name
--srv-name SRV_NAME Service name
--action-name ACTION_NAME
Action name
--has-docker-ros Add the docker-ros CI integration?
--version show program's version number and exit
This work is accomplished within the projects 6GEM (FKZ 16KISK036K) and autotech.agil (FKZ 01IS22088A). We acknowledge the financial support for the projects by the Federal Ministry of Education and Research of Germany (BMBF).