Install
$ agentstack add skill-beriberikix-zephyr-agent-skills-zephyr-module ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Zephyr Modules
Extend the Zephyr RTOS with reusable, out-of-tree modules that integrate seamlessly with the build system.
Core Workflows
1. Defining a Module
Create the directory structure and metadata required for auto-discovery.
- Reference: [moduledefinition.md](references/moduledefinition.md)
- Key Tools:
zephyr/module.yml,zephyr/Kconfig,zephyr/CMakeLists.txt.
2. West Manifest Integration
Adding your module to a workspace for distribution and versioning.
- Reference: [westintegration.md](references/westintegration.md)
- Key Tools:
west.yml,west update,west build -t list_modules.
3. Library Wrapping (Glue Code)
Wrapping external C/C++ libraries as Zephyr modules.
- Reference: [moduledefinition.md](references/moduledefinition.md#the-glue-pattern)
- Key Tools:
zephyr_library(),zephyr_include_directories().
Quick Start (module.yml)
build:
cmake: .
kconfig: zephyr/Kconfig
Validation Checklist
- [ ]
west updatefetches module source from manifest without conflicts. - [ ]
west build -t list_modulesshows the module as discovered. - [ ] Module Kconfig options appear and can be enabled in build configuration.
- [ ] Module sources are compiled and linked into the target application as expected.
Automation Tools
- [modulemanifestcheck.py](scripts/modulemanifestcheck.py): Validate required
build.cmakeandbuild.kconfigfields inmodule.yml.
Examples & Templates
- [moduleymltemplate.yml](assets/moduleymltemplate.yml): Starter module manifest for out-of-tree integration.
Resources
- [References](references/):
module_definition.md: Structure and module.yml specification.west_integration.md: Manifest configuration and discovery tools.- [Scripts](scripts/):
module_manifest_check.py: Module manifest consistency checker.- [Assets](assets/):
module_yml_template.yml: Minimalzephyr/module.ymltemplate.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: beriberikix
- Source: beriberikix/zephyr-agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.