Agent skill · Code Review & Quality

wavecap-llm

Configure WaveCap LLM-based transcription correction. Use when the user wants to enable/disable LLM correction, change models, tune prompts, or optimize correction quality on Apple Silicon.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ai-llm/wavecap-llm-tobiaswooldridge-wavecap/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 LLM Correction Tuning Skill Use this skill to configure the optional LLM-based post-processing that corrects Whisper transcription errors using local models on Apple Silicon. ## Requirements - Apple Silicon Mac (M1/M2/M3/M4) - mlx-lm package installed: `pip install mlx-lm` - Sufficient RAM for model (1B=2GB, 3B=6GB, 8B=16GB) ## Configuration Location LLM settings are in the `llm:` section: - **User config:** `/Users/thw/Projects/WaveCap/state/config.yaml` ## Basic Configuration ### Enable/Disable LLM Correction ```yaml llm: enabled: true # false to disable ``` ### Model Selection ```yaml llm: model: llama-3.2-3b # Model name or HuggingFace path ``` | Model | Size | RAM | Speed | Quality | Use Case | |-------|------|-----|-------|---------|----------| | llama-3.2-1b | 1B | ~2GB | Fastest | Good | Low RAM, quick fixes | | qwen-2.5-1.5b | 1.5B | ~3GB | Very fast | Good | Balanced small model | | **llama-3.2-3b** | 3B | ~6GB | Fast | Very good | **Recommended** | | qwen-2.5-3b | 3B | ~6GB | Fast | Very good | Alternative to Llama | | llama-3.1-8b | 8B | ~16GB | Moderate | Excellent | High quality | | llama-3.2-8b | 8B | ~16GB | Moderate | Excellent | Latest 8B | ### Generatio

What's inside
Steps it walks through
  1. Requirements
  2. Configuration Location
  3. Basic Configuration
  4. Enable/Disable LLM Correction
  5. Model Selection
  6. Generation Parameters
  7. Domain Terms
  8. View Current Settings
  9. Check LLM Status
  10. Full Configuration Example
  11. Tuning Scenarios
  12. Maximum Quality (8GB+ RAM)
  13. Balanced (6GB RAM)
  14. Low Memory (4GB RAM)
Ships with 1 file
  • metadata.json
Commands it runs
grep -A20 "^llm:" /Users/thw/Projects/WaveCap/state/config.yaml
curl -s http://localhost:8000/api/health | jq
launchctl stop com.wavecap.server && sleep 2 && launchctl start com.wavecap.server
curl -s http://localhost:8000/api/transcriptions/export | \
jq '[.[] | select(.llmCorrectedText != null and .llmCorrectedText != .text)] |
jq '{
ls -la ~/.cache/huggingface/hub/ | grep mlx
tail -50 /Users/thw/Projects/WaveCap/state/logs/backend.log | grep -i llm
More from claude-skill-registry
All skills →
About this skill
What does the wavecap-llm skill do?

Configure WaveCap LLM-based transcription correction. Use when the user wants to enable/disable LLM correction, change models, tune prompts, or optimize correction quality on Apple Silicon.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill wavecap-llm-tobiaswooldridge-wavecap --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