# Louder

> Increase system volume by 10% during voice chat

- Skill: `majiayu000/louder` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/louder`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/louder/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/louder

---


# Increase Volume

Increase the system output volume by 10%.

## Steps

1. Check if the audio server is running (Bash):
   ```bash
   claude-talk server status 2>/dev/null && echo "running" || echo "stopped"
   ```
   If stopped, tell the user: "Audio server is not running. Start voice chat with `/claude-talk:start` first."

2. Increase volume and get new level (Bash):
   ```bash
   claude-talk server volume-up
   ```

3. Say: "Volume increased to [X]%"

