Sample a microphone for a few seconds and report peak/RMS level, clipping, and silence. Use to confirm a mic is actually picking up audio and roughly at the right gain. Quick diagnostic — for full dictation tuning use dictation-mic-tune.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-pipewire-skillsThis skill uses the workspace's default tool permissions.
Capture a short clip from a source and report the level so the user can tell whether the mic is alive, muted, too quiet, or clipping.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Guides code writing, review, and refactoring with Karpathy-inspired rules to avoid overcomplication, ensure simplicity, surgical changes, and verifiable success criteria.
Share bugs, ideas, or general feedback.
Capture a short clip from a source and report the level so the user can tell whether the mic is alive, muted, too quiet, or clipping.
@DEFAULT_SOURCE@ unless the user specified a device (then resolve the ID/name via list-audio-devices).wpctl get-volume <source-id>
parecord --device=@DEFAULT_SOURCE@ --record-time=3 --file-format=wav /tmp/miccheck.wav 2>/dev/null
(Or parec | sox if parecord isn't available.)sox:
sox /tmp/miccheck.wav -n stats 2>&1
Capture: RMS lev dB, Pk lev dB, Min/Max amplitude.Max amplitude ≥ 0.99, lower gain.wpctl set-volume <source-id> 1.2 (Pipewire allows >1.0 software gain up to ~1.5 cleanly).alsamixer.pavucontrol Recording tab for app routing, check whether the right Bluetooth profile (HSP/HFP) is active.For a richer dictation-tuned workflow (RNNoise, gain staging, persisted source), use dictation-mic-tune.