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.

🌟1 stars • 0 forks
📥0 downloads

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

Avg rating0.0
Reviews0
Favorites0

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!