From zephyr-skills
Implements Zephyr RTOS IoT protocols: OpenThread mesh networking, Matter-over-Thread devices, Golioth Cloud SDK, LoRaWAN basics. For smart home, sensor networks, hardware fleets.
npx claudepluginhub beriberikix/zephyr-agent-skills --plugin zephyr-moduleThis skill uses the workspace's default tool permissions.
Implement production-ready IoT communication using industry-standard mesh, wide-area, and cloud protocols.
Configures Zephyr RTOS IP stack for IoT protocols (LwM2M, CoAP, MQTT), trims memory usage (IPv4/IPv6, UDP/TCP), and integrates SDKs via West manifests. For cloud-connected embedded apps.
Provides Rust constraints and patterns for IoT apps: unreliable networks, power efficiency, MQTT pub/sub, security, edge computing, embedded crates, and OTA updates.
Share bugs, ideas, or general feedback.
Implement production-ready IoT communication using industry-standard mesh, wide-area, and cloud protocols.
Build robust, low-power mesh networks using the integrated OpenThread stack.
CONFIG_NET_L2_OPENTHREAD, otInstance, Thread Shell.Create interoperable smart home devices using the Matter standard.
Connect your fleet to the cloud for real-time state sync, telemetry, and OTA.
golioth_system_client, remote logging.Deploy long-range, low-power sensor networks.
CONFIG_LORA, LoRa PHY, Adaptive Data Rate (ADR).# Enable OpenThread with Shell
CONFIG_NET_L2_OPENTHREAD=y
CONFIG_OPENTHREAD_SHELL=y
# Join a network via Shell
ot dataset init new
ot dataset commit active
ot thread start
connectivity-ble skill patterns to handle Matter or Thread commissioning for a seamless user experience.openthread_integration.md: Thread networking and Zephyr APIs.matter_devices.md: Smart home integration with Matter.golioth_sdk.md: Fleet management and real-time state sync.lorawan_basics.md: Long-range sensor networking.dataset_kv_check.py: Provisioning dataset checker.thread_dataset_template.env: Thread dataset template.