8051-mcu-debug
Use when debugging 8051-compatible microcontrollers, 51 MCU firmware, STC download issues, Keil C51 projects, interrupts, timers, UART, or startup failures
Use when implementing, verifying, or debugging CRC, checksum, hash-lite integrity checks, polynomial parameters, endian handling, or protocol frame validation in embedded systems
$ npx -y skills add easyzoom/aix-skills --skill crc-checksum-integration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/crc-checksum-integrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when implementing, verifying, or debugging CRC, checksum, hash-lite integrity checks, polynomial parameters, endian handling, or protocol frame validation in embedded systems
name: crc-checksum-integration description: Use when implementing, verifying, or debugging CRC, checksum, hash-lite integrity checks, polynomial parameters, endian handling, or protocol frame validation in embedded systems
Use this skill to integrate CRCs and checksums by making the exact algorithm parameters explicit. Most CRC bugs come from two sides using the same name for different init, reflection, xorout, byte order, or covered range.
Use this skill when:
Do not use this skill for cryptographic authentication. Use `mbedtls-integration`, `tinycrypt-integration`, or `micro-ecc-integration` when adversarial tampering matters.
Ask for:
1. Write the full CRC tuple. Do not rely on names like CRC-16 unless the parameters are specified.
1. Verify with a golden vector. Test `123456789` or a protocol-provided frame before using live data.
1. Freeze byte coverage. Define start offset, length, skipped fields, padding, escaping, and final byte order.
1. Match streaming behavior. The incremental API must preserve state exactly across chunks and resets.
1. Compare hardware and software. Hardware CRC units often need byte reversal, word packing, or final xor handling.
1. Add negative tests. Flip one bit in payload and metadata to prove the check actually fails.
Before claiming the integrity check works:
User:
Modbus CRC 算出来总和设备不一样。
Agent:
1. Checks CRC-16/Modbus parameters, byte coverage, and low-byte-first output. 1. Runs a known Modbus frame golden vector. 1. Verifies the serial frame excludes the CRC field while computing.
AIX Skills is a public collection of Agent Skills, templates, and references for building repeatable AI workflows.
Use when debugging 8051-compatible microcontrollers, 51 MCU firmware, STC download issues, Keil C51 projects, interrupts, timers, UART, or startup failures
Use when integrating, evaluating, configuring, or debugging Avem embedded C framework modules, event-driven components, drivers, middleware, or application…
Use when integrating or debugging Li-ion charger/fuel gauge ICs (BQ24295, BQ27441, MAX17048) over I2C, covering charge start, watchdog host mode, NTC/JEITA…
Use when integrating, designing, or debugging BLE GATT services, characteristics, descriptors, MTU, notifications, indications, pairing, connection parameters,…
Use when debugging embedded bootloaders, application jumps, vector table offsets, firmware upgrade flow, OTA state, image validation, rollback, or boot…
Use when integrating, porting, configuring, or debugging CAN bus libraries, CANBus-Triple, MCP2515, CAN frames, bit timing, filters, or embedded automotive…