library/specializations/embedded-systems/skills/usb-stack/SKILL.md
USB device and host stack implementation expertise
npx skillsauth add a5c-ai/babysitter usb-stackInstall 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 USB device and host stack implementation expertise for embedded systems, covering descriptor generation, device class implementation, and protocol debugging.
device-driver-development.js - USB driver implementationbootloader-implementation.js - USB DFU bootloaderhw-sw-interface-specification.js - USB interface specificationThis skill is invoked when tasks require:
tusb_desc_interface_t cdc_interface = {
.bLength = sizeof(tusb_desc_interface_t),
.bDescriptorType = TUSB_DESC_INTERFACE,
.bInterfaceNumber = 0,
.bAlternateSetting = 0,
.bNumEndpoints = 2,
.bInterfaceClass = TUSB_CLASS_CDC,
.bInterfaceSubClass = CDC_COMM_SUBCLASS_ACM,
.bInterfaceProtocol = CDC_COMM_PROTOCOL_NONE,
.iInterface = 0
};
uint8_t const hid_report_desc[] = {
HID_USAGE_PAGE(HID_USAGE_PAGE_DESKTOP),
HID_USAGE(HID_USAGE_DESKTOP_MOUSE),
HID_COLLECTION(HID_COLLECTION_APPLICATION),
HID_USAGE(HID_USAGE_DESKTOP_POINTER),
HID_COLLECTION(HID_COLLECTION_PHYSICAL),
// ... buttons and axes
HID_COLLECTION_END,
HID_COLLECTION_END
};
usb:
vid: 0x1234
pid: 0x5678
device_class: cdc | hid | msc | dfu | composite
speed: full | high
endpoints:
- ep1_in: bulk, 64
- ep1_out: bulk, 64
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.