From zephyr-skills
Creates and integrates out-of-tree Zephyr modules using module.yml, Kconfig, CMakeLists.txt, and West manifests. For developing reusable libraries, drivers, or external components in Zephyr RTOS.
npx claudepluginhub beriberikix/zephyr-agent-skills --plugin zephyr-moduleThis skill uses the workspace's default tool permissions.
Extend the Zephyr RTOS with reusable, out-of-tree modules that integrate seamlessly with the build system.
Manages Zephyr RTOS build systems: West workspaces, manifests, Kconfig configuration, Sysbuild multi-image builds, CMake integration. For workspace setup, builds, and troubleshooting.
Build a device driver or protocol handler — I2C sensors, BLE services, MQTT clients, SPI peripherals with interrupt-driven I/O and clean HAL abstraction. Use when asked to "write a driver", "I2C device", "BLE service", "MQTT client", or "sensor integration".
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
Extend the Zephyr RTOS with reusable, out-of-tree modules that integrate seamlessly with the build system.
Create the directory structure and metadata required for auto-discovery.
zephyr/module.yml, zephyr/Kconfig, zephyr/CMakeLists.txt.Adding your module to a workspace for distribution and versioning.
west.yml, west update, west build -t list_modules.Wrapping external C/C++ libraries as Zephyr modules.
zephyr_library(), zephyr_include_directories().build:
cmake: .
kconfig: zephyr/Kconfig
west update fetches module source from manifest without conflicts.west build -t list_modules shows the module as discovered.build.cmake and build.kconfig fields in module.yml.module_definition.md: Structure and module.yml specification.west_integration.md: Manifest configuration and discovery tools.module_manifest_check.py: Module manifest consistency checker.module_yml_template.yml: Minimal zephyr/module.yml template.