Embedded wireless protocol implementation (LoRa, Zigbee, Thread, Matter)
Implements embedded wireless protocols like LoRa, Zigbee, Thread, and Matter for IoT devices.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdThis 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
};
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.