add-listen-hotkey

add-listen-hotkey is a skill for Claude Code from sliamh11/Deus. It costs 37 tokens per session (1,853 once invoked), scanned B, original, MIT.

An installer for a system-wide keyboard shortcut that starts voice listening with the deus listen command.

In plain words
What is it for?
Use it to configure a global hotkey and install sox, whisper-cli, and a Whisper speech-recognition model on macOS, Linux, or Windows.
Why use it?
It removes the need to open a terminal or application before starting voice input, and installs the audio and speech-recognition dependencies it needs.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to configure a global hotkey and install sox, whisper-cli, and a Whisper speech-recognition model on macOS, Linux, or Windows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sliamh11/deus/add-listen-hotkey
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add sliamh11/Deus --skill add-listen-hotkey
Clone the repo
git clone --depth 1 https://github.com/sliamh11/Deus

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for add-listen-hotkey

README.md
[![agentmods](https://agentmods.dev/badge/skills/sliamh11/deus/add-listen-hotkey/github.svg)](https://agentmods.dev/skills/sliamh11/deus/add-listen-hotkey)
Your own site
<a href="https://agentmods.dev/skills/sliamh11/deus/add-listen-hotkey"><img src="https://agentmods.dev/badge/skills/sliamh11/deus/add-listen-hotkey/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-listen-hotkey

Your own site · 80×15
<a href="https://agentmods.dev/skills/sliamh11/deus/add-listen-hotkey"><img src="https://agentmods.dev/badge/skills/sliamh11/deus/add-listen-hotkey.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,853 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 5 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 30
    Tool calls are chained to bypass individual safety checks or escalate capabilities beyond what any single tool call would allow.
    Fix: Limit tool chaining depth and validate the output of each tool before passing it to the next. Require explicit user approval for multi-step chains.
  • medium Privilege Escalation · line 30
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
  • medium Privilege Escalation · line 149
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
  • medium Rogue Agent · line 67
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 114
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01853
Opus 5 $0.00018 $0.00927
Sonnet 5 $0.00007 $0.00371
Haiku 4.5 $0.00004 $0.00185

Measured 10d ago against content hash 43c205d576d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

add-listen-hotkey scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

command -v sox || sudo apt install -y sox libsox-fmt-all

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -L --progress-bar -o "$MODEL_PATH" "$MODEL_URL"
.claude/skills/add-listen-hotkey/SKILL.md · 199 lines

How it starts

The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/add-listen-hotkey

Install a global hotkey that triggers deus listen from anywhere on the OS. Also installs all required dependencies (sox, whisper-cli) and downloads the whisper model.

Step 1 — Install dependencies and whisper model

Run these checks and installs before asking the user about hotkey preferences.

Dependencies

macOS:

# Check sox
command -v sox || brew install sox

# Check whisper-cli (from whisper-cpp)
command -v whisper-cli || brew install whisper-cpp

Linux:

# Check sox
command -v sox || sudo apt install -y sox libsox-fmt-all

# Check whisper-cli — not in apt, build from source if missing
if ! command -v whisper-cli; then
  echo "whisper-cli not found. Build from: https://github.com/ggerganov/whisper.cpp"
  echo "After building, ensure 'whisper-cli' is on your PATH."
  # Pause and ask user to confirm before continuing
fi

Windows:

# Check sox
if (-not (Get-Command sox -ErrorAction SilentlyContinue)) {
  winget install sharkdp.bat  # or: choco install sox.portable
}

# Check whisper-cli
if (-not (Get-Command whisper-cli -ErrorAction SilentlyContinue)) {
  Write-Host "Download whisper-cli from: https://github.com/ggerganov/whisper.cpp/releases"
  Write-Host "Add it to your PATH, then re-run this skill."
  # Stop and wait for user
}

Whisper model

Resolve the model path from WHISPER_MODEL env var, or default to ~/deus/data/models/ggml-large-v3-turbo.bin (Liam's personal config) or ~/deus/data/models/ggml-base.bin (public default).

If the model file doesn't exist, download it:

MODEL_PATH="${WHISPER_MODEL:-$HOME/deus/data/models/ggml-base.bin}"
MODEL_URL="https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.bin"

if [ ! -f "$MODEL_PATH" ]; then
  mkdir -p "$(dirname "$MODEL_PATH")"
  echo "Downloading whisper model (148 MB)..."
  curl -L --progress-bar -o "$MODEL_PATH" "$MODEL_URL"
  echo "Model saved to: $MODEL_PATH"
fi

For ggml-large-v3-turbo.bin (higher accuracy, 1.5 GB):

https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin

Read the full file on GitHub · 199 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 199 lines · 37 tokens per session scan B 43c205d576d4

Subscribe to this mod's changes

add-listen-hotkey is a skill published in the GitHub repository sliamh11/Deus (51 stars, last pushed 5d ago), licensed MIT. It adds 37 tokens to every session and 1,853 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.