Media
auto-whisper-activator - Claude MCP Skill
Automatically activates SuperWhisper dictation after audio summaries complete, enabling seamless voice-to-text workflow with proper timing delays
SEO Guide: Enhance your AI agent with the auto-whisper-activator tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to automatically activates superwhisper dictation after audio summaries complete, enabling seamless voi... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Auto-Whisper Activator
Automatically activates SuperWhisper dictation after audio summaries complete using the custom hotkey configuration (Option+Command+3 / Key Code 20).
## Core Implementation
After each audio summary via `say` command, automatically triggers SuperWhisper with proper timing delay.
### Activation Command
```bash
# Wait for audio to complete, then activate SuperWhisper
sleep 1.5 && osascript -e 'tell application "System Events" to key code 20 using {command down, option down}'
```
**Why Key Code 20:**
- Maps to the "3" key at hardware level
- Matches user's custom SuperWhisper configuration (Option+Command+3)
- More reliable than keystroke simulation
- From SuperWhisper preferences: key code 20, modifiers 2304
## Usage Pattern
```bash
# Step 1: Audio summary
say -r 170 "Your message here"
# Step 2: Auto-activate SuperWhisper (1.5 second delay)
sleep 1.5 && osascript -e 'tell application "System Events" to key code 20 using {command down, option down}'
```
## Timing
- **1.5 seconds delay**: Prevents microphone from capturing tail end of audio
- Adjustable based on message length and speech rate
- Accounts for audio system latency
## Integration with conversation-audio-summarizer
These two skills work together:
1. conversation-audio-summarizer generates audio feedback
2. auto-whisper-activator triggers SuperWhisper for user response
3. Creates seamless voice interaction loop
## Troubleshooting
```bash
# Check if SuperWhisper is running
pgrep -i superwhisper
# Clear lock if stuck
rmdir /tmp/sw_debounce_lock
# Test activation manually
osascript -e 'tell application "System Events" to key code 20 using {command down, option down}'
```
## Complete Workflow Example
```bash
# Full cycle: audio summary → activate dictation
say -r 170 "Task complete. All tests passing. Ready for your next command." && sleep 1.5 && osascript -e 'tell application "System Events" to key code 20 using {command down, option down}'
```Signals
Information
- Repository
- mickdarling/dollhouse-portfolio
- Author
- mickdarling
- Last Sync
- 1/14/2026
- Repo Updated
- 10/25/2025
- Created
- 1/13/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
sonarcloud-hotspot-marker
Automated script for bulk marking SonarCloud security hotspots as SAFE with proper authentication and rate limiting
conversation-audio-summarizer
Intelligent conversation summarizer that identifies key decision points and generates audio summaries using macOS say command for hands-free updates
sonarcloud-modernizer
Automated code modernization skills for SonarCloud compliance - transforms code to follow modern JavaScript/TypeScript patterns
obsidian-atomizer-para
Two-stage AI processor for Obsidian: atomizes large multi-concept notes into discrete atomic notes, then uses context-aware LLM reasoning to categorize them into PARA structure with nuanced Project vs Area distinction based on vault context and user patterns