library/specializations/embedded-systems/skills/arm-cortex-m/SKILL.md
Deep expertise in ARM Cortex-M architecture and peripherals
npx skillsauth add a5c-ai/babysitter arm-cortex-mInstall 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 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;
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.