From superwhisper
Toggles Superwhisper agent integration on or off per project directory using a marker file.
How 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:
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.
npx claudepluginhub superultrainc/superwhisper-claude-code --plugin superwhisperSets up and manages a DIY voice input stack (whisper.cpp + sox + Hammerspoon) for hands-free operation. Useful for users with wrist injuries or RSI who want to control workflows by voice.
Enables voice conversations with Claude Code using speech-to-text and text-to-speech. Includes setup, diagnostics, and MCP-based voice interaction.
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.