AgentStack
SKILL verified MIT Self-run

Crc Checksum Integration

skill-easyzoom-aix-skills-crc-checksum-integration · by easyzoom

Use when implementing, verifying, or debugging CRC, checksum, hash-lite integrity checks, polynomial parameters, endian handling, or protocol frame validation in embedded systems

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-easyzoom-aix-skills-crc-checksum-integration

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Crc Checksum Integration? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

CRC Checksum Integration

Overview

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.

When To Use

Use this skill when:

  • The user needs CRC-8, CRC-16, CRC-32, additive checksum, Fletcher, Adler, or protocol frame validation.
  • The issue involves mismatched CRC values, boot image validation, Modbus, CAN, UART packets, storage records, or OTA packages.
  • The target uses hardware CRC units, DMA, endian-sensitive protocols, or streaming updates.

Do not use this skill for cryptographic authentication. Use mbedtls-integration, tinycrypt-integration, or micro-ecc-integration when adversarial tampering matters.

First Questions

Ask for:

  • Algorithm name plus polynomial, width, init, refin, refout, xorout, and check value if known.
  • Exact byte range covered, header/trailer inclusion, padding, and endian order.
  • Whether the implementation is table-driven, bitwise, hardware accelerated, or streaming.
  • Known-good sample input and expected output from the peer device or specification.
  • Current mismatch and where it is observed.

Integration Checklist

  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.

Common Failures

  • Wrong reflection settings for the named CRC variant.
  • Including the CRC field itself in the covered range.
  • Feeding words into a hardware CRC in host endian instead of wire order.
  • Using a checksum where collision resistance or authenticity is required.
  • Resetting incremental CRC state between chunks.
  • Comparing printed hex values with opposite byte order.

Verification

Before claiming the integrity check works:

  • State the full CRC/checksum parameters and covered byte range.
  • Confirm golden vector output.
  • Confirm peer frame or stored-image sample matches.
  • Confirm corrupted data is rejected.
  • Confirm hardware and software paths match if both exist.

Example

User:

Modbus CRC 算出来总和设备不一样。

Agent:

  1. Checks CRC-16/Modbus parameters, byte coverage, and low-byte-first output.
  2. Runs a known Modbus frame golden vector.
  3. Verifies the serial frame excludes the CRC field while computing.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.