What problem does it solve? Starting a ROS 2 project from zero involves repetitive scaffolding: creating the colcon directory layout, writing .gitignore and README files, seeding interface and bringup packages, and wiring in project conventions. This Skill automates that bootstrap so the workspace is ready to build immediately. ## Core Features & Use Cases - Workspace Scaffolding: Creates the standard colcon layout with src/, .gitignore for build/install/log artifacts, and a top-level README with canonical build commands. - Seed Package Creation: Generates an interfaces package (ament_cmake with rosidl_default_generators), a first Clean Architecture package, and a bringup package (ament_python) in dependency order. - Config Propagation: Copies the .claude/ template configuration so slash commands and rules work from the first commit. - Use Case: A robotics engineer starting a new autonomous vehicle project asks for a fresh workspace; the Skill produces a buildable colcon workspace with interfaces, core, and bringup packages following Clean Architecture conventions. ## Quick Start Create a new ROS 2 workspace called acme_ws with the project prefix acme and seed it with interfaces, core, and bringup packages.