From zephyr-skills
Covers Zephyr RTOS kernel services: threads and scheduling, logging for diagnostics, interactive shell for hardware inspection. Useful for multi-threaded apps, observability, CLI commands.
npx claudepluginhub beriberikix/zephyr-agent-skills --plugin zephyr-moduleThis skill uses the workspace's default tool permissions.
Master the essential services that bring your Zephyr application to life.
Guides implementation of Zephyr RTOS kernel services: Zbus pub/sub for inter-thread communication, SMF for state machines, work queues for background tasks, and Settings for persistence. For modular event-driven embedded apps.
Provides patterns for embedded software development including real-time systems, memory management, hardware abstraction, interrupt handling, and debugging techniques for resource-constrained environments.
Develops firmware for microcontrollers like STM32 and ESP32, implements FreeRTOS RTOS applications, configures peripherals, writes interrupt handlers and DMA transfers, optimizes power consumption in real-time systems.
Share bugs, ideas, or general feedback.
Master the essential services that bring your Zephyr application to life.
Create and manage multi-threaded application flows.
K_THREAD_DEFINE, k_sleep, k_yield, Priorities.Implement layered logging for better observability and troubleshooting.
LOG_MODULE_REGISTER, LOG_INF, LOG_ERR, Dynamic Filtering.Build powerful command-line interfaces for hardware and software inspection.
SHELL_CMD_REGISTER, SHELL_STATIC_SUBCMD_SET_CREATE.#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(my_app, CONFIG_APP_LOG_LEVEL);
void my_fn(void) {
LOG_INF("Hello from Zephyr!");
}
K_THREAD_DEFINE(worker_tid, 1024, worker_fn, NULL, NULL, NULL, 5, 0, 0);
help output and executes without faults.threads.md: Configuration and creation of kernel threads.logging.md: Log levels, modules, and backends.shell.md: Interactive command registration and subcommands.log_summary.py: Runtime log summarizer for quick diagnostics.shell_command_template.c: Shell command registration template.