library/specializations/embedded-systems/skills/wireless-protocols/SKILL.md
Embedded wireless protocol implementation (LoRa, Zigbee, Thread, Matter)
npx skillsauth add a5c-ai/babysitter wireless-protocolsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides wireless protocol implementation expertise for embedded IoT devices, covering LoRa/LoRaWAN, Zigbee, Thread, and Matter protocols.
device-driver-development.js - Wireless driver implementationlow-power-design.js - Low-power wireless optimizationfunctional-safety-certification.js - Wireless certificationThis skill is invoked when tasks require:
| Protocol | Range | Data Rate | Power | Mesh | |----------|-------|-----------|-------|------| | LoRaWAN | 15km | 0.3-50 kbps | Low | No | | Zigbee | 100m | 250 kbps | Low | Yes | | Thread | 100m | 250 kbps | Low | Yes | | Matter | 100m | Varies | Low | Via Thread |
static uint8_t DevEui[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
static uint8_t AppEui[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
static uint8_t AppKey[] = { 0x00, ..., 0x00 }; // 16 bytes
MibRequestConfirm_t mibReq;
mibReq.Type = MIB_DEV_EUI;
mibReq.Param.DevEui = DevEui;
LoRaMacMibSetRequestConfirm(&mibReq);
otOperationalDataset dataset;
otDatasetCreateNewNetwork(instance, &dataset);
dataset.mChannel = 15;
dataset.mPanId = 0x1234;
otDatasetSetActive(instance, &dataset);
const EmberAfCluster clusters[] = {
OnOff::Id,
LevelControl::Id,
Descriptor::Id,
Identify::Id
};
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.