Agent skill
voice-refine
Transform verbose voice input into structured, token-efficient Claude prompts. Use when cleaning up voice memos, dictation output, or speech-to-text transcriptions that contain filler words, repetitions, and unstructured thoughts.
Install this agent skill to your Project
npx add-skill https://github.com/FlorianBruniaux/claude-code-ultimate-guide/tree/main/examples/skills/voice-refine
SKILL.md
Voice Refine Skill
Transform verbose, stream-of-consciousness voice dictation into structured, token-efficient prompts for Claude Code.
When to Use
- Input from voice dictation (Wispr Flow, Superwhisper, macOS Dictation)
- Verbose text >150 words
- Contains filler words, repetitions, or tangents
- Natural speech patterns that need structure
Transformation Pipeline
1. DEDUPE → Remove repetitions and filler words
2. EXTRACT → Identify core requirements and constraints
3. STRUCTURE → Organize into standard sections
4. COMPRESS → Reduce to ~30% of original while preserving intent
Output Format
## Contexte
[Project context, existing stack, relevant files]
## Objectif
[Single sentence: what needs to be built/changed]
## Contraintes
- [Constraint 1]
- [Constraint 2]
- [etc.]
## Output attendu
[Expected deliverables: files, format, tests]
Flags
| Flag | Effect |
|---|---|
--confirm |
Show refined prompt before sending to Claude (default) |
--direct |
Send refined prompt directly without confirmation |
--verbose |
Keep more detail, less compression |
--en |
Output in English (default: matches input language) |
Usage Examples
Basic Usage
/voice-refine
Alors euh j'aimerais que tu m'aides à faire un truc, en fait j'ai une API
qui renvoie des données utilisateurs et je voudrais les afficher dans un
tableau React, mais attention il faut que ça soit paginé parce que y'a
beaucoup de données, genre des milliers d'utilisateurs, et aussi faudrait
pouvoir trier par nom ou par date d'inscription, ah et on utilise Tailwind
dans le projet donc faut que ça matche avec ça...
With Flags
/voice-refine --direct --en
[voice input in any language → sends English prompt directly]
Compression Metrics
| Metric | Target |
|---|---|
| Token reduction | 60-70% |
| Information retention | >95% |
| Structure clarity | High |
Filtering Rules
Remove: filler words ("euh", "um", "like", "basically"), repetitions, tangents, hedging ("maybe", "probably" unless relevant), politeness padding ("please", "could you").
Preserve: technical requirements, constraints, existing code context, expected output format, edge cases, business logic rules.
See Also
guide/ai-ecosystem.md- Voice-to-Text Tools sectionexamples/before-after.md- Full transformation examples
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
eval-skills
Audit all skills in the current project for frontmatter completeness, effort level appropriateness, allowed-tools scoping, and content quality. Produces a scored report with effort-level recommendations for each skill. Use when onboarding to a new project, reviewing skill quality before shipping, or adding effort fields to an existing skill library.
git-ai-archaeology
Analyze AI config evolution in a git repo — first commits per path, monthly distribution, major PRs, maturity phases
design-patterns
Detect, suggest, and evaluate GoF design patterns in TypeScript/JavaScript codebases. Use when refactoring code, applying singleton/factory/observer/strategy patterns, reviewing pattern quality, or finding stack-native alternatives for React, Angular, NestJS, and Vue.
rtk-optimizer
Wrap high-verbosity shell commands with RTK to reduce token consumption. Use when running git log, git diff, cargo test, pytest, or other verbose CLI output that wastes context window tokens.
pr-triage
4-phase PR backlog management with audit, deep code review, validated comments, and optional worktree setup. Use when triaging pull requests, catching up on pending code reviews, or managing a backlog of open PRs. Args: 'all' to review all, PR numbers to focus (e.g. '42 57'), 'en'/'fr' for language, no arg = audit only.
guide-recap
Transform CHANGELOG entries into social content (LinkedIn, Twitter/X, Newsletter, Slack) in FR + EN. Use after releases or weekly to generate release notes, announcements, social media posts, or recap summaries from guide updates.
Didn't find tool you were looking for?