Help us improve
Share bugs, ideas, or general feedback.
From superwhisper
Toggles Superwhisper agent integration on or off per project directory using a marker file.
npx claudepluginhub superultrainc/superwhisper-claude-code --plugin superwhisperHow this skill is triggered — by the user, by Claude, or both
Slash command
/superwhisper:superwhisperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run this bash command exactly:
Enables voice conversations with Claude Code using speech-to-text and text-to-speech. Provides MCP tools for speaking, listening, and managing voice service.
Compresses internal reasoning of subagents to reduce token waste. Prepends a directive to skip preambles and step announcements during multi-agent sessions. Useful for cost-efficient Claude Code workflows.
Switches voice transcription from OpenAI Whisper API to local whisper.cpp on Apple Silicon. Currently WhatsApp-only. Requires voice-transcription skill first.
Share bugs, ideas, or general feedback.
Run this bash command exactly:
h=$(echo -n "$PWD" | md5 -q 2>/dev/null || echo -n "$PWD" | md5sum | cut -d' ' -f1); f="/tmp/superwhisper-agent/disabled-$h"; mkdir -p /tmp/superwhisper-agent; case "$ARGUMENTS" in on) rm -f "$f"; echo "Superwhisper: ON" ;; off) touch "$f"; echo "Superwhisper: OFF" ;; *) [ -f "$f" ] && { rm -f "$f"; echo "Superwhisper: ON"; } || { touch "$f"; echo "Superwhisper: OFF"; } ;; esac
Report the single-line output to the user. Nothing else.