embedded-buffer-queue-libs — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited embedded-buffer-queue-libs (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill for embedded ring buffers and lightweight queues. The core decision is ownership and concurrency: single producer/consumer, ISR-to-task, task-to-task, DMA-to-task, or multi-producer use.
Use this skill when:
Do not use this skill for RTOS-native queues unless the issue is about wrapping a custom buffer around them.
Ask for:
Specify exactly who writes, who reads, and whether there can be multiple producers or consumers.
Do not leave overwrite/drop/block behavior implicit.
Many ring buffers hold N-1 items to distinguish full from empty.
Use interrupt masking, atomics, mutexes, or single-producer/single-consumer rules as appropriate.
Test writes and reads across the end of the buffer.
Track high-water mark, overflow count, drop count, or queue full events.
Before claiming buffer/queue works:
User:
UART 中断收数据用 ring buffer,偶尔丢字节。Agent:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.