pcm-audio

pcm-audio is a skill for Claude Code, Codex from open-vela/.claude. It costs 48 tokens per session (2,463 once invoked), scanned A, original, Apache-2.0.

A tool for checking the quality of raw PCM audio files, which store uncompressed digital sound samples.

In plain words
What is it for?
Use it to analyze mono or multichannel 16-bit PCM recordings, test particular defects, adjust detection thresholds, and create a visual report.
Why use it?
It helps identify the source of recording or playback problems such as clipping, inserted silence, clicks, noise, and repeating distortion.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to analyze mono or multichannel 16-bit PCM recordings, test particular defects, adjust detection thresholds, and create a visual report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/open-vela/.claude/pcm-audio
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add open-vela/.claude --skill pcm-audio
Clone the repo
git clone --depth 1 https://github.com/open-vela/.claude

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pcm-audio

README.md
[![agentmods](https://agentmods.dev/badge/skills/open-vela/.claude/pcm-audio/github.svg)](https://agentmods.dev/skills/open-vela/.claude/pcm-audio)
Your own site
<a href="https://agentmods.dev/skills/open-vela/.claude/pcm-audio"><img src="https://agentmods.dev/badge/skills/open-vela/.claude/pcm-audio/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pcm-audio

Your own site · 80×15
<a href="https://agentmods.dev/skills/open-vela/.claude/pcm-audio"><img src="https://agentmods.dev/badge/skills/open-vela/.claude/pcm-audio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,463 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.02463
Opus 5 $0.00024 $0.01231
Sonnet 5 $0.00010 $0.00493
Haiku 4.5 $0.00005 $0.00246

Measured 11d ago against content hash 6af2ccc3a43e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

pcm-audio scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/audio_analyzer.py, scripts/generate_test_audio.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/pcm-audio/SKILL.md · 277 lines

How it starts

The opening of the file, as written. The whole thing — 277 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PCM Audio Quality Analysis Skill

概述

分析PCM音频文件的质量问题,包括削波失真、静音插入、爆破音、底噪、周期性失真等,并将问题特征与可能的代码错误对应起来。

适用场景

  • 音频采集/播放出现杂音、噪音、爆音
  • 音频流中出现静音段、断断续续
  • 音频质量下降、失真
  • 需要定位音频处理代码的bug

支持的音频格式

  • PCM格式: RAW PCM、.pcm文件
  • 采样率: 8kHz - 48kHz
  • 位宽: 16-bit (int16)
  • 声道: 单声道/立体声/多声道

🚀 使用方法

命令行调用

```bash

分析单声道16kHz PCM文件

python scripts/audio_analyzer.py input.pcm --sample-rate 16000 --channels 1

分析立体声48kHz文件

python scripts/audio_analyzer.py stereo.pcm --sample-rate 48000 --channels 2

不生成图表(加快速度)

python scripts/audio_analyzer.py input.pcm --no-visualize ```

Python API调用

```python import sys sys.path.append('scripts') from audio_analyzer import AudioQualityAnalyzer

创建分析器(注意:根据实际文件调整参数)

analyzer = AudioQualityAnalyzer( pcm_file='input.pcm', sample_rate=16000, channels=1 # 1=单声道, 2=立体声 )

完整分析

results = analyzer.analyze_all()

单项检测

clipping = analyzer.detect_clipping() silence = analyzer.detect_silence_insertion() clicks = analyzer.detect_clicks()

自定义阈值

analyzer.detect_clipping(threshold=0.95) # 更严格 analyzer.detect_clicks(threshold=3000) # 更敏感

生成可视化

analyzer.visualize('output.png') ```

参数说明

参数 说明 默认值 示例
pcm_file PCM文件路径 必填 input.pcm
--sample-rate 采样率(Hz) 16000 48000
--channels 声道数 2 1, 8
--sample-width 样本宽度(字节) 2 2
--output 输出图表文件 audio_analysis.png result.png
--no-visualize 不生成图表 False -

🔍 核心检测能力

1. 削波失真检测

调用: `analyzer.detect_clipping(threshold=0.98)`

返回值: `{'clipped_pct': float, 'clipped_samples': int, 'max_consecutive': int, 'is_severe': bool}`

问题映射:

  • 削波率 > 1% → 音量增益过大、整数溢出、格式转换错误

2. 静音插入检测

调用: `analyzer.detect_silence_insertion(window_size=1600)`

返回值: `[{'start_time_s': float, 'end_time_s': float, 'duration_ms': float, 'zero_pct': float}]`

问题映射:

  • 零值 > 50% → Buffer大小错误、未初始化、采样率转换错误

3. 爆破音检测

调用: `analyzer.detect_clicks(threshold=5000)`

Read the full file on GitHub · 277 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 277 lines · 48 tokens per session scan A 6af2ccc3a43e

Subscribe to this mod's changes

pcm-audio is a skill published in the GitHub repository open-vela/.claude (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 48 tokens to every session and 2,463 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens