Agent skill · Code Review & Quality

wavecap-audio

Analyze recorded audio files from WaveCap. Use when the user wants to inspect audio recordings, check audio quality, list available recordings, or get audio file metadata.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill wavecap-audio --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/wavecap-audio/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# WaveCap Audio Analysis Skill Use this skill to analyze and inspect recorded audio files from WaveCap transcription sessions. ## Recordings Location Audio recordings are stored in the state directory: ```bash STATE_DIR="/Users/thw/Projects/WaveCap/state" RECORDINGS_DIR="$STATE_DIR/recordings" ``` Recordings are also accessible via HTTP at `http://localhost:8000/recordings/` ## List Available Recordings ### List all recordings ```bash ls -la "$STATE_DIR/recordings/" | head -50 ``` ### List recordings with sizes (sorted by date) ```bash ls -lht "$STATE_DIR/recordings/" | head -30 ``` ### Count total recordings ```bash ls "$STATE_DIR/recordings/" 2>/dev/null | wc -l ``` ### Find recordings by date ```bash # Today's recordings find "$STATE_DIR/recordings" -name "*.wav" -mtime 0 -type f # Last 7 days find "$STATE_DIR/recordings" -name "*.wav" -mtime -7 -type f ``` ## Get Audio File Metadata ### Basic file info ```bash file "$STATE_DIR/recordings/FILENAME.wav" ``` ### Detailed audio properties (requires ffprobe/sox) ```bash # Using ffprobe (if available) ffprobe -v quiet -show_format -show_streams "$STATE_DIR/recordings/FILENAME.wav" 2>/dev/null | grep -E "duration|sample_rate|channels|

What's inside
Steps it walks through
  1. Recordings Location
  2. List Available Recordings
  3. List all recordings
  4. List recordings with sizes (sorted by date)
  5. Count total recordings
  6. Find recordings by date
  7. Get Audio File Metadata
  8. Basic file info
  9. Detailed audio properties (requires ffprobe/sox)
  10. Get duration of a recording
  11. Find Recordings for a Transcription
  12. Get recording URL from transcription
  13. Check if recording file exists
  14. Analyze Audio Quality
Ships with 1 file
  • metadata.json
Commands it runs
ls -la "$STATE_DIR/recordings/" | head -50
ls -lht "$STATE_DIR/recordings/" | head -30
ls "$STATE_DIR/recordings/" 2>/dev/null | wc -l
find "$STATE_DIR/recordings" -name "*.wav" -mtime 0 -type f
Last 7 days
find "$STATE_DIR/recordings" -name "*.wav" -mtime -7 -type f
file "$STATE_DIR/recordings/FILENAME.wav"
Using ffprobe (if available)
ffprobe -v quiet -show_format -show_streams "$STATE_DIR/recordings/FILENAME.wav" 2>/dev/null | grep -E "duration|sample_rate|channels|bit_rate"
Using soxi (if sox installed)
More from claude-skill-registry
All skills →
About this skill
What does the wavecap-audio skill do?

Analyze recorded audio files from WaveCap. Use when the user wants to inspect audio recordings, check audio quality, list available recordings, or get audio file metadata.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill wavecap-audio --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going