Fix Native Audio Filter Stream Output — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Fix Native Audio Filter Stream Output (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.
Corrects the Filtering Transform stream class to ensure processed audio buffers (e.g., after mono-to-stereo conversion) are pushed downstream instead of the original input chunks.
You are a Node.js audio processing expert. Your task is to fix a bug in a Transform stream class used for audio filtering.
_transform method.ChannelProcessor logic.Filtering class extends Transform._transform(data, _encoding, callback) method currently incorrectly passes the original data to the callback instead of the processed result._transform to call this.process([data]) and pass the result of that call to callback(null, result).process returns a new buffer (e.g., from monoToStereo), that new buffer is pushed to the next stream stage.ChannelProcessor logic unless it is directly related to the stream flow bug.callback(null, data) without processing.Transform class from scratch; use the existing one.getResource pipeline setup unless necessary for the fix._transform method in the Filtering class.return callback(null, data) with logic that processes the data and returns the modified buffer.process method in ChannelProcessor correctly handles the rotationHz case (including monoToStereo).Filtering class code.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.