Deep expertise in ARM Cortex-M architecture and peripherals
Provides deep expertise in ARM Cortex-M architecture, peripherals, and low-level optimization for embedded development.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdThis skill provides deep expertise in ARM Cortex-M architecture, including core configuration, peripheral programming, and low-level optimization for the most widely used embedded processor family.
bsp-development.js - BSP with Cortex-M supportisr-design.js - Interrupt architecture designmemory-architecture-planning.js - Memory layout with MPUreal-time-architecture-design.js - Real-time Cortex-M designbootloader-implementation.js - Cortex-M bootloaderThis skill is invoked when tasks require:
| Core | Features |
|---|---|
| Cortex-M0/M0+ | Minimal, low-power |
| Cortex-M3 | Full Thumb-2, MPU optional |
| Cortex-M4 | DSP, optional FPU |
| Cortex-M7 | Cache, dual-issue |
| Cortex-M23 | TrustZone-M, security |
| Cortex-M33 | TrustZone-M, DSP |
| Cortex-M55 | MVE (Helium), ML |
NVIC_SetPriorityGrouping(3); // 4 bits preemption, 0 bits sub
NVIC_SetPriority(USART1_IRQn, NVIC_EncodePriority(3, 2, 0));
NVIC_EnableIRQ(USART1_IRQn);
MPU->RNR = 0; // Region 0
MPU->RBAR = 0x20000000; // Base address
MPU->RASR = MPU_RASR_ENABLE_Msk |
(0x0F << MPU_RASR_SIZE_Pos) | // 64KB
MPU_RASR_C_Msk | MPU_RASR_S_Msk;
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.