wispr-flow-debug

wispr-flow-debug is a skill for Claude Code, Codex from sfc-gh-eraigosa/dotfiles. It costs 87 tokens per session (1,964 once invoked), scanned A, original, Apache-2.0.

A debugging workflow for Wispr Flow dictation triggers, which use AutoHotkey to connect keyboard keys to dictation controls across WSL and Windows.

In plain words
What is it for?
Use it to test the Copilot key and extra configured keys, deploy and reload the AutoHotkey script, and inspect the debug log.
Why use it?
It helps find whether a trigger problem comes from the key mapping, configuration, deployed script, reload, or overlay position.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to test the Copilot key and extra configured keys, deploy and reload the AutoHotkey script, and inspect the debug log.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug
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 sfc-gh-eraigosa/dotfiles --skill wispr-flow-debug
Clone the repo
git clone --depth 1 https://github.com/sfc-gh-eraigosa/dotfiles

Made for: Claude Code, Codex.

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 wispr-flow-debug

README.md
[![agentmods](https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug/github.svg)](https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug)
Your own site
<a href="https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug"><img src="https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug/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 wispr-flow-debug

Your own site · 80×15
<a href="https://agentmods.dev/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug"><img src="https://agentmods.dev/badge/skills/sfc-gh-eraigosa/dotfiles/wispr-flow-debug.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,964 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00087 $0.01964
Opus 5 $0.00044 $0.00982
Sonnet 5 $0.00017 $0.00393
Haiku 4.5 $0.00009 $0.00196

Measured 9d ago against content hash 649232701e19, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

wispr-flow-debug scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/wispr-flow-debug/SKILL.md · 125 lines

How it starts

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

Debug Wispr Flow triggers (WSL → Windows dev loop)

The Wispr Flow dictation layer lives in opt/Desktop/Apps/scripts/macos.ahk (see WISPR-FLOW.md for the user runbook). AutoHotkey runs on Windows, but the repo is edited from WSL, so testing is a deploy → reload → read-log loop across the boundary. This skill encodes that loop and the gotchas that bite every time.

Mental model (read first)

  • Copilot key path: physical Copilot key emits Win+Shift+F23 → PowerToys Keyboard Manager remaps it to F24macos.ahk's *F24::_FlowTriggerDown.
  • Extra keys path: keys saved in %LOCALAPPDATA%\dotfiles\flow-triggers.ini are bound at startup to the same _FlowTriggerDown/_FlowTriggerUp. The Copilot key and extra keys share one code path — they cannot diverge by design, so "extra key behaves differently" almost always means an upstream/config issue (PowerToys remap, integrity mismatch, or stale deployed script), not the handler.

Resolve paths (OneDrive-redirected Desktop is common)

PS=powershell.exe
WIN_DESKTOP=$("$PS" -NoProfile -Command "[Environment]::GetFolderPath('Desktop')" | tr -d '\r')
DESKTOP=$(wslpath "$WIN_DESKTOP")                       # e.g. /mnt/c/Users/<you>/OneDrive/Desktop
DEPLOYED="$DESKTOP/Apps/scripts/macos.ahk"
WIN_TEMP=$("$PS" -NoProfile -Command '$env:TEMP' | tr -d '\r')
DBG="$(wslpath "$WIN_TEMP")/flow-dbg.txt"              # where FileAppend DEBUG lines land
INI="$(wslpath "$("$PS" -NoProfile -Command '$env:LOCALAPPDATA' | tr -d '\r')")/dotfiles/flow-triggers.ini"

The loop

1. Deploy the edited script

cp -f opt/Desktop/Apps/scripts/macos.ahk "$DEPLOYED"
diff -q <(tr -d '\r' < "$DEPLOYED") opt/Desktop/Apps/scripts/macos.ahk && echo "deployed == repo"

AutoHotkey does not hot-reload a changed .ahk — you must restart it.

2. Reload AutoHotkey (non-elevated is enough for trigger testing)

First check for an ELEVATED instance — the logon task starts one, and a non-elevated Stop-Process CANNOT kill it (the failure is silent). It also shrugs off #SingleInstance Force (UIPI blocks the replace message), so starting a second copy next to it used to yield duplicate keyboard hooks — one instance draws a HUD while the other wins the keypress, i.e. a stuck overlay that ignores Esc. (macos.ahk now guards this with a named mutex: the second copy detects the first across integrity levels and exits with a pointer to setup-autostart.ps1.)

Read the full file on GitHub · 125 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. 9d ago First seen · 125 lines · 87 tokens per session scan A 649232701e19

Subscribe to this mod's changes

wispr-flow-debug is a skill published in the GitHub repository sfc-gh-eraigosa/dotfiles (46 stars, last pushed today), licensed Apache-2.0. It adds 87 tokens to every session and 1,964 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

audit-architecture

Run an application-wide, read-only architecture audit that finds materially useful simplifications in a codebase's data structures, state representation, control flow, algorithms, and ownership boundaries. Fans out bounded read-only agents per subsystem, verifies every finding against the repo, and ranks results P0 to…

freekmurze/dotfiles · 119 tokens

flare

Manage Flare error tracking and performance monitoring using the flare CLI. Use when the user wants to list, triage, resolve, snooze, or debug errors; manage projects; create projects and retrieve API keys; check error counts; investigate slow routes, queries, jobs, or commands; view aggregated performance data and…

freekmurze/dotfiles · 78 tokens

speeding-up-laravel-tests

Use when Laravel/Pest test suites are slow, CI duration is growing, individual tests take seconds, or the user asks to speed up, optimize, or profile tests. Covers factories, fakes, config caching, XDebug/pcov, BCRYPTROUNDS, LazilyRefreshDatabase, and stray HTTP requests.

freekmurze/dotfiles · 72 tokens

review-pr

Review and merge GitHub pull requests for Spatie packages. Use when asked to review a PR, review a pull request, merge a PR, or when given a GitHub PR URL to review. Also triggers on 'review this PR,' 'check this pull request,' 'merge this,' or '/review-pr'. Uses gh CLI for all GitHub operations.

freekmurze/dotfiles · 75 tokens

git-commit

This skill should be used BEFORE running any git commit command. Triggers when about to run git commit. Ensures commit messages follow Conventional Commits specification and prompts for the Jira ticket number.

fredrikaverpil/dotfiles · 43 tokens

gh-cli

../../../.claude/skills/gh-cli/SKILL.md.

fredrikaverpil/dotfiles · 0 tokens